飞飞世界论坛
标题: 改变最大等级 [打印本页]
作者: admin 时间: 2016-1-10 03:22
标题: 改变最大等级
Okay iwas going through the elitepvpers forums and i found alot of source guides imgoing to post the good ones here. translated the best i could. I take no creditat all on these
how to change max level
3 O2 `, q; a5 Q2 E Q& A, Vchange level without Rebirth
& ~' c' ^* d- J0 W( k# V; c Z1 O
Now, let us begin.
: H0 c+ ~2 R9 g+ e9 w+ \* a0 ^7 q$ L! _" C3 r6 U
Requirements:
& g- a2 g6 y/ u1 pSource
3 ?8 |$ ]! a6 r1 U2 CNotepad / Editor
. A7 k" q9 ^1 S% r, Z% R P- B; m- O+ T' b0 }
/ / Tips by Sedrika
* X& k" d3 Z: o) H x$ `, X0 g3 W2 |6 X+ ^$ b y ^) b6 ^& k
It is up to you how you do it ^ ^
1 a8 c( {, B: \/ a* z" y" I. Q1 M' I' {8 J- Q+ t
Go into your source folder and open the definejob.h. s/ Y' {+ D! k* g8 [1 o/ a/ _
Search there for:7 J3 t( t2 U- Z; u
% [, u5 S. W- b/ f% c& e5 z
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå+ y: q# Z3 J$ j- }) x+ Q# q
#define MAX_LEGEND_LEVEL 129
8 N; U* |# c. U F6 p#define MAX_MONSTER_LEVEL 160* ?2 n g. A5 z* d; h
#else // 15Â÷ è÷¾î·Î ·1o§è®àå% u& a( b* P, o
#define MAX_LEGEND_LEVEL 121
& ]. x' E( \* t! ^#endif // 15Â÷ è÷¾î·Î ·1o§è®àå 2 l4 D' D6 c; u5 g- ~2 W% n/ z
, w: I1 N" A7 s
. @% O, @; w2 F; f8 XRed: Player Max. Level3 c/ K$ Q/ [7 P* Q7 m3 @3 y6 I
Green: Monster Max. Level
; |+ _( `' ^% C1 `: g+ ]+ y
: a& ~3 }0 i+ I4 ^& ]; t5 q; AThese changes as simple as you want.# g& {" p3 Q; s o5 @3 b$ I
, W2 b0 g- r; G5 u0 vThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
$ z+ o/ @) a% c4 W+ s
% V0 O0 z1 c q4 h) T' Q
Part 1 of blocking CE
' _, m9 V* v$ k' s: |% s7 S) C! C! B: ]4 R& {# `
In this tutorial I will show you how to change the Head of Mark flyff.
3 K3 ~) F: j+ d& I/ j4 ]3 L& h' |8 fThe current Head Mark is well known, 5E, which results as a string ('^').+ e6 M3 j: A! E! ^3 e6 G
3 r/ e5 D) C: I, i. U- z( K
For this we go to the World (Project) and looking at the Buffer.h after thistext! d. H! n/ c" Q' {
Quote:7 ~! ~3 i8 d6 P2 |1 P0 G% j
# Define HEADER MARK '^' / / Normal messageheader
: U% K3 \& b/ @6 b% H# e6 I5 e2 A# Define SYSHEADERMARK '%' / / System message header6 g# R0 V8 T+ K& ^
What the Sysheadmark is looking for is not even the top 5E.
6 Y0 M, k; [( h6 h) cChange this and it makes the CE Not work on server.& q; W6 F# L9 F# |
& X7 i% v+ `' p$ t- V3 ^
Then Tom's anti-hack is no longer useful.
" X: h0 L3 s/ |. r5 @) y* M, h! _
' P) b% S; C2 d% F0 O# `5 oLG Sedrika
Part 2 of blocking CE
1 _3 W! V! g5 i$ b
7 N) ]- r5 C! |2 i+ z
In this small text-based tutorial, I want you for a quick time to explain howto rewrite the source so that the IP address does not reading from theNeuz.ini. , v3 i5 P7 l) J! ~+ t
What does this have an advantage?
6 d, L, q5 Z1 lThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
; M$ h7 M( S7 s6 h
4 ]; R2 e9 L B1 y% h6 z
9 E3 f% U8 h8 Y V! k) ZFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
/ Z0 B4 ~. [7 a k0 p
4 H T- [* L& g1 ]- S% f. KThen search for the following content in HwOption.cpp 6 b% _+ X' c1 P6 s' x# f
- l. h4 U: _% A8 w f" X* v: ]6 ^7 [
if (scan.Token == _T ("ip"))
0 S) M' G& b' W& g, R{
, U5 _" r7 [. L2 p% b& N0 H# s; Vscan.GetTokenEx ();. S/ t* R5 R; f$ k: |
strcpy (m_IPAddress scan.Token);8 T. r; ^4 Q# Y* [) x9 ^
}
% k4 Q- I e* R& U6 M$ Jand turn it into this:
+ @9 q7 t4 k, Q" L- p' K! Q1 EQuote:
- I1 ^3 t4 K T6 k' Q/ S0 uif (scan.Token == _T ("ip"))* g( z0 G, b* ? g* P
{
$ D8 [5 V1 u" b n& e2 H/ / Scan.GetTokenEx ();
% O7 d* [0 r' h8 V8 m1 M/ / Strcpy (m_IPAddress, scan.Token);
$ s8 ~& D. I: J) D9 y}
+ G# U7 ~3 s' w6 N) ~2 iAnd you created the solution.
( R; M3 l" f& J0 r) X/ t+ N0 D: F U5 p
( [: P. `" j1 j$ O
Then read the Neuz not the IP from the INI anymore. even if put in it x0 w5 h; x+ c# f! Y' p f" H3 k4 u
2 s1 n' l+ N# Z9 d3 v
Max skill's
- y5 L% J5 a8 O0 ~' d! n5 j0 K: h G- t, R/ f
All know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc
5 u( R b$ I. K* {8 |- c8 u' l3 S7 H6 I* O" x. W5 ?
With the TUT can provide the remedy it+ e+ z) u& s& ?/ T& T
* @. r# y* U2 Y) M+ P# y/ }# 1 opens the file SkillInfluence.h
T u, f* a( I% [7 C# Z# 2 Search" [& G8 @- Z. ]" c
Code:
3 e- a0 w' Y3 u; L- w, U# d2 X0 u6 w+ {# ` U
# Define MAX_SKILLBUFF_COUNT 14
5 t* ?) e4 G- a; P- w0 ` l p' ]( O+ q. ]) k# H
# 3 Change the 14 to your number (eg 21) and save it from) u. l/ e' B+ g1 k/ M5 h% ~" {$ O
# 4 compilation and ready; J( { m x+ z* b& |" [/ O; I! n
! n; h/ Q, d9 M2 D
D. t, D! A1 V# E# sI put the 4 major ones i found and translated correctly and can followcorrectly I did you Google translate i have done all of these. i got to do theneuz i.p one still and i am done. i will post where it is in the source tho. Ido not take credit to this at all. this is made by:
$ j+ h$ t" a: O" U
o! Q! X! D0 F* W" m- J! ?9 Udennisdra1 }' ~+ M; \; L3 P- o, \: k. h
.Crasy7 h, B, S8 p% I3 c! Y! U4 S
©ross
n& b( b; r* E- q3 o8 N! f( CSedrika* X: f& ]7 ?& n% F2 w3 e3 o+ V
0 W4 L1 O% w& K" Z+ ^) @
everything there was German. I hope you enjoy this and these guides aren't hardto follow at all! i will post more here as i get them translated right. Enjoy!
" Y9 b& C/ {3 e& u! f; `: m
5 Q0 T# Y# J; e: C' RP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less% Z" z( M& }) r& u3 a. r. f$ G' J0 g
& M' G, V$ p/ c ~$ Q0 @
7 T+ G+ W9 v5 t+ U
Update 1:
how to turn off "Profiler" in worldserver.exe
. f V. Z6 U: K5 W) Q1 f
" C# l; U0 J! b& G& r6 m* Q9 u7 S" O1 c7 x/ g/ q) g3 F* Y( `8 ]) k! v
in VersionCommon.h of Worldserver Solution) F) P( F! G; r8 P% U* @8 A
Look for
. b% ]5 G: S2 X; |/ ]& p- i# d+ D/ T, ]/ ]. Q: l0 \
#define __PROFILE_RUN
# Z" j; h% {2 `
/ k& i0 ]# e4 Y scomment it or simply0 N2 Z- q+ r# ]( p# B+ E! x$ t1 v
4 r: l! |' S5 p; Y; @2 q
//#define __PROFILE_RUN
% X( s$ ~9 m6 Z: F9 e4 d
! x# v- b& p: q8 I4 a2 v6 k
, \; y$ G* E- c/ p [! f( |credits to bryle000 for posting that. thanks. ill add more soon if you got anyill add them too
好,我是通过elitepvpers论坛,我发现很多导游我去邮局好呢。翻译最好的我可以。我没有信用在所有这些
如何更改水平
更改水平没有重生
现在,让我们开始。
要求:
源
记事本/编辑
//提示sedrika
这是你怎么做^^
进入你的源文件夹,打开definejob.h
搜索的:
#如果__ver>=15 //// 15Â÷è÷¾î·Î·1o§è®àå__hero129_ver15
#定义max_legend_level129
#定义max_monster_level160
#其他/ /15Â÷è÷¾î·Î·1o§è®àå
#定义max_legend_level121
#有// 15Â÷è÷¾î·Î·1o§è®àå
红色:球员最高水平
绿色:怪物最高水平
这些变化,只要你想。
然后你只能重新编译世界服务器文件+和使您的客户在definejob.h同样的变化与源。
1部分阻断行政长官
在本教程中我将告诉你如何改变头标飞飞。
目前的头标记是众所周知的,灵活的,这结果为一个字符串('^')。
为此我们去世界(项目)和看buffer.h后,这个文本
报价:
#定义标题标记的^' //正常消息头
sysheadermark#定义“%”//系统消息头
什么sysheadmark寻找甚至不是顶级类。
改变这一状况,使行政长官不上服务器。
然后他反黑客不再有用。
sedrikaLG
2部分阻断行政长官
在这个小的文本教程,我希望你快时间解释如何重写源使地址不从阅读这neuz。
这是什么有好处?
编辑需要的数据包从我加入,如果不是,那么什么?现在想你
首先你需要获得开放源码甚至不知道你如何做到这一点,留给你,和你做项目的neuz。
然后搜索以下内容hwoption.cpp
如果(scan.token==_t(“知识产权”))
{
scan.gettokenex();
strcpy(m_ipaddress扫描标记。);
}
并把它变成这样:
报价:
如果(scan.token==_t(“知识产权”))
{
//scan.gettokenex();
//strcpy(m_ipaddress,扫描标记。);
}
和你创造的解决方案。
阅读neuz没有知识产权的问题了。即使放在这
最大的
大家都知道,14最大魔法,你得到的所有室协助技能+技能buffpang没有更多空间的勇俊,游侠骑士,等
与学院可以提供补救
#1打开文件skillinfluence.h
#2搜索
代码:
#定义max_skillbuff_count14
#3换14的号码(如21)和保存从
#4汇编和准备
我把4个主要的发现和翻译正确,并可以按照正确的我你谷歌翻译这些我都做了。我要做一个neuz知识产权仍然和我做。我会在那里后,它是在源寿。我不采取信贷这所有。这是由:
dennisdra
疯狂的行为。
©罗斯
sedrika
那里的一切是德国。我希望你享受,这些指南并不难理解在所有!我将发布更多的在这里我得到他们的翻译权。享受!
注:这是指没有服务器应该能够使用行政长官因为它非常简单的停止。花5分钟甚至更少
更新1:
如何关闭“探查”worldserver.exe
在versioncommon.h的worldserver溶液
寻找
#定义__profile_run
评论或者
//#定义__profile_run
学分bryle000投寄。谢谢。我添加更多的很快如果你有病加太
" T' w: C, J# e! q0 W, S& ~! t
欢迎光临 飞飞世界论坛 (http://www.ffwold.com/) |
Powered by Discuz! X3.2 |