|
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 d. ~ i K& l9 z$ jchange level without Rebirth
) \! |' W4 {; _. I3 b* {3 I" V) R4 B0 u( c1 w! }
Now, let us begin.! }0 @: a" n2 d. s ]
6 w. Z+ J3 n8 X1 r VRequirements:
% L/ Y& Y8 g1 D9 C2 y# QSource
( h x& X- L( X- Q5 PNotepad / Editor5 ]6 d' c* j) F3 a/ O" }- [
0 K3 Z0 Y% _; W/ / Tips by Sedrika
' C" a z ^: M4 z/ @* c# y$ @% F0 N* l+ \1 E" X4 M
It is up to you how you do it ^ ^
Y: A5 F8 |& \/ z/ K0 _% n5 `/ N8 [) t: q' q3 R
Go into your source folder and open the definejob.h$ v1 n7 U6 k* Q" _
Search there for:
. U# K: l4 K1 _9 C# {/ x E& S/ @" t% l0 v7 @7 O
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå2 M! Q" j2 ]* }/ U" m8 y8 c; x
#define MAX_LEGEND_LEVEL 1293 _; b% F( ]- o# D3 C+ F
#define MAX_MONSTER_LEVEL 160$ u) h7 V: t) V. ^" b4 h* U
#else // 15Â÷ è÷¾î·Î ·1o§è®àå# D8 {, V! F. u, v1 I! w
#define MAX_LEGEND_LEVEL 121" H/ z% e" @* C8 _3 {/ F+ |
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå + d5 a. Z; U: l
# {# Q }/ W* {/ \4 R { L( N j" a& C
Red: Player Max. Level2 E- d5 G4 m) Z9 e9 f
Green: Monster Max. Level
: ?0 m) Q) p7 Q9 \) i% h; e: W4 j" s2 T2 Z0 l
These changes as simple as you want.
, D% Z9 O8 b- N1 } N: I6 ]6 J4 s
6 q, n4 v; w3 n' zThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
5 _- N3 P8 X8 x8 N+ h% K' V" D$ X$ W4 ]# s' K0 {) T5 |9 r' P: p1 q
Part 1 of blocking CE " y' A. V1 ^1 Z0 a- Q- |
2 w" z! c6 ?0 T0 w1 A" U
In this tutorial I will show you how to change the Head of Mark flyff.
r& @6 T8 y2 rThe current Head Mark is well known, 5E, which results as a string ('^').
. e" A- ~: j3 b* Y
& @ W. w. |% w8 r( Z& WFor this we go to the World (Project) and looking at the Buffer.h after thistext
1 ^+ a7 }4 h5 r/ u/ zQuote:
9 y7 M8 g ?: U7 D# Define HEADER MARK '^' / / Normal messageheader# \( \6 o7 Y) w$ l. V" C. a# F
# Define SYSHEADERMARK '%' / / System message header' u: M& m' c4 t0 V
What the Sysheadmark is looking for is not even the top 5E.
/ v* K" O; f' O3 a' p3 E2 N. yChange this and it makes the CE Not work on server.
5 t! O; v8 C/ \! Q1 Q$ N# e; j! z& f# f: J" S% O) Z7 P
Then Tom's anti-hack is no longer useful., y: \! w4 l! E1 W2 S; `
0 t. e8 H }+ L6 g2 Q! y
LG Sedrika Part 2 of blocking CE
* }! i+ J( p/ V( h- W; K2 G# [
4 }' A+ A- g" K' c8 y+ v! ~; CIn 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.
" }6 F2 \+ ?( o, x: lWhat does this have an advantage?
8 L. B) [9 j; s. G0 |( ]- T ~The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 1 y3 c8 L, @$ v( u
3 J3 Z. W3 ^6 v5 _# z9 B1 a
/ g z* O b" i) ], MFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
( s F9 f* B* F$ A% Z2 R# w
7 Z# d( M: W4 |: A- ^$ XThen search for the following content in HwOption.cpp 4 n- x* d+ L! x3 N! q3 y+ u
& e8 Z* P) P% M1 l) l3 M( V
' F) o& B% y0 P: B$ Kif (scan.Token == _T ("ip"))
% `# n5 k6 Q( Z( M# T$ d2 f{4 i! e% P' g3 @" P3 L5 F0 z
scan.GetTokenEx ();( I; e9 a: H( D$ V% u, C. p) v
strcpy (m_IPAddress scan.Token);9 M: c$ n$ l3 H: c; f I1 n
}
9 x9 Q! r% b$ sand turn it into this:3 Z3 \% }% b2 {4 t
Quote:4 k! p" K3 u* R/ Q) c9 L, C
if (scan.Token == _T ("ip"))
( I7 q3 G6 }! J3 L; _6 P: J{
: W( b# l2 p! u/ / Scan.GetTokenEx ();
6 m* a9 J- ~. O O% ~/ / Strcpy (m_IPAddress, scan.Token);' v i! l! o4 z& p( Z" R. g* W
}
- j- K- A# _. M* R% F7 |: q2 }% _8 oAnd you created the solution.* F5 c1 A2 i6 Z* x9 Z; h$ h& X
6 w1 M9 e- e5 h$ ], \
! a# i* N2 G. i8 r8 r* }) Z( r
Then read the Neuz not the IP from the INI anymore. even if put in it
* E, u: j8 J) @0 f8 F0 T9 _: d
8 H% R d4 v8 T5 j, @$ ~
Max skill's
e6 V- \, U, L) \* K5 Y# F
6 d m8 m3 ^. g- hAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc 0 q+ N: B; O& }: ~/ Q9 A0 E
( q/ Y6 @1 S+ K, R
With the TUT can provide the remedy it" z t2 H5 d- _# y: P* o4 U4 h3 \5 o
- k, o; k0 k4 P' w; k4 Y/ P( o) G
# 1 opens the file SkillInfluence.h
2 ^5 A3 b* W6 [. d' g# 2 Search
& n& P- P# |* K8 n: \Code:
, S6 l: n3 c% `3 Q8 P: n
. c S0 K; L% z% \7 {# Define MAX_SKILLBUFF_COUNT 148 J: T/ w3 L2 O
; d9 w# J* X( \, E: g7 E0 J. G
# 3 Change the 14 to your number (eg 21) and save it from
. Y) O, p1 ]* j' \! @# 4 compilation and ready9 q( W F. l$ | u/ m" R
; U0 l% q1 q ]+ ^
/ X% u" w& i$ h$ jI 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:3 H" q# p7 f8 _2 E4 q
( ~& T/ r/ i$ W# Tdennisdra
- _/ ~4 \' r) X.Crasy9 [/ `0 G) h' m# ^
©ross. c7 ^- U, L! B, X3 T* h# \5 G# L/ I
Sedrika
3 M3 P* H& Y- ]+ g5 A
0 ^* \2 |9 ^% ^ Q8 u; g. h- Ceverything 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! 7 V7 }- ^- r# c+ z0 F) q: {" H
* G9 n3 Z* o/ @P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less$ \1 x7 Q& j6 ^4 [
( |! U$ A! b4 ?/ d) V( L( _7 v5 A: p% q+ a9 o
Update 1:
how to turn off "Profiler" in worldserver.exe 0 k# N+ w- A/ G
4 x |/ A: u) D. H, p& N5 |* S: d3 l6 b+ C8 o
in VersionCommon.h of Worldserver Solution
* c' s* _# C& E8 S9 @, LLook for4 O' u0 c* e) s+ P0 r
% k# G$ | m. g; t
#define __PROFILE_RUN- W) w. u7 O1 m, }
( X$ x( _: G: Y$ P6 U
comment it or simply* F. A; b! D2 d( W0 H9 _1 y
- J7 C, b: {+ q//#define __PROFILE_RUN
# t) l/ _- t, i7 @8 v1 a% C3 N
, d) d: J4 a3 }$ y0 q6 {, m( p
9 Q9 _" S( n1 f+ v9 `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投寄。谢谢。我添加更多的很快如果你有病加太
# f3 a( y! u: k |