|
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 ; S2 [- v& G% r3 j4 }# t
change level without Rebirth1 K% X7 |6 Z5 y& Q9 H* X" M
. \7 E' m3 N; R5 Q9 X( F( [8 L' CNow, let us begin.3 T/ b: U4 _ ^5 P( C
9 {% a; P# K0 J6 `( L2 @
Requirements:
9 ]( o6 q0 k c" ~9 H. ESource
7 L# h: I" p" k$ a7 \, t1 RNotepad / Editor
5 ^8 O9 D5 ^3 d9 i- I y& k3 X& p2 E) ]& r- A8 _
/ / Tips by Sedrika: i( N: q. A1 u
2 S2 l. ~ r2 V2 SIt is up to you how you do it ^ ^
$ u, Y3 q! V: O3 W4 m7 | P
& [& g7 C7 q0 V( x, q1 R' b. _Go into your source folder and open the definejob.h
1 [* |; Y" s0 q; z: HSearch there for:
% S7 g" b! z/ Y: Z- a
G! v/ D" l2 o9 R( L#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
" A2 n; w1 ~$ ]! v* ?2 A( T( _#define MAX_LEGEND_LEVEL 1293 f, L# v; A+ z j: Y
#define MAX_MONSTER_LEVEL 160
+ |9 M, E, _4 X8 \% I' N" i#else // 15Â÷ è÷¾î·Î ·1o§è®àå
% K) B! Q Y+ g5 ] A0 a#define MAX_LEGEND_LEVEL 121' c% y' l5 j" ?% `
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå 3 C0 g0 h( B/ z$ e4 ]( h3 ]
# q! G7 ?* Z8 J% [7 o& ?9 j9 f" y
* \+ j; g* u* X4 z" ~Red: Player Max. Level
6 c6 V1 i: C- O5 r4 k. {) qGreen: Monster Max. Level
: f w2 n: T0 F% R" H* K7 A0 ~- {8 r) X3 D: p2 `2 \
These changes as simple as you want.. `4 M3 l! `% M$ T7 I
. h- T, @3 _( E! h
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.# J/ \# V1 T9 b' b" D% |" H, A
5 p: Y$ ?) f+ d1 A
Part 1 of blocking CE
: \" J3 K: L9 A3 } Q6 _" W) G5 c3 O9 i; `; V8 y
In this tutorial I will show you how to change the Head of Mark flyff.
& ?# x ?! }7 SThe current Head Mark is well known, 5E, which results as a string ('^').
% k& M, f$ }/ ^! A9 V7 I: \6 }3 \" Y" K3 w
For this we go to the World (Project) and looking at the Buffer.h after thistext: m# ]( ~ K7 Y4 [. J+ P3 ?
Quote:0 H. ~% Y3 K- T1 Y6 P& N8 g
# Define HEADER MARK '^' / / Normal messageheader
3 G* N5 P( k0 ~& N, K4 C9 T# Define SYSHEADERMARK '%' / / System message header
H. _ U! U" z/ ^$ FWhat the Sysheadmark is looking for is not even the top 5E.3 |% _6 J+ ]% L2 J7 Y! i
Change this and it makes the CE Not work on server.0 [" K B4 \+ k
% e( [9 [. U+ d; R" D; f
Then Tom's anti-hack is no longer useful.
* @3 N: ^. q: Q; |! o R& g8 h+ p8 @: K4 U# Z. [+ k5 c6 T
LG Sedrika
Part 2 of blocking CE
, T( v0 G+ Z( l6 j8 c% ?2 ]( ^9 C+ C* M) N" K
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.
# K; @( u9 I# u) D' F) q7 _( VWhat does this have an advantage?' y' }: j5 `) ?' D* R
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself , W$ N. V4 H6 Q
Y. ]( y8 D, R5 c9 ~5 w0 P
8 r7 J, c) L: d4 d, z/ R* Z' u4 l% yFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
! O7 G# d j/ L1 @# Z( Y" x4 y
; V, i- n' ^4 tThen search for the following content in HwOption.cpp : L9 O5 {$ k" Z+ z: Y
6 c# G* W2 I0 D8 t& N* `
! S1 n& D: @) q( ]0 {
if (scan.Token == _T ("ip")): a" e6 ? z3 O; J6 a
{
^; O# `" i6 x Y' a- dscan.GetTokenEx ();$ A" A7 T$ ^4 \* R. K- D5 u3 h. T
strcpy (m_IPAddress scan.Token);: o) @0 I1 g& m: Z: {
}/ j+ k8 l7 c2 V1 ]/ H9 J8 Y+ ~
and turn it into this:
& e8 I3 y3 M" ^- ^& q! O) U; dQuote:/ N' l9 K, Q$ `
if (scan.Token == _T ("ip"))7 k+ b% A4 j/ N+ v
{
* Q ~- j& L) {1 x: `# K/ / Scan.GetTokenEx ();! L1 T( w6 `( B _* O
/ / Strcpy (m_IPAddress, scan.Token);
5 G1 D/ j7 r- F9 [( N4 `0 l}7 w7 _% P' M) k% _; ^
And you created the solution.
. K: m l g5 Y0 J& q
2 { X5 i& s* ?% x0 S- S2 Q, f3 B4 t& o7 M* e; A
Then read the Neuz not the IP from the INI anymore. even if put in it
2 ]% V# G8 n- I* C, ^9 S
% J$ [# _, H8 x4 W1 t1 Y- F
Max skill's
! F8 p( e0 {; k5 M' P
; X+ I2 J1 @7 m# e& E, Y1 B- OAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc
( s$ `3 I7 ~- W7 k
) \2 f& P; U* p) G+ G2 QWith the TUT can provide the remedy it
: N$ @& k `0 _' A
$ x: S6 c* V; p# 1 opens the file SkillInfluence.h
. o6 T4 _. @$ }# 2 Search
5 Z6 f7 ~, P3 pCode:
7 H! I x. X, w8 V3 B
1 s$ C" C2 z4 X% a9 U/ S" L; K2 J# Define MAX_SKILLBUFF_COUNT 14- m4 `2 a, c/ N" b+ ]
5 |# e6 D# [/ Y/ E2 b" A
# 3 Change the 14 to your number (eg 21) and save it from% E5 k8 i& |* W) \: a- n u
# 4 compilation and ready& A4 h# Y5 m3 n* b2 H" E5 q
. a4 C1 }2 i. r
: d' x, Q' u* cI 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:) S. c* t7 [8 |( f
) C5 X$ O4 C3 f5 n2 g1 T2 idennisdra
2 |$ t) w% a& {) B$ z: p: T( _.Crasy+ X" L" C+ z+ k) U+ B* z
©ross0 n1 s2 ^2 K; R$ t8 H
Sedrika, o' ?* A# n# A7 B* C) Z; G
( [+ n/ w( n ]# [# D9 X4 keverything 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!
% p4 ^* E/ q9 A6 q& d4 e. f" g: p$ F; r6 S. H- G) V
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less, x; J/ ?) T& ]( I
" B x2 ?4 z- O. V% E2 W. h
; s: T/ W% M3 ?& _Update 1:
how to turn off "Profiler" in worldserver.exe 6 y# ~6 X$ Q0 d2 ~+ l
5 ~0 F, |0 D# Q. e# Q
0 b. `1 w. p2 P$ T5 l& |- I
in VersionCommon.h of Worldserver Solution
5 M1 K" E5 {# S9 n$ v5 m h8 D5 jLook for
. L5 x& N- @% a# y
" O6 A7 @) i) ~#define __PROFILE_RUN
7 C% P; W$ p# b4 m; K6 ?7 X q1 I, T
3 w+ a" z1 h' E9 }1 ncomment it or simply
3 k# f/ ^4 m( W; ]' Z& i) a& j' H r( P3 R: S
//#define __PROFILE_RUN 6 `" w, E+ l; x* U8 ]5 j/ H
' M4 W8 D2 \1 U3 ?) p, H }2 \
! C. Z# T3 h: z0 s3 e# h* @& ccredits 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投寄。谢谢。我添加更多的很快如果你有病加太 7 F x: X( c6 n) ?' p
|