|
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 R- ~9 i/ y2 O, D9 y: s- g
change level without Rebirth
7 c& T' ]6 [* W5 W! Z) [9 Q# K4 I$ D5 M, ~
Now, let us begin.6 I2 e! K$ _* {( ~5 h6 Z/ ^
c a* W, F0 ?* SRequirements:+ D- L, {1 H7 U* x
Source0 s2 |" z- E; Y1 D: {" Y
Notepad / Editor9 v& H7 a. E" p* `1 @
; } j# G6 h9 J8 R" `
/ / Tips by Sedrika5 H& c4 e" d7 K+ v9 b+ l9 m' [, J. E6 g
. f; ]. c9 q# |% m7 A0 fIt is up to you how you do it ^ ^
$ ]5 q4 N" e& e
/ ~( N1 N+ E& I" i$ C/ ^) NGo into your source folder and open the definejob.h# u% e: s1 a, U) J
Search there for:2 V! K6 @% f% t. H* D
! h' [" H Q5 e$ r. o
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå9 e# C5 k( {5 d2 n4 P
#define MAX_LEGEND_LEVEL 129
: k& p0 ]. A V% N6 d5 C& E#define MAX_MONSTER_LEVEL 160
8 S8 m: }+ [& Q c#else // 15Â÷ è÷¾î·Î ·1o§è®àå7 {# @( _0 c5 Z
#define MAX_LEGEND_LEVEL 121* ~+ \! C. A! n- Q c6 ~/ U8 l8 k
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
- ?+ x3 `8 R/ ` U
; L$ s* r# B. r2 W3 M$ q S& r2 U* x0 l8 _6 i1 P; b& U
Red: Player Max. Level
5 `6 L( s0 m4 a4 m3 xGreen: Monster Max. Level; U& u2 O9 Y( ^$ F2 N6 z* r; u
' G1 e; s1 D. C$ x; s! g+ B
These changes as simple as you want.
7 a6 g& X9 n7 F1 }! v
: I: a5 T* X6 \( `5 U6 ^Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.; ^% B- ?+ ~) ^5 W* N0 u/ q
( n: P% K4 W% k1 J8 e g
Part 1 of blocking CE / M0 |2 E) n! Z; d+ ^( O5 H: O
4 m* V. a! S$ N& CIn this tutorial I will show you how to change the Head of Mark flyff.
& M% ?& j! k& {- fThe current Head Mark is well known, 5E, which results as a string ('^').. z5 d9 W4 M3 s7 G2 o. z) B
( _3 A& ?& }/ u
For this we go to the World (Project) and looking at the Buffer.h after thistext2 j7 [- \$ L9 F4 r1 F4 L" T4 U
Quote:
1 \. _; y/ A8 q4 u% J# Define HEADER MARK '^' / / Normal messageheader
. L' ~/ ]' t4 C) }% j6 [0 p3 u2 t. E# Define SYSHEADERMARK '%' / / System message header
! g/ D1 j( Y5 x8 s3 f0 I) `1 mWhat the Sysheadmark is looking for is not even the top 5E.# p6 q1 }& U7 i0 u. P' ]! _
Change this and it makes the CE Not work on server.: o Z' b. F& L6 ]( l
4 N7 c: e n& `! D0 @" ]/ o" y
Then Tom's anti-hack is no longer useful.% A: }/ N4 u2 m! T2 w' ?
) ~- d) K1 K$ B/ N" t* d, V# O" u
LG Sedrika Part 2 of blocking CE
0 p6 o* r5 M2 Q5 D, s" E9 {; h! V) A
" S% |& R( i( {( E( f- J0 D, R* Y) zIn 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. 1 p% R1 Z/ ^3 T! K8 k
What does this have an advantage?
3 U7 E) F0 o& n; uThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
$ o( t$ s/ C2 v% [$ b H3 V6 N
# z3 p4 e/ Q4 U: n, x6 f* R
5 b4 _. u- D# Q0 E$ l2 x# HFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
# T8 d- D3 Y7 h" F: U! q+ u
; v5 g9 V* a( i8 K- V% n7 [9 mThen search for the following content in HwOption.cpp . B. y$ J6 _/ s5 x S
- }# q% ~ G( q% u4 d9 ?! E" x( B+ s" i2 e5 H; Y
if (scan.Token == _T ("ip"))2 l: [* D# j0 ]% c
{2 r! Z q0 h( l W7 ^, x7 Q# ~
scan.GetTokenEx ();
4 M! }/ I9 F5 C# r% z; |3 @$ rstrcpy (m_IPAddress scan.Token);2 u; x2 h+ T8 h( }" ?
}
8 L; i, F- u! q: Yand turn it into this: v: i, P- T, x- `3 X
Quote:- X8 Q. ~/ L. J5 o7 |9 }
if (scan.Token == _T ("ip"))
, _( I& m, X$ Y{
' x8 Y+ b. t4 ?: e7 j" E/ / Scan.GetTokenEx ();/ ~' y# E, ^- T Y/ U
/ / Strcpy (m_IPAddress, scan.Token);
Z. \8 H" z( P9 }/ C}% n1 L6 g% v9 @9 j1 {4 }
And you created the solution.
& b8 w2 h- Y, Q- [- v6 W% \
$ J& F% _" v- y( z. F' s9 }1 i/ g
2 q* T0 b9 P7 h+ P; IThen read the Neuz not the IP from the INI anymore. even if put in it
, @/ `4 x* n* q
2 @* i* x/ Q8 u6 D
Max skill's
5 Y8 `4 I& X) I! C/ G& z) j; Y7 ?2 W7 g# G. ~
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 & v9 [( S2 Q% a4 U
0 w' o. n, Z, c9 fWith the TUT can provide the remedy it8 {' d7 `# f4 i1 O- ^4 `, q4 q
$ }( S+ D; U2 o O' A% ]6 d
# 1 opens the file SkillInfluence.h2 B d6 ?7 k' q% o# N6 q
# 2 Search
$ }. N! \+ c2 k4 l5 n8 XCode:
7 V+ Z6 [' q) h; u8 G5 Q' \& i9 ]* }; Q8 a
# Define MAX_SKILLBUFF_COUNT 142 ]+ B& E2 I) J# h D( M& X
: Q | F% C4 {6 L) [( C+ ?: s$ n
# 3 Change the 14 to your number (eg 21) and save it from
8 z! p: d5 [2 b. k6 ^1 v4 F# 4 compilation and ready
|' v$ |5 X @- C2 }) [! U1 J
! F& K8 ?, i! X7 V- b! o; _
# ]7 j1 ~$ _& K* s4 q7 u+ PI 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:
% p6 V6 h' s& c( b+ R9 n& {" M7 F5 r, @- ^ q) s# X( Z* d
dennisdra
0 ~; K3 B: E/ C2 n5 Y5 S% D.Crasy
! i7 v; Q" g3 ?+ H0 f' s/ p! N; {# _©ross
( w3 _" g3 z+ b* _2 w% g0 j" Z) S5 xSedrika
: {% j1 a1 T$ c8 F
2 b! j! d6 ~0 yeverything 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!
, i% h$ f' [1 P, y& n6 T( c! P3 @; \. F. q @' o5 q7 y, ^
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less8 K: a9 H9 R$ h# c, }1 X% {
" u$ F' ~2 {, M6 C* \; B( S
2 M/ r- I' x* P# G1 @Update 1:
how to turn off "Profiler" in worldserver.exe
" t. b* l+ n: X7 } U
# |2 A8 ?- V6 g
0 c# g' B; p; q$ \" _$ M% X5 Iin VersionCommon.h of Worldserver Solution
0 g9 V) C: m; x' q# @( oLook for A* s8 f8 ~6 R7 K5 I; y
$ U2 D; Q' p, K
#define __PROFILE_RUN
K6 c* k6 e: f2 D: y2 S) _" ~* C( J' u$ _; l
comment it or simply
! i0 ]+ s s/ w1 L C5 q2 V3 y4 l, }# e" W
//#define __PROFILE_RUN : S: O' `8 i4 }, ]) o# B3 E
! z" l0 d0 ?: I3 H7 a
& C7 z3 i2 j' S" n
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投寄。谢谢。我添加更多的很快如果你有病加太 1 s/ m- F3 B$ c9 j% E0 Q0 w
|