|
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
& C% `) @% x7 [% I: G' bchange level without Rebirth" d/ Q( v* y: w% T4 k
' ]: t/ ^( q4 G5 m3 F4 W
Now, let us begin.
$ |# @8 M, P1 F; u2 ^* p" |' \2 Y4 f r6 J+ r
Requirements:' g% D- ^; f5 ~9 E# y
Source, j# J1 W# [0 ~- }6 f6 k( b
Notepad / Editor& f" Z: n$ v0 S% [. C8 S+ T
4 a, `. R4 ^+ E, W, w/ / Tips by Sedrika, Q5 w8 b9 T' }) G' h. e
! P. V7 I. n, `# g9 }+ {* wIt is up to you how you do it ^ ^
# h0 N* w9 N0 W4 @ @9 [; N( h; e; M( W% M
Go into your source folder and open the definejob.h7 z3 C2 H- M! [, `. D
Search there for:9 @$ e3 c# Q# q) k/ ]4 Z0 x& t! |4 Y. O
' S" f( F. [. o0 _- x) h#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå, O) _( ?$ y. a' M; p7 U/ L
#define MAX_LEGEND_LEVEL 129( d* n+ b: Z$ j- \( D; k: {8 X
#define MAX_MONSTER_LEVEL 160+ `7 D, o8 |7 O4 @% e d' F* p4 I
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
. `2 |* q* B9 H' ^#define MAX_LEGEND_LEVEL 121
) p6 r9 o r' g- n7 u#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
8 n3 h" ?. @) T/ U
+ t2 S+ {+ Z c: O9 D; ?+ ~! J0 h* ^4 [4 l$ Q x+ E9 c
Red: Player Max. Level
9 S" G# a. {4 t m! }( IGreen: Monster Max. Level2 S$ t! H% x8 b M
- {, n8 x- q" JThese changes as simple as you want.7 M% X$ ^& H- n- [: T( S! M
8 k# Z% m" q7 n$ g& }* ~" j& |$ rThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.0 |# ^5 I: i% h5 K
$ f" p$ Z1 T% n; P
Part 1 of blocking CE
+ X4 [# s% L$ R& L
0 d0 i [9 l6 D7 s! zIn this tutorial I will show you how to change the Head of Mark flyff.
8 }, {' ]+ |5 m" M Q8 d% R" s4 {The current Head Mark is well known, 5E, which results as a string ('^').
/ T! D& a8 v; Z! r! z
6 B: \! n# ]. G! R8 H/ hFor this we go to the World (Project) and looking at the Buffer.h after thistext
, L0 j( ]1 u* @0 P% HQuote:& A) N9 F* D3 q7 A5 h, _/ d
# Define HEADER MARK '^' / / Normal messageheader1 }$ i5 y# b& N1 k+ h
# Define SYSHEADERMARK '%' / / System message header
" k+ Y. P/ a" \; c7 `" KWhat the Sysheadmark is looking for is not even the top 5E." C' H2 ? O1 k
Change this and it makes the CE Not work on server. Z! ` f1 v' l6 ?
; ]2 _7 }9 m2 ]" A( t! @* w
Then Tom's anti-hack is no longer useful.
/ B& j/ V6 p3 e; p. j5 e+ V. y" d* D: {" N) ]+ V0 z$ l3 v/ e
LG Sedrika
Part 2 of blocking CE
( u! c# ^1 P# p* q+ w/ m/ O
. K" G& A( |" y2 G( a" iIn 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.
; H0 z$ j9 d- X! w+ MWhat does this have an advantage?
2 c$ T, @1 ]1 A" K- Q C# o( Z2 wThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
" \$ m S ?" p' y8 Z2 m1 @
' p$ J+ c- g( E+ ~7 t( O( i
* I; m! y' f/ d W4 [' Q/ i0 l+ i! ]4 jFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
7 ?6 }6 I8 O0 W% G# h* Y' M! I4 ]' G
Then search for the following content in HwOption.cpp 8 C! k {) f: x6 }7 ^5 ?
/ `% W. A9 f, l! W$ D$ A4 t' L B
' Q7 J8 x4 o" K* ^& I. |if (scan.Token == _T ("ip"))0 m, O0 ]% }! D' B
{3 B# n6 e3 b9 v6 c! B
scan.GetTokenEx ();, f6 J. }3 ?% P6 M, Q0 j; B
strcpy (m_IPAddress scan.Token);
6 m3 \# i! l9 F7 `}
# R' Q& ~' x. `: s$ [3 [and turn it into this:4 Y$ J7 Q( D3 t5 E" b5 e4 Q
Quote:
8 @: W( e% I8 ^5 @+ Q7 iif (scan.Token == _T ("ip"))
- W9 _9 C8 M6 I% A5 S6 O0 T{
$ ?/ W+ J$ Y8 n6 P& U/ / Scan.GetTokenEx ();4 P$ |7 n- c1 n' Y L* a
/ / Strcpy (m_IPAddress, scan.Token);& z" ^+ m( }/ D* F; \8 }
}+ H, n: d# s7 P; ^6 b0 a
And you created the solution.
+ K2 w5 f$ b' r" S
4 }) ^- x; d4 c$ F
, m! i$ y6 ?9 tThen read the Neuz not the IP from the INI anymore. even if put in it
0 b: e! c8 g# I# I9 G& G$ v3 W9 e3 f4 e! V
Max skill's 1 H& a. n: F, O/ i G
' A- l8 b1 o$ K/ L K4 |8 {& k
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
, m; J4 c5 g. L7 j7 J! j
9 L& R. N; D! _7 M! bWith the TUT can provide the remedy it
3 F7 Y+ V! T) `4 F# G3 b6 i |: N) Y/ E$ H, c; b8 q$ W
# 1 opens the file SkillInfluence.h! ^* u/ `; |) a6 R
# 2 Search) R: W X" z) Q# X% D: T: ?
Code:
# u9 i: W! \1 a _& g1 D% M: U! V# a* Z2 h* x" L
# Define MAX_SKILLBUFF_COUNT 14
: n+ D$ F3 ?$ E1 ~3 V% `% h" p, m0 k
# 3 Change the 14 to your number (eg 21) and save it from
' |0 K9 U8 y- l c# 4 compilation and ready0 {7 G. e1 l, L8 w# A
) Z5 k( M3 U+ m: w/ p8 T
& l# m- p+ |4 AI 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:
" |$ d6 @! f" l8 j- R
) L7 V* n/ \7 N' }* k5 J* m4 E. F( ndennisdra Q8 m# v3 U; I$ H& t! b
.Crasy4 o/ `' O/ e2 U- W. T
©ross' E0 P/ [) _9 @" A* h4 }* g* t
Sedrika
$ n6 o$ l. Q$ Z6 A9 I- W$ A/ ?% l- L$ U( s1 C
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!
% U5 d9 ~8 z3 }2 d% m# f( [/ q: W# J8 h
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
# {1 Q+ `$ u4 E, k7 a6 }' w) F; C6 d# Z$ |. U* Y9 Y
1 f" P& H( m2 Q5 ~3 j( d( EUpdate 1: how to turn off "Profiler" in worldserver.exe
3 e i+ h! J. |- H# ^' v2 L8 ^8 Z. x K
& P3 C( p8 U& X9 B9 ^! e6 f! oin VersionCommon.h of Worldserver Solution. Y8 j! _8 \+ u' D4 l7 H; A
Look for! o8 m: @2 f3 R
. ?. t" ]: p! }+ u. [0 m, W. v#define __PROFILE_RUN
/ ?" @3 x) `! y) X" W0 Z L
8 }2 [+ F" I7 `) ]' f" G) Rcomment it or simply
/ J$ w+ P7 [9 k
; q6 n2 s6 U1 x; f! I//#define __PROFILE_RUN
$ G# ^9 `" B4 }2 u# _. ^4 g, [3 k
$ q: a. w4 S+ C" P( Hcredits 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投寄。谢谢。我添加更多的很快如果你有病加太
+ i& T# {/ J5 Q3 J; r* m |