|
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 $ t" g1 U6 U' c5 m
change level without Rebirth4 ]: L! J e' W9 C9 j- Q
+ d7 L7 M5 l/ u D( J! g' O
Now, let us begin.5 e: W0 ^& H6 m( c) e
) r( P W5 t) M- m: wRequirements:4 `) }* }+ G1 l' B
Source& J# w( D% o5 Q) k4 o$ O$ b# b7 ^
Notepad / Editor
4 w9 Y. c' M* v' O
! D) l- x+ k5 s* q: V6 E/ / Tips by Sedrika
% k6 D" \/ u, C5 E2 Q, b1 P) P3 v- T5 J2 [, s4 X7 G5 b0 J
It is up to you how you do it ^ ^
6 v' G6 _7 c L/ p4 T6 G
$ J/ g3 O8 B" E2 w4 n9 j7 ?$ YGo into your source folder and open the definejob.h
5 s- [% [. N+ a# ]( u$ D+ ~7 lSearch there for:
% _0 b8 T) r% y/ M1 F) F W: Y5 |, W U
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
/ \ G; ]( L2 w4 ]% i6 z#define MAX_LEGEND_LEVEL 1298 [$ Z7 l9 @# d y6 ^
#define MAX_MONSTER_LEVEL 160" h. J& `6 @% B3 R
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
9 ]8 W( y! x9 @' T1 G6 H. S#define MAX_LEGEND_LEVEL 121
4 k+ i- [) }& `# G#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
. d4 m: N1 r9 z' [2 ~
6 C% E9 _, [; N. o9 l) S5 i
: [2 b4 n: E1 zRed: Player Max. Level4 e5 K! s, c' K! K
Green: Monster Max. Level
) l* c7 w+ H! r
+ t( C* Y* c' vThese changes as simple as you want.
2 g" d( O5 z* D1 r& ~" M. O2 N ^, ^( C# i+ M# H
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
, A$ v6 f6 Z- I" j' _6 M" X6 I2 P0 g/ g
Part 1 of blocking CE ! }* N0 h V! ~8 d# t+ Z% l+ m
4 O5 \$ E R) l& d* g' k
In this tutorial I will show you how to change the Head of Mark flyff.
- H: d# x5 D5 O$ _1 y& nThe current Head Mark is well known, 5E, which results as a string ('^').9 k0 \ V% v( n- u
# z' m" G/ t- j' }# ~# Z h6 X
For this we go to the World (Project) and looking at the Buffer.h after thistext
3 v4 C7 T1 d- C! Z' y1 A5 R( }: KQuote:
( r# A/ H! i# z3 V# Define HEADER MARK '^' / / Normal messageheader( N* M! N. ^1 x7 l) E- ]0 ]
# Define SYSHEADERMARK '%' / / System message header
1 q* ~+ g, I& I0 ^8 U, D2 K( mWhat the Sysheadmark is looking for is not even the top 5E.! m- M. y1 S3 b1 J) y5 C
Change this and it makes the CE Not work on server.
( B* T, v/ \$ d# t% o8 e! @6 D% X4 B- R! R- m0 M
Then Tom's anti-hack is no longer useful.
; j) h" c+ Y, o) V4 S% M* z
3 b2 |5 q$ Q3 F6 f. U QLG Sedrika Part 2 of blocking CE
+ p+ G! E$ J4 x) c; Z2 l7 ]0 x4 U' T* s3 P6 Y! X! M6 k' E% D& u
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.
: q* }1 q0 C# i2 W/ g) XWhat does this have an advantage?
2 T" X! E1 r. U( rThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself / k7 D& W$ a& X; V
8 g+ I7 V) {! J$ R$ H5 _
0 x" x: o, _2 c5 CFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.3 E, @6 o: S! E* m
) O8 ?; t1 A+ e: O
Then search for the following content in HwOption.cpp
2 H1 \% c- @; \, g0 p' _( b. F2 A! h N$ [
1 ]; R& |4 y8 Y( T5 ~' U
if (scan.Token == _T ("ip"))! B2 u P5 w' w: I: t7 S0 I
{3 U) Y: |+ s7 A/ |
scan.GetTokenEx ();
0 D3 {; z; n) y6 Y0 @strcpy (m_IPAddress scan.Token);, K/ z7 V. o f1 }
}
h0 N3 C6 I* ?8 {- N3 F0 qand turn it into this:+ U8 T" l# w, E/ c. G$ y) g5 ]
Quote:
: ]" d# a6 W* p' tif (scan.Token == _T ("ip"))6 p: T& m( o- w
{
* |$ P2 L# `. k" }5 [6 w8 ^! W/ / Scan.GetTokenEx ();
; {: ?" C" |: a* K* G7 J* I/ r/ / Strcpy (m_IPAddress, scan.Token);
" [1 D/ B. C- ]" O# o. K" D}
: y! }: P6 e R9 XAnd you created the solution.
; w! B( j. G/ a1 t! q) H0 I6 Y2 x8 j
6 j1 l& q N' v6 I8 w# uThen read the Neuz not the IP from the INI anymore. even if put in it
( c1 U0 p; [8 p0 i/ y: B3 ? s; w: q6 S
P. n% k& o/ T9 ]1 [1 g2 f
Max skill's
4 ^7 K8 v6 M5 c! x% i7 K+ W, B+ w# j+ z w) I; e1 V9 R3 [+ a3 [. a
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 ) j0 f( |% K: g; A* M u, L6 L
) w1 N2 M; A" ~) J
With the TUT can provide the remedy it
- O3 \1 Q9 ]* j6 B6 h
4 |* u0 ] i4 X; s7 B4 X7 ]# 1 opens the file SkillInfluence.h- _% ^4 O4 V) Z9 z- ~
# 2 Search
9 r9 S8 H& w+ T0 b" q- K. rCode:8 v4 V0 i T/ ~" m5 J$ D
% U' r3 r1 f9 o$ ]4 u- Y. V8 \
# Define MAX_SKILLBUFF_COUNT 140 J5 Y& T, t, ~* s. ?( {0 b" U
( D& ]' l, \% D. C
# 3 Change the 14 to your number (eg 21) and save it from5 F G1 m O- m. T; y4 J7 K6 l
# 4 compilation and ready
# a) u3 [) {/ p1 T( ^
9 @. G4 T3 s0 o9 t& i+ q# t. A, N3 |/ n" e+ `( Z- A/ w
I 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:
5 v4 t+ g5 ~3 p( ], F; p4 n% M C: \1 G. I5 f* m/ f
dennisdra7 c# n: L b& u# s& C/ V% X
.Crasy
/ N6 B# e# V2 S©ross
R1 }+ O9 h9 O* A( d* s2 QSedrika! E) d/ k. t9 B& _# g* Q
9 H, k2 r5 O; y6 L/ ~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! $ {, }3 O. F: U9 q8 X
' A0 B b0 v2 a2 l/ f- D! T
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less# }4 U( s, g1 l; d! X
& l Q u7 U. O0 L
( Y( A! G2 Q3 k. V. p5 UUpdate 1:
how to turn off "Profiler" in worldserver.exe
& ?4 B: L, L8 F. T3 X6 Y" X& D0 V C! ^$ z
, B, s' N) H K, ?" @
in VersionCommon.h of Worldserver Solution
$ _6 f+ O, |" nLook for
" I& \- ^! [) ^, a
) b+ O% ~: d$ a% ~! {5 P0 x4 h#define __PROFILE_RUN, x- d7 Z8 U# V" X% }4 R6 U
% K, ~1 l- v" M V
comment it or simply6 O; |" ~! ]% x( P Z$ e; ] c7 p
$ P: W3 P5 b/ g. O) e+ q. I//#define __PROFILE_RUN : Z: }$ i5 K5 W+ ~0 V
3 I; _! |0 p1 C7 l
5 `# {/ p& ~7 j* L+ l
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投寄。谢谢。我添加更多的很快如果你有病加太
, u/ d7 h2 ]/ A& ]( w, M |