|
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 0 M) C; z0 O' C+ {7 m/ {' ]* ^! b
change level without Rebirth
- C2 Q; h6 ]: c
, B: n6 e' [0 |2 z f: qNow, let us begin.
1 T' `; z7 g E& b5 M& t2 s5 c/ H1 A+ C, |* O
Requirements:* l" A( A o1 m! \7 V, a
Source
! u! c2 J3 C! R- \" [Notepad / Editor3 t, @& [) v) Q* Y! \: W' C m
- h& F5 R! W \) a# x/ J, \/ / Tips by Sedrika7 @: G& Y1 H$ O0 x e
" X# w: `0 M) q2 I/ l+ W6 G0 wIt is up to you how you do it ^ ^
" `: R% k3 p0 U w# K% |" l; v6 }$ S2 d# r/ Q
Go into your source folder and open the definejob.h/ |- N2 B7 f8 w+ M5 \) `( ^0 F4 Z
Search there for:
5 c: I4 z% C. D/ C- E. E+ C( R* W( e& m2 D
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå) W6 L/ ?8 S, Y0 d/ d6 ?. h& M5 e
#define MAX_LEGEND_LEVEL 1291 K. t/ x4 H* M$ x1 K# w0 V0 _# B
#define MAX_MONSTER_LEVEL 160" T/ T1 a. p9 m: f
#else // 15Â÷ è÷¾î·Î ·1o§è®àå0 S7 A# x" N5 B: d) w
#define MAX_LEGEND_LEVEL 121
7 B; n" p' ?5 ]: z#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
2 a7 k. e3 u/ r! i2 R b( _8 G I$ ^$ o( E5 x
" O, i' {9 @2 ^( ~. aRed: Player Max. Level
; k/ G% c; ^' d# ]( LGreen: Monster Max. Level. l0 z7 o3 Z+ v, A$ `; T" i% X
7 f" @& B/ f# s0 G# M3 ]- j! b6 M, gThese changes as simple as you want.
! n! E; y0 \9 @5 B, |# m+ t! U. c6 z; `% G
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 [3 D( @: B+ r0 f. J( @ @! y4 k. U2 A5 K; x
Part 1 of blocking CE
) s0 h/ g/ }. ^2 _. W i/ m$ c; g* `- R+ o4 A
In this tutorial I will show you how to change the Head of Mark flyff.
- y: ]' `0 }( ~/ ], a0 |The current Head Mark is well known, 5E, which results as a string ('^').# P& y# |7 V& _; h) e! [. d
+ O" d2 `. B# z0 y
For this we go to the World (Project) and looking at the Buffer.h after thistext
) d5 m* ~6 ^6 mQuote:
2 L) D$ v% `6 ^+ a/ u/ j" @# Define HEADER MARK '^' / / Normal messageheader
; {2 @; h' Z. |# Define SYSHEADERMARK '%' / / System message header
/ y# y5 e6 E0 Y7 |( CWhat the Sysheadmark is looking for is not even the top 5E.
' D! C# c# {$ R* a! C R* aChange this and it makes the CE Not work on server.' O; L$ ]/ N4 S9 M5 v
% ?! o4 [ i) R% q( i# l9 g: M
Then Tom's anti-hack is no longer useful.7 T- L* |' y& {
* U, j9 B, P. [
LG Sedrika
Part 2 of blocking CE
. s$ F! B# S; l" ~- Y; _0 [* I# d% h' J
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. $ W( Q/ c1 @9 j# w, C8 q! r7 B
What does this have an advantage?
1 Y, u/ I+ z6 \! GThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
8 E! U+ q& x% N7 N* v* ^7 b1 o; v3 _ [
9 D) n) | I$ k1 h2 bFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
; a. `# q8 J5 `4 t+ {. B- N4 y& t5 \9 i( |, ?9 ]3 h
Then search for the following content in HwOption.cpp
/ ]3 r2 E# S, n: K& d. c- y" l
9 h6 `2 y- D" h9 V
9 m, P' |( N* Y# T0 Z8 nif (scan.Token == _T ("ip")). r' Y3 k' m( ^9 E! r6 Z; Z
{8 r0 L0 H6 `! G9 R8 V+ b& ]4 C8 x
scan.GetTokenEx ();2 Z$ f4 f2 b: b7 X
strcpy (m_IPAddress scan.Token);
5 ^! _: r' O8 Z+ c3 [+ t$ j$ S- i}
2 L9 ~7 B, G: F7 D7 d$ f% ^( B) |and turn it into this:1 C/ _( a% a3 @# e1 A# d; c) B
Quote:7 B3 c6 @% @% ]
if (scan.Token == _T ("ip"))- z( v6 r, ]: P! O5 V
{# R6 ~) \5 P/ f: n* p2 r" c7 @
/ / Scan.GetTokenEx ();5 }: E. ]8 P0 |, x
/ / Strcpy (m_IPAddress, scan.Token);: [" W* Y/ ~" K7 k% N* s
}
7 `5 ]: z, A8 \: _. tAnd you created the solution.2 v; n0 k9 b/ k" X. s7 t2 ~
. |9 `% E# C* Y2 R
" [! r+ W4 P' \
Then read the Neuz not the IP from the INI anymore. even if put in it F0 p4 P% ]( l! j0 O3 }
$ [. ?! t+ ~8 e; C- b$ }
Max skill's
* p6 h `! ^+ j4 Y2 f9 s
/ J9 g+ Q% D- h% DAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc : _. a4 k$ ~) l& f* [6 n
$ ^0 {) M2 i! n8 g! `$ m. ]
With the TUT can provide the remedy it* ~0 N+ ]+ R) K2 G' L
/ q) }( V, w& N
# 1 opens the file SkillInfluence.h
$ j# j- G" A1 ]2 i: y" J4 S7 ]; w# 2 Search( e; n8 d- m/ A3 u
Code:. G( x8 m S7 v3 y, h
: g N3 G0 X2 w! r2 {( f
# Define MAX_SKILLBUFF_COUNT 14
' e# b: O4 F, o' \, a6 o% P
- c* J* h d( T# 3 Change the 14 to your number (eg 21) and save it from
) A/ {$ x$ j8 o) `# x2 V# 4 compilation and ready$ ]* ]. Q% Q+ z5 q n( s
6 V5 i; B, N8 F6 ]1 v
2 s& m0 b7 q0 @
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:! c9 o# d7 q0 Q: |9 z
; X4 z7 W# W, ]3 o; e
dennisdra
/ u3 p0 @) o& ^1 Z+ E! v) \: f.Crasy5 h( Z5 V$ L7 S# Q; p
©ross# W, z9 M$ |; {6 k. b( ?$ ]
Sedrika, ~; x$ |3 t# a
7 G/ N4 i& d5 e- [5 ?1 T. C
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! 0 ]# y4 o' m) O# I1 r! U
3 y; ?8 l# r0 `3 {. l' Q
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
: {/ D8 z, f4 i* x% o7 T) n& W* U& ^' o$ }" c2 s
- w: j$ I, F7 _2 N( Y5 z, ~Update 1:
how to turn off "Profiler" in worldserver.exe 1 s& I" o$ K5 c1 B) G6 p2 N0 w
0 n3 C! n: s, G6 [ D
) J0 k- f3 g) R9 n6 V6 z9 Zin VersionCommon.h of Worldserver Solution
1 F$ ?( p# I* @& \3 k( a( JLook for5 X4 C+ W) Z/ X4 v
, S/ _9 \ o% E5 d3 b( h" g0 ?6 i$ G#define __PROFILE_RUN, l- v/ p$ {) ~
* k, Q! _ | n& P9 q
comment it or simply9 O& O0 p2 F# x" J* S( ^
, } \) a+ q* x9 y/ a//#define __PROFILE_RUN 9 M) t e6 v) c+ F& _$ S
- E" z5 L& q4 M. i4 r9 b
# S! I# y1 I/ T% v' _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 @' i, p. m$ Z |