|
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
5 H, V4 I$ w* a7 B6 d/ p+ h5 |: r& }change level without Rebirth5 ~0 q% p3 X& t# L
# e) _/ p. c8 ^ G% vNow, let us begin.. M: Z/ Y/ Z0 B$ E k' Z
5 u8 r% g) s. LRequirements:
' }7 h8 k: J/ N- D4 M0 R' ]Source# q( Z, ?( [# f
Notepad / Editor" K, x. `' s0 ?+ e
: e: k c; x# r
/ / Tips by Sedrika' d' m# [- H; v
# B* a* k. ?* A3 B# B& J( q
It is up to you how you do it ^ ^
* F: W. }. g1 _
o$ L0 c$ w: _ @$ {3 `Go into your source folder and open the definejob.h9 K2 X$ r; s% \& K
Search there for:
) [$ s: B; R1 J. F% K; W3 C0 [' D$ t. i
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
, I7 e' U9 f/ D- F4 O6 h- M: d5 _: o#define MAX_LEGEND_LEVEL 129$ X- }' d5 \5 ^& e4 G2 m, Z* {6 O8 u
#define MAX_MONSTER_LEVEL 160
6 D2 R# A' Z% M: l: [1 Z. e8 D! E#else // 15Â÷ è÷¾î·Î ·1o§è®àå
' k+ Y- r( d9 ?# F6 [$ q( s#define MAX_LEGEND_LEVEL 121& K# d) W- v1 ?7 J# w
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
/ g' |* \, Y' F' ~+ h; c8 k9 w2 |- }
9 F3 y# x4 o8 S" d) \# n' V) L8 D
Red: Player Max. Level
& a, o( a! _. ~8 L X, DGreen: Monster Max. Level
( D9 ?, Y; \1 v/ X& a* z
9 z) {0 N/ A; k& R( GThese changes as simple as you want.
0 {9 c5 f/ r6 C5 y. T3 ?5 N4 o1 N2 A: Q% ?: }
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
9 l" U: A- T- J! f) F
" a0 S7 ~! a3 L% v+ n2 O7 x
Part 1 of blocking CE 0 H. p2 _$ f6 M
0 T- Z* J4 Q4 j: G2 a
In this tutorial I will show you how to change the Head of Mark flyff.+ Y, l$ E( _3 k, T$ j7 o% B9 Z2 u
The current Head Mark is well known, 5E, which results as a string ('^').. n! e3 }& N, r8 m- H+ o; C" J
/ O, E9 [/ `) D2 s/ C. EFor this we go to the World (Project) and looking at the Buffer.h after thistext
4 q' |6 o3 g. ZQuote:( I6 e# b" ^5 ~5 f! s
# Define HEADER MARK '^' / / Normal messageheader- [2 r+ V+ y( w" S7 R4 b2 J& k8 J; {
# Define SYSHEADERMARK '%' / / System message header4 r+ y1 P6 |$ W3 o3 ?& y5 U
What the Sysheadmark is looking for is not even the top 5E.' y7 l" E" C( z0 c; O6 x
Change this and it makes the CE Not work on server. M; W! r4 Y% [$ N3 \
, ^; h/ K3 K* z# l7 ]. X
Then Tom's anti-hack is no longer useful.
Q# G: E1 r7 w. h4 f* G! m5 [ H! C3 h' N$ u
LG Sedrika Part 2 of blocking CE ! A A6 ]% W @( A8 M
/ ^$ w# w$ [0 V8 k
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. / F4 s b* v1 m! H+ B9 O
What does this have an advantage?( g7 S$ K* e+ Y4 `0 m# q F
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
4 Y& Y+ f7 b" M6 E$ n. }# z& E: z" E# e
* w+ ~$ H, G7 z! a: X r6 R$ \First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
* X+ N; k+ r, V- i: m$ L. y0 a
- x3 a, p4 F% Y1 G U2 E& u# o! rThen search for the following content in HwOption.cpp
2 o2 b$ _6 {+ m8 c) |$ h3 ~' _! N; X6 N D
5 D8 J8 ?7 Z8 ~( X, A7 Y
if (scan.Token == _T ("ip"))! @2 p7 m+ F5 z2 z) A' t5 f
{! e) @& s! G, w4 ]" ?1 s
scan.GetTokenEx ();
2 M& w6 e7 Y" l1 @% o, E- Estrcpy (m_IPAddress scan.Token);
- _6 H$ M; Y' K# J}4 s7 @' D$ w0 I7 `4 ~) X1 X, C
and turn it into this:! Q% f1 U; E& U5 n& k0 m
Quote:
A4 |2 n0 r) {6 oif (scan.Token == _T ("ip"))3 [9 _* Y/ I# q3 z! S0 l0 C
{
, c( z* S) x- A" E- r& a7 J% m/ / Scan.GetTokenEx ();
. t' ~9 F5 N$ z0 d/ n) U b/ / Strcpy (m_IPAddress, scan.Token);/ m# u2 F, F! z3 C" U X
}
% ]3 o1 S5 q' r" v: r9 rAnd you created the solution.0 G% ?" k- c- C( c7 i, Q: u
( c+ X( [* L, ^, r' a# m+ v
, G6 V; r' z; n5 G6 j0 TThen read the Neuz not the IP from the INI anymore. even if put in it0 w/ Y& a, T5 x& l9 ?; |0 N3 D
* r6 Z' w) F; t+ @2 x Max skill's z+ @3 |1 n6 G4 o
/ Z' z/ V7 {& v$ r* s5 e4 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 ; N2 u1 `$ U, _4 I4 D( n+ ^
; g' [. [, Q9 ~4 Z% ~1 X/ ^7 k
With the TUT can provide the remedy it
3 q7 m I3 }5 @& Q- m- m) [! k; W2 M7 z* ~) q
# 1 opens the file SkillInfluence.h
, x( g$ R! Q2 D3 H1 K; h* \* R# 2 Search
w) F5 ]+ U7 J) ?Code:2 |3 q6 J4 y) P5 `& o$ F( R) a
. s1 m, X& I# |# _
# Define MAX_SKILLBUFF_COUNT 14
# b2 S4 S3 |9 S& P$ ^% |
) }9 k1 m0 u1 U6 H8 ] ?# 3 Change the 14 to your number (eg 21) and save it from9 [: N+ J4 D/ w
# 4 compilation and ready
8 y* R2 y) T# \* s/ n. T( `) p& }( i4 i+ O: z3 I/ k7 S4 M; G
+ M+ n# `4 `, w& n) E8 R( oI 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:
& z, l) p% h$ E" S9 }; s. `: ?% W, O7 T
dennisdra2 B8 @) o) b) s' f" ?& {) T* i, `) a& E- B
.Crasy. z& g5 N7 C+ s
©ross
, W8 M* y0 h" H+ t* m4 k, c) l1 MSedrika
' y1 c6 ]2 ]) t$ q
# ^6 y: Y" [) Q ]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 q4 M" b8 ]' \& T( W8 D
. i; [0 [' Z+ t U1 h L9 q+ u, Y
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less. G! P, [- t7 b( v+ p
: B$ S/ Z5 g$ O, p1 K7 C6 y2 l
4 ]' E- v2 V& o1 p6 x
Update 1: how to turn off "Profiler" in worldserver.exe
% ^8 k6 t! S5 ^
/ L9 q7 T3 [- `8 l
% [+ O( D$ x; [7 X3 A9 {. |. nin VersionCommon.h of Worldserver Solution5 h) T4 e4 d, B
Look for Q& r, X" F% J R7 X" ]2 ?, S4 G
& F; f. K* I7 V L
#define __PROFILE_RUN% B- Z- \9 y9 Z* C. F4 P, n# e0 a
( _5 w3 c0 G) K! F" p- dcomment it or simply
% H) d5 Y# t2 C1 ^8 U R2 x& `. t/ z' D5 h) o" {; U
//#define __PROFILE_RUN
0 S+ Y I0 H- V! q' I
& n" L- ~5 E% n' I/ h4 i$ m( j; |9 G% z% O- v, `+ X! G
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投寄。谢谢。我添加更多的很快如果你有病加太
+ }3 i7 M4 w; g$ m+ f* I |