|
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
# r, L+ T ?2 k3 ?( ]1 Vchange level without Rebirth
7 L$ W# N& {* Z+ g& N' k/ Y9 m/ @) ?( c2 E3 n2 S. F4 v& e: X
Now, let us begin.( v, [/ m6 G% q. k1 ~. i
6 s" [# P: w- r4 k4 b9 L' j: ?
Requirements:8 n% i0 Q; z! b" ^
Source
, f" D7 b) f+ k; T3 p7 B5 _Notepad / Editor, ]3 [ ?) C) |7 |
, p+ O$ |2 S7 k p4 ]% p0 d$ |
/ / Tips by Sedrika9 F8 i6 `" C% {' M+ M
" c" I* p7 e1 E7 X9 j
It is up to you how you do it ^ ^
: U8 h; m9 n+ e1 R3 j" }3 ^4 C' M2 o' |: y+ i8 b: j
Go into your source folder and open the definejob.h T* }5 E5 H& M0 ^; G
Search there for:
* G% F: `: }6 k% ^2 o$ N5 x
X a* O/ z0 Z3 L#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå# z5 w; C7 N" r8 V! s/ h+ t
#define MAX_LEGEND_LEVEL 129
, o$ Q: N+ K1 w) C/ V, A#define MAX_MONSTER_LEVEL 160
2 }. J m! {" d% {4 z#else // 15Â÷ è÷¾î·Î ·1o§è®àå" Z5 V+ S' X z! A2 z, M/ L
#define MAX_LEGEND_LEVEL 121
" g& n6 q1 H6 D/ m5 r* I8 b#endif // 15Â÷ è÷¾î·Î ·1o§è®àå # s/ D3 _3 X" j: y0 P
" @0 A+ M0 R2 u- {2 u. Z
, u, i* l7 u! _0 z' D' ^* z" FRed: Player Max. Level
" j3 Q( _7 B# s# N; k# p7 YGreen: Monster Max. Level/ _ D8 D1 }" N1 W
& M6 F- @$ o4 H" Y$ l
These changes as simple as you want.5 g, P e; s) O8 l2 e9 ?1 T- D
7 S, m( K. ^' S( e: d0 WThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.9 V1 t" ]- Z( @8 U' c
/ d. Y* M, O' k, a% p! |
Part 1 of blocking CE
8 l+ t( S& R8 z6 n# Q f& l
6 U% c; g9 }- J V$ [/ TIn this tutorial I will show you how to change the Head of Mark flyff.
- v# A% w# U& c9 |+ _; ]The current Head Mark is well known, 5E, which results as a string ('^').: q$ m% u0 V5 U' e' L3 i2 c+ A
1 y a0 L$ I- z. I- O4 k' X
For this we go to the World (Project) and looking at the Buffer.h after thistext
6 M7 B! G% s# z/ S l6 ]Quote:
D; r9 n! ?! M5 ^4 {, o- G# Define HEADER MARK '^' / / Normal messageheader- x5 ?4 g" ^( F1 Q
# Define SYSHEADERMARK '%' / / System message header/ C3 g; z+ O+ v' g7 ] W {/ Y/ N
What the Sysheadmark is looking for is not even the top 5E.. `4 x4 N* ?& g9 \
Change this and it makes the CE Not work on server.$ a$ Z. o, t* j) K4 F/ b
4 ~3 E1 U+ L- `
Then Tom's anti-hack is no longer useful.' m& Z v: Q3 [0 [: w$ q
5 `* p" p6 D; N1 G$ e2 U
LG Sedrika
Part 2 of blocking CE
: |% A8 }$ h! S: Q z3 y8 K$ }0 v" F. h) C5 L, y
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.
, n. ^( r4 p7 j2 b: f) cWhat does this have an advantage?
9 L/ |* I6 r% D+ e4 ^+ I7 @The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
2 ?" l$ v5 Z5 {- B1 A$ X0 `: R& @3 u% B- N/ C
* s" {8 X; q% R/ I. i9 U: p, s
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
" p* R, Q. R( `$ g9 y/ z3 G, b& a, A
Then search for the following content in HwOption.cpp . i. r$ I+ f! |7 q
! p! g# d1 }+ {$ v5 q: Y; \6 Z4 J) Y
% z' M u$ D0 j. t/ p0 E0 ]if (scan.Token == _T ("ip"))) E' [8 T& r5 R+ _' F; ^
{! f) p% O1 L+ G- j4 N O$ e
scan.GetTokenEx ();3 S0 _8 {0 F. [5 o1 c( a! r, J
strcpy (m_IPAddress scan.Token);
: A( _: r# B/ d; o}
! T h/ D, B( ?& Pand turn it into this:: g5 x. a6 n. I" n/ F5 U9 ]
Quote:3 X& a( I# d+ y
if (scan.Token == _T ("ip"))
* H. V3 k9 ] l" H{" W1 B- J' C$ \
/ / Scan.GetTokenEx ();3 J& v. e% V( F1 [7 Q
/ / Strcpy (m_IPAddress, scan.Token); A/ D, u+ ]1 \5 U# L3 P7 J; X) D/ U
}. f( j; J" a' }0 w/ o# h( O
And you created the solution.
8 a/ H2 N9 O% ?# _0 L4 v% C+ l9 [/ G' ?. N% a" D7 p
! U" t( x6 l4 _ r9 _Then read the Neuz not the IP from the INI anymore. even if put in it
$ K8 }- ]$ F& }0 D) e0 Y
# L) u$ y; t0 p* ?8 m m# J
Max skill's * W7 x0 m' d2 F' _0 D! h
7 X6 J/ |: f/ C& H+ a* }0 [* MAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc
5 R6 I* }+ E; P3 I, j
( @% K' \0 {4 w1 T2 C+ l0 DWith the TUT can provide the remedy it2 q' C* [4 K$ h! b; p
. {3 d; f, c& P9 F# 1 opens the file SkillInfluence.h
, e- V* T( M! W- {# 2 Search9 e+ D; {# S" G7 V' K; V
Code:
* p7 X E) x* R$ W7 X
4 T! t7 {9 k9 P9 P( c1 J- H# Define MAX_SKILLBUFF_COUNT 140 e& Q3 ]- V4 N, @6 Q
3 X# I F/ I! \) \
# 3 Change the 14 to your number (eg 21) and save it from- m7 O) O% l: X) k5 U
# 4 compilation and ready" N8 L( b0 ]1 [- T5 u% x
. V$ v' N* N! O' N4 L! L$ X6 _
; X9 n6 j4 d. G1 \6 t7 \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:3 p& P7 A# c( y2 e5 E: Q$ N
; O" J4 _4 M! Adennisdra1 s+ X& ^% X3 E8 U& W
.Crasy7 P; p7 }* S1 X
©ross
5 V3 y( f/ V2 s; l4 u1 {0 r2 `Sedrika
% C2 i3 R) ^+ o. M) @# r$ v% ^" y
Y5 w9 C% P0 I. Eeverything 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 v. `& @# f i: W$ o: F; [! Z% f
% s. L4 G0 H6 X5 |. e" }/ m
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
2 `8 Y8 C; I; i$ a; p& U& u8 Y7 L1 f a% e+ `5 n0 X9 j& @
6 e- z1 E% V( C1 q/ l( m0 R
Update 1: how to turn off "Profiler" in worldserver.exe
% T" D. \! T7 x) t' N! x
: Z: o f: }* [. o; `/ _7 I' C5 W% v% e8 ~6 s; p1 V& Q
in VersionCommon.h of Worldserver Solution4 M- C# N4 W, p: M) G% V
Look for
! v* _) w1 V5 |6 E: J J. E" x( x0 X2 l" Q* t- K( ]2 a
#define __PROFILE_RUN$ ~ o. ~2 B+ s8 d3 Q, _
1 n* }, z3 M! H. H
comment it or simply$ U7 K+ r0 @: Y5 g) ^
" s3 X( g; J$ C4 S2 o//#define __PROFILE_RUN & i* {( e) l H
# j* p0 q& }2 e& u- e+ X# G4 ^4 Y
" x0 z9 {2 B- s0 u
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投寄。谢谢。我添加更多的很快如果你有病加太
" a$ ?3 y$ H& f& z- L. Q |