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 8 U# m9 E. F* ~
change level without Rebirth" g* a5 e) C& f: Q' v9 f9 L
" e; _% U% B7 k2 \
Now, let us begin.
% [) X0 f* c1 w. F* w) y
[1 \% \4 J9 K* ]' mRequirements:! ~3 @5 E7 l: M) ]; V4 `8 P
Source
) w# C8 \) Z7 JNotepad / Editor
0 K2 S. l1 v8 G
; z9 R+ B& h$ q' y* y5 D- Y( Z/ / Tips by Sedrika
1 Y: F: i# {7 c. h! n
- r. E! V- T t7 S2 q9 k9 H- TIt is up to you how you do it ^ ^
) p. D3 V( A' l/ B& T; L0 b) a4 ~ ?1 T: ]; h6 H6 K
Go into your source folder and open the definejob.h/ l* R, J" S7 K4 Q- Y* `
Search there for:
3 n1 \4 p+ |# u4 d% D
& T7 O6 z0 ]1 d#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå: X3 q( e- s8 _0 V" m4 S
#define MAX_LEGEND_LEVEL 129
( l8 d9 M4 \* {5 q' q' W#define MAX_MONSTER_LEVEL 160
; a# T3 ], a/ h& v#else // 15Â÷ è÷¾î·Î ·1o§è®àå$ e' N! v: k7 N5 R; y8 P
#define MAX_LEGEND_LEVEL 121
; x2 B T- [% |. ~* S% ]#endif // 15Â÷ è÷¾î·Î ·1o§è®àå 4 H) Z* x( e2 B3 K1 W1 X& I
; v3 ~) u$ w1 Y. ~+ F+ c9 ?- E5 Z l! v; W! S4 ]
Red: Player Max. Level; N2 h* S$ B6 K! m9 r0 G
Green: Monster Max. Level8 D8 y, o, L- M+ E' X7 G
& o7 D" y3 z% s
These changes as simple as you want.# C0 T* Q' F( E+ S7 a
5 C1 x4 D) B4 UThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.% |9 [% g7 d* U- l
. T& x/ c' V6 N! D Part 1 of blocking CE / o6 y& s' N8 R, T
0 Z# f# i" ^+ T e' H* r2 a" Q6 f" G
In this tutorial I will show you how to change the Head of Mark flyff.: m# n/ ?! h1 u6 [: |3 i- Q7 L0 R1 k7 _
The current Head Mark is well known, 5E, which results as a string ('^').4 z3 G& c+ T- w
6 |# x- f$ m! P4 ?4 L7 iFor this we go to the World (Project) and looking at the Buffer.h after thistext
: \0 _; ~: R$ ~% i4 q' s+ nQuote:' u1 M$ d3 h+ h9 q. X+ z) n8 N
# Define HEADER MARK '^' / / Normal messageheader8 [1 G0 t( ^( B
# Define SYSHEADERMARK '%' / / System message header
+ |8 r3 y, X' R" cWhat the Sysheadmark is looking for is not even the top 5E.
% j+ s7 @+ a8 h; ?! t$ P* gChange this and it makes the CE Not work on server.* j/ ?% k& A( B! X
* I" N2 S+ }; C- b3 a) _( f9 }0 IThen Tom's anti-hack is no longer useful.
# _" l9 L) K8 b: \! i% r% F
9 C0 a7 c8 [& K! \; lLG Sedrika Part 2 of blocking CE
; K" w3 O( W$ e# `1 I% h: S1 @) l% L; ~7 ~2 F. e$ 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. - ?# e$ u( S6 S3 W) z2 w# }# d! [
What does this have an advantage?
2 h! d: {5 @+ fThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself z) w5 {+ i8 V2 [5 }( z7 ]
6 Y! S5 H. P" Q7 K7 ?) V0 P5 I* o$ E9 [8 E! l$ K5 K. d$ D
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz. {" f; Q, R8 `, o6 Z$ d9 v& q
6 w: ^ B% k; x7 W1 C% V; ~
Then search for the following content in HwOption.cpp - s0 P- E" ^: n% s6 Y. L. k
, m/ k" H6 W+ X' D$ v- j% N1 A2 m R7 Z" v( C+ k* a. l
if (scan.Token == _T ("ip"))7 A9 v6 G0 z3 Z2 s
{
& V7 F- i6 |9 dscan.GetTokenEx ();
" t) m6 j4 @$ y0 h0 i8 ~strcpy (m_IPAddress scan.Token);0 G" i! N; F2 j3 {: E2 x. H
}. z1 }3 R8 t% l( f. n; n) l9 j2 C' _) I
and turn it into this:( D$ ?- G! r8 n" F- B) l5 l( o
Quote:
0 |. Q Z3 M/ I9 G q" z( }( Bif (scan.Token == _T ("ip"))
( |" z5 }& x$ U$ {. k3 a+ i7 L{
4 b7 a0 k8 O* H: `8 A6 d( B/ w8 D, g/ / Scan.GetTokenEx ();
2 Y# Y6 S2 f$ g- I% G/ / Strcpy (m_IPAddress, scan.Token);
' L% v8 ]: w9 W6 j; v' x}
' y# S) O" y. o( Y! c/ oAnd you created the solution.
; ]7 O# Q2 O9 F( G# L' Z/ h
- \9 s& j& t, u7 x1 n, M3 U2 Y5 ]
$ z. ?2 t8 s7 ~( ?& ]) n3 t# E" D, NThen read the Neuz not the IP from the INI anymore. even if put in it
; m2 Z( Y, q7 y+ q" A3 _
" }. _ ?3 ]2 `; ?' D; T" m" n: B5 r7 z. n
Max skill's
/ B4 [, b4 |" `3 Y
3 N/ w8 f# F$ X6 k* _$ \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
7 N4 O/ }& x' C$ r' U5 Q4 k
2 n: V. v! ?7 VWith the TUT can provide the remedy it
" F7 [2 _+ \) v. E8 i3 K9 d! I7 O: c/ _
# 1 opens the file SkillInfluence.h" N: _8 u; ^( h! C- J! F
# 2 Search
, e' I/ } f* H! PCode:
8 J. \1 H8 V |0 f* o4 S; b/ J2 L0 {3 o8 @, y
# Define MAX_SKILLBUFF_COUNT 14
( o$ r6 ~2 [2 F9 ?1 \+ n/ Y1 e( R- t0 n. [
# 3 Change the 14 to your number (eg 21) and save it from: Z9 O6 O* v2 n. a
# 4 compilation and ready
6 R* P4 N6 O4 i4 M9 q6 j$ D
* ^: Q! m+ |, N" o
# D( I) S! K- f5 n/ [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:
/ t7 Z9 t( \1 L& j6 u4 s6 `
$ U1 Z8 ^, B, R3 Rdennisdra. r2 y. @7 H) u; e% D( V! o
.Crasy) S5 f" r7 M" I# W
©ross& H! u$ X1 {3 G! j H. s
Sedrika
/ x+ l6 u" H% e3 k3 F: i
$ g; t# M& n$ N5 p9 n6 t( Beverything 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!
8 d, H/ \1 o8 D+ s8 g/ e- h$ W
1 d% w5 I! E; n& ^7 nP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less r; l/ }8 _2 O/ A( q
8 ]8 w" [* F: N0 a2 C& } G4 e
# L, v" b& v% x i, [- D4 o6 E1 jUpdate 1:
how to turn off "Profiler" in worldserver.exe ' M) m+ a% A" I" D
( J- X- r; F" W' C4 n* p1 f5 Q t' F, z {7 o
in VersionCommon.h of Worldserver Solution
) @! L8 O1 M+ Y) M O9 p$ q/ H1 MLook for
2 c* t; x' Z% ~; q! s5 Z3 y9 R) b2 D: H- [ I3 z) R. {% S9 X
#define __PROFILE_RUN
7 l: g) a1 ^" M
: R) r8 b* ?- q( h' n1 L& i' k. bcomment it or simply
& g1 J8 Y5 Q/ F8 p
1 o e% ]8 d% ]5 R- Z4 h% L//#define __PROFILE_RUN
4 p3 h# x6 _% N( x* }3 J; ]
# b; g% T5 k v! ~* v( _
; a9 a& i* L0 _8 X- B& Ucredits 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投寄。谢谢。我添加更多的很快如果你有病加太
0 ~& h0 b, b# L- F |