|
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 / K- ~5 v9 X4 k& l& j% t. \) V
change level without Rebirth
( Q$ w! i4 U: U k7 V
- A B, a2 u* D9 h3 @4 Y8 c0 N nNow, let us begin.* W8 y) X4 q9 L0 z, l
& i2 t, e7 h5 B2 c( u9 c* B; c4 `$ P0 i
Requirements:
* ~! `: U- I7 o, E+ W5 hSource
- u) ^) [7 ^6 p) l& p* ONotepad / Editor! T7 a2 R' l" G& b3 z) Q+ G
1 z* b. K: N6 K; Q; Q' W3 x
/ / Tips by Sedrika) f5 c; J4 J! H3 x( P5 p( i3 l
! k7 L' y/ B; H+ C- O. X ^5 \
It is up to you how you do it ^ ^
% |- ` b# h7 z2 r0 Z; Q# }/ x# W
- v9 z; v- S+ ^, J7 T; eGo into your source folder and open the definejob.h1 h. I" I( |( |" _6 X
Search there for:
3 `3 }1 c# P2 w- q: Y4 e
8 O4 ^" |6 w( ]#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
3 T) P7 M* [# z$ j+ }6 N% f/ p8 o#define MAX_LEGEND_LEVEL 129
" [4 P$ Y4 O4 n7 |7 b* j#define MAX_MONSTER_LEVEL 160
" ^! Y8 B& L: A#else // 15Â÷ è÷¾î·Î ·1o§è®àå+ }& N* A+ V/ X3 L# C/ Q; w
#define MAX_LEGEND_LEVEL 1216 q& Y* Q- R5 W* d
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå 6 H1 e+ }1 l; K* |5 A: X. j& b
6 Z' E u a- O2 g$ m( S
; h% [) t' \; R7 K6 ^% g4 tRed: Player Max. Level
( t4 [4 {5 D% f a" T' [) ~Green: Monster Max. Level3 A" Z1 ~) c! N# Z" c
+ K+ f( D I8 G& d+ OThese changes as simple as you want.; L# i e; `' }6 J- b) P. R
6 k0 j* \ e4 O7 i" F- A' C; P1 h) u4 `Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
' C% h, S. t( o6 l4 \2 L
+ t5 k: r. d! t2 M. D; V5 S0 k# a Part 1 of blocking CE & r% ^+ D% Z, l* F# L5 Y& J( s
' C* U. r( R1 l, a3 `1 WIn this tutorial I will show you how to change the Head of Mark flyff.7 }' e# j& E+ m* C
The current Head Mark is well known, 5E, which results as a string ('^').
1 Q8 B1 u/ |$ O8 s+ u6 o
% w% O' N) I6 @' B" m2 jFor this we go to the World (Project) and looking at the Buffer.h after thistext
* u4 c2 N. r& R: @; L6 S VQuote:
, o6 y: Z1 @, d4 c: O( W- M: f# Define HEADER MARK '^' / / Normal messageheader3 S$ v8 R! u- V# a. i: `
# Define SYSHEADERMARK '%' / / System message header) Q5 J" V6 j4 A7 E, S
What the Sysheadmark is looking for is not even the top 5E.
$ a' `: F. V F) J1 v4 _. XChange this and it makes the CE Not work on server.
$ D- L) A7 t1 V# ~
0 X' t' I H6 g; [, @! H! V1 l. oThen Tom's anti-hack is no longer useful.
1 ~* F3 J. j3 P' ]4 ~6 m) X% G6 J+ w: W$ t' K9 l; E& e/ M
LG Sedrika Part 2 of blocking CE ! R9 K- X7 E( Q
( k' ?% s5 [" v- w
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.
; n6 T" E, Q4 ^# {) [What does this have an advantage?( u( d7 t i" ?4 i1 o, Z9 n% w
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 0 ?1 S; |7 Y3 T) s
; j J) R& q5 i6 _
' Z4 u2 x2 F& |: zFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
4 e* L: [* f i6 G. ~: }0 n5 n; ]
3 _. P8 ~; }7 H6 C7 Y3 T3 ~Then search for the following content in HwOption.cpp ; y0 y8 x/ t3 P% O
5 M; J& K5 I2 J) S
) ^; q& Y: @" s# N3 K% w; P
if (scan.Token == _T ("ip"))# N& n# y, K3 Q/ ?& m
{
% Y- N! O9 J5 C+ k5 e' ? vscan.GetTokenEx ();, h9 u/ G7 y: s
strcpy (m_IPAddress scan.Token);# [: A+ O! o3 A9 n$ D
}
4 ~' P. s' V8 ^9 T: Jand turn it into this:; {4 A& k2 q: \- U) V. Z9 o
Quote:' w1 F+ c0 e, i X3 F4 \
if (scan.Token == _T ("ip"))6 ~0 d4 N6 x! i' }" g
{
4 X* D. O D9 Z1 h' z1 l5 T ^# Y( X/ / Scan.GetTokenEx ();
) e' N9 e' i! k9 _; f/ / Strcpy (m_IPAddress, scan.Token);
6 |! e! F1 \7 K( {4 N+ o R* B} m9 h. q/ C, k
And you created the solution.9 q/ N- m1 ~, d* l6 _& a
8 p6 n1 ]: `6 b* c& d2 n5 {; K# B& D- x; V4 B# k, f( q6 B
Then read the Neuz not the IP from the INI anymore. even if put in it
+ A+ m' G) B4 _3 d: S7 A( w$ ^1 `' v2 r& s" J; S& {
Max skill's 0 A% L. @0 i" ~/ c e
% H4 H( l3 v6 W: K. g3 w' LAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc
$ [' g4 [3 D7 n, a7 b
; H7 R. v. e' @1 o; v6 @With the TUT can provide the remedy it
7 G& A9 A4 w: R- b8 |7 b/ x
4 ?9 ^, _4 E+ Q+ C$ v/ x# 1 opens the file SkillInfluence.h2 }! H# D# c9 _$ S& V9 j# l2 x
# 2 Search
1 t, F7 G* [" d C8 HCode:" [8 A& t: L0 A
4 {% N% n9 ~( S5 [
# Define MAX_SKILLBUFF_COUNT 14$ `- c& b0 P" C
( U' s0 j/ H/ S/ c+ c: b) ^# 3 Change the 14 to your number (eg 21) and save it from
, w2 N+ K8 e# B2 u0 W$ ~- B# 4 compilation and ready$ g3 S) U# h5 q! S: y6 [4 s
7 Q; x1 k6 M* w0 `9 b$ I ^1 @7 S( V
# W) \# Q ]% }& t4 d3 HI 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:
/ f# J! g0 F1 u
2 N* z3 Q0 g3 u T% h9 vdennisdra' ]5 \7 X+ ^" o. F/ e5 |: L
.Crasy
4 B$ ]: o. P# ^1 R. _# b©ross
8 c3 f( N c3 q! ?# |- t$ F1 W) ~Sedrika
1 Y( s1 K: r9 W# Q4 s! k1 O5 m3 ^$ P) Y" t3 v$ x! V( K
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!
$ E, O7 L5 S* m( _- R8 L( |. z/ r2 Z( t: U
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
7 w2 n4 r1 \ O& Y0 i' r
% ], a% @: c) D6 h+ n
5 O0 C3 q. |: _$ A; T2 }1 hUpdate 1: how to turn off "Profiler" in worldserver.exe 5 f7 N1 t" K3 P7 ?3 d s
; b' x+ B2 t; x B
( N$ j9 y" ^* Rin VersionCommon.h of Worldserver Solution3 ?+ v3 p8 M; J( A" p
Look for$ y1 t- K0 F5 v" f2 Y0 w4 S
2 F2 g3 F: Q9 z# D7 Y7 u#define __PROFILE_RUN' E+ H& \1 h% u2 ^4 q' m
2 ~& P2 \% j0 G
comment it or simply
" S; y( v. r: P. D- O2 K% B2 H2 H% k2 E, I
//#define __PROFILE_RUN 9 ]8 [9 K' Z1 ?4 h/ M) D9 t
$ D4 y/ k; {; O) Z. K
* ^* z. f2 w" p- ^8 ]) G* O9 {
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投寄。谢谢。我添加更多的很快如果你有病加太 # {5 _% |$ s+ N8 J3 B
|