|
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 ( m/ {2 B R1 M9 B" v; y6 w) `
change level without Rebirth% \- b: G% G3 H" A& ?# {
3 Y8 `2 I7 Q9 `Now, let us begin.
' E* ^: _( z& n! ?- k6 s% P ~# j+ v
Requirements:% H1 `9 l0 f8 x; x6 j
Source
8 C7 {6 G6 ?) `% \5 ]- F6 \; P- NNotepad / Editor
% p, p+ N. p# ~- m6 a' [- `7 e) m; U' c8 V
/ / Tips by Sedrika( r- n& R" F y {# D
2 h! z' j X* m, n* Z- |
It is up to you how you do it ^ ^8 b0 K" ^. a1 h* I+ Y# E4 O. I- j, \
9 e0 v4 @4 N* j. F, }% eGo into your source folder and open the definejob.h0 G4 Z$ P6 @8 @
Search there for:" e0 v; |& i& U
, K6 l# Y, y+ `+ ^ y& |8 E
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå$ _8 r1 T- g9 p, v4 p A
#define MAX_LEGEND_LEVEL 129. b5 l# l9 X! ]) q* ~
#define MAX_MONSTER_LEVEL 160* _# i6 r' F3 H# r. w/ a( I
#else // 15Â÷ è÷¾î·Î ·1o§è®àå- x+ z2 h; Y' V+ R; I1 V
#define MAX_LEGEND_LEVEL 121
. |+ U9 K# | w- \5 }8 _5 M0 a#endif // 15Â÷ è÷¾î·Î ·1o§è®àå ) I" p4 L( G8 Z' G' u. ]+ C% O/ z( X
3 O7 o3 B% `8 r {
( n9 `# a9 l2 O3 |. [' e7 n7 `" u
Red: Player Max. Level
; v1 E0 E% t6 _2 d. }Green: Monster Max. Level
' \/ c/ e1 E ]) q. g% g
, u; y, v& a3 y1 F" @. HThese changes as simple as you want.
; \; L% Q$ W: [/ x6 j, @8 g* [2 I, w6 H5 b0 }* u) D0 Z( J9 I$ j
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
( z& \" C/ C- W2 j7 H& q) k2 W
4 l) Z( i) c( K( a l! n, \ Part 1 of blocking CE ! |) g8 R1 V" p. k u0 u. m2 k
# ~! `0 v* ~, j* b4 nIn this tutorial I will show you how to change the Head of Mark flyff.- g: Y1 x) d4 e) `
The current Head Mark is well known, 5E, which results as a string ('^').1 ?, K4 y7 ^/ X( q
. r2 T( ~% Z2 Z! e ~6 iFor this we go to the World (Project) and looking at the Buffer.h after thistext
5 x5 |% C; B, x6 t4 ^Quote:
' t n: n1 k4 O$ k. d# Define HEADER MARK '^' / / Normal messageheader
2 s i* r. N ~9 j2 S: @# Define SYSHEADERMARK '%' / / System message header
, f( r) n1 t: G/ _$ e/ G% sWhat the Sysheadmark is looking for is not even the top 5E.' H) ~9 K3 ~) n
Change this and it makes the CE Not work on server.
" @0 s& T& G7 _
}: ]9 Y' `1 A6 w$ ^! vThen Tom's anti-hack is no longer useful.
8 C8 Z, d) ~3 v: d$ u6 p' x
* v: E/ u9 s1 Y& W' F4 A% ~LG Sedrika Part 2 of blocking CE 7 P1 R1 q. O4 Z; z6 ]% G0 X
- K; z) J, n% FIn 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.
+ K4 Z/ a/ T; |* uWhat does this have an advantage?
1 n1 t( q- N, h. W* _2 T. s% X, j$ CThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 4 S2 W1 o7 H$ n0 H' p% C; H
) ?' j# D1 `6 b1 |
& _* T l1 w) u9 d1 l3 B* B+ ZFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
: {* p0 m* R! V7 I, v+ d
/ d1 v' `' k$ \. tThen search for the following content in HwOption.cpp ' n0 K0 F2 [$ e+ U1 h
2 t7 C2 b% u& @! c. m2 p# T0 Q+ l, |; ^3 i! N
if (scan.Token == _T ("ip"))
% Z$ z9 O1 g W! B8 g{
# S* U/ ?# Z' k* @; n6 _7 j; N6 xscan.GetTokenEx ();
4 H4 t4 `1 k5 ?9 M( _ J* ?strcpy (m_IPAddress scan.Token);# o& w1 V9 Y( k) p
}# u4 L# w8 `; p7 p; g
and turn it into this:
7 ~. T$ {/ ?2 xQuote:
( d5 I0 s3 i3 K4 `" \- V: c' v% [if (scan.Token == _T ("ip"))4 i7 S+ X6 c( h0 n/ l# W2 a
{ d0 _1 W! r2 z' {- B/ k. ~
/ / Scan.GetTokenEx ();5 N! @8 i7 Q: _& D& Q; B. Y
/ / Strcpy (m_IPAddress, scan.Token);8 X% Q, `1 J4 l$ B( X T
}! C; c& S! C" P! R9 _( o3 Z
And you created the solution.& n2 O- f( J' ]. f& o5 M
! x2 Y1 @4 P* _! |& l! ]
* [, c. |8 z! g
Then read the Neuz not the IP from the INI anymore. even if put in it
1 _, A+ u6 j/ ~8 ]9 E) n7 ~3 v$ _1 F/ Z. ]: J
Max skill's
1 c3 I4 e8 y% H; U, H: G- E4 K9 t/ N+ s# E( s& V
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
; H3 I5 P, ~! o Y' c! A
3 R7 \# f* A* H% t' oWith the TUT can provide the remedy it
, ]0 _$ B/ X( p/ B1 b! }
! W+ `! K$ h3 ^: t# 1 opens the file SkillInfluence.h
& Z7 W& v w: B9 f8 U# 2 Search/ G- G& Q$ M1 z* E3 F
Code:
4 V; j. \4 B* T8 \6 h* q: P2 V2 p5 @4 l
# Define MAX_SKILLBUFF_COUNT 14
l8 D! D7 t8 K- }( v$ c. ?4 [5 o' K% l" [' l) D/ t6 B4 k
# 3 Change the 14 to your number (eg 21) and save it from
4 l6 g9 k$ L ~# 4 compilation and ready% P8 g$ {3 f/ S- l3 ?) y: l" I, [* D
% [5 E) m, `: |3 K+ I4 w: Z3 v
! O0 ]5 ^+ t% N$ ? Z% Z, }% b
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:6 d# E0 B0 |0 Z: F8 a* D
% U4 ^8 i+ M F) L& d, w: I1 e' B
dennisdra
4 Q- L! K2 i* h, I" j5 O- P( k.Crasy
* b1 k7 I1 F" P& e©ross4 S# s+ c Q( d4 \
Sedrika
# ^% Q/ I& ?) q0 G- z; b" L5 Z8 Q2 r, I/ D5 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! * I0 o3 m$ t' k% Q
% A& j, o8 J. [9 pP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
% v- z7 F5 [' o" Z) P( h# n* j2 }6 @' c
- Q V5 {$ S, G2 C$ y7 ?9 VUpdate 1:
how to turn off "Profiler" in worldserver.exe
1 y) l! c' q9 }+ T0 X) `; A5 R
: b5 E# a- g, X$ J2 Z1 L( P3 d: P' D* z: i8 p# V/ U
in VersionCommon.h of Worldserver Solution1 @; j4 J7 m8 V) f
Look for8 q6 k! D0 @6 t- L
6 N: i1 n7 P. k% J* S' B: X. Q* ^1 W
#define __PROFILE_RUN
, Z* I* C# K% L
7 N _- C% e2 l; Z6 N( ^) i$ Zcomment it or simply
6 G& }9 o) x) F% ^- V- s! F t8 h ~3 O2 z3 j
//#define __PROFILE_RUN
0 |/ [: o; y8 a: ~0 @& X& S+ d
5 f& @+ k: |7 A" t4 E! g
! n8 [1 q3 w' 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投寄。谢谢。我添加更多的很快如果你有病加太 " o$ ^! x% Y& h: L& m$ Q% L) C" q# X
|