|
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 9 o4 O9 c* {5 b) \
change level without Rebirth" b/ `. q+ n6 f5 m
7 N; I1 t! Q8 Q5 l& V. L( lNow, let us begin.! @9 ~# Q6 l- \/ m# u `: a
4 H8 N# o- a% H# Y1 x; S' n6 E; O& zRequirements: I+ ^* B3 b8 G! k" b( m
Source6 P4 i4 @) D5 V0 I
Notepad / Editor j( h- P! M5 y2 Y- g
4 u3 F; v: t0 W$ I5 ?# j5 r
/ / Tips by Sedrika
e- c( A# J B, K% J7 Q6 a4 \! ^) I! S4 ]: U( W4 f `5 y
It is up to you how you do it ^ ^
" R* z( d) l5 l. k/ r9 G' _) h( b; Q( _! A" ^$ b
Go into your source folder and open the definejob.h
k$ b+ R1 u4 W3 hSearch there for:/ A3 s/ U$ e9 Y' l9 a
9 {- s# x( \: | O/ g* x
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
5 h$ I/ w) k& \/ L \#define MAX_LEGEND_LEVEL 1299 Z8 x& a) |: K( U
#define MAX_MONSTER_LEVEL 160
V1 Y/ h! v$ }#else // 15Â÷ è÷¾î·Î ·1o§è®àå
) \& [' {/ m8 i5 I+ O" i o# m#define MAX_LEGEND_LEVEL 121
$ S9 D. f8 ~ N#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
3 [+ g+ O1 O* [) c! \, a2 ~( U/ a' \
3 X- x3 V9 v, C- g5 yRed: Player Max. Level
) \7 K1 L N% Y. n' q' C! P5 nGreen: Monster Max. Level
3 c7 Q1 i$ |. s- b- H8 s8 \4 Y# M% R8 V( c) Q1 G
These changes as simple as you want.5 |# E3 G2 _( E3 Y
& z M& j# ^$ H) e* X. b4 r7 ?Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.- ], p1 X/ ?2 u5 m/ b( E0 @9 n% u
: r. c4 ~2 p; b: v2 a5 W) o' c6 | Part 1 of blocking CE
+ J. Z, U5 H: C9 W9 m" u( ]! f \7 F. J, b* `2 V5 M& v
In this tutorial I will show you how to change the Head of Mark flyff.
3 g# k3 r* g S+ \7 M( IThe current Head Mark is well known, 5E, which results as a string ('^').
, V7 m0 C" y6 H3 n6 j8 i6 a
8 E y: k0 v& Y' c1 [6 B, j: k% aFor this we go to the World (Project) and looking at the Buffer.h after thistext
0 s# A; Y% c: ?: P8 _Quote:
' k6 h$ J5 t V- v# Define HEADER MARK '^' / / Normal messageheader4 N0 Z7 G0 c4 f6 @1 s) e
# Define SYSHEADERMARK '%' / / System message header
7 l$ V! {9 q! o+ Y; K& v# ZWhat the Sysheadmark is looking for is not even the top 5E.
& R2 r+ }9 Y9 H2 }1 HChange this and it makes the CE Not work on server.: A( P1 O# B& S
8 r" `0 {3 r5 ?3 ^9 ?9 q S' GThen Tom's anti-hack is no longer useful.( Z& u! F2 l* v" T
, c4 e; ?. t8 v+ d. {LG Sedrika
Part 2 of blocking CE
8 o; U1 E$ S# y0 n
& G# a: O5 x7 L, m9 l* ?& {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.
5 m4 L" y, D- u* g$ M* A5 mWhat does this have an advantage?
7 ^+ b; \. `, ^. h, n3 N6 _" UThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself : x3 n' L% h6 D! g1 W6 c: Z9 ^
: m1 \% I# _+ l7 z
* I( M1 Q4 T) c% F2 d" F
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.. H: b4 M, v5 d, _
9 d }: g1 ^4 k! _* m$ ?% P
Then search for the following content in HwOption.cpp * N8 K# f: K: S6 r" G* j2 p
! P: P8 L3 i$ b7 E0 _+ X
) d1 C$ ^$ K5 O+ wif (scan.Token == _T ("ip"))( q+ ?+ l' q- ~6 |2 m6 G
{
5 B- X3 P& X: x" Y6 N% t' F1 M+ qscan.GetTokenEx ();% u& t; a8 \6 k! j7 i3 G8 W
strcpy (m_IPAddress scan.Token);! z( _9 ]! g5 I" R4 m8 K
}
. |, A) `- g4 l/ E* X- I$ _) uand turn it into this:
; z' ^; b9 W% V/ |7 I4 IQuote:
7 {6 C6 I' y# S, @. B( iif (scan.Token == _T ("ip"))+ C" M- f7 f; ~* R4 f w+ f
{) {/ {# ]- M1 o( m1 Z9 A5 x
/ / Scan.GetTokenEx ();
" d1 h' l/ }8 i0 W/ C1 k/ / Strcpy (m_IPAddress, scan.Token);4 g5 E, V5 d9 B( l; `
}
& G2 j1 e+ ~! |And you created the solution.3 c/ l) e1 n W2 R" h X
! H. F f, |& g7 W% h3 f
+ b) O$ H4 L! {, }4 l& \2 MThen read the Neuz not the IP from the INI anymore. even if put in it
) C2 _( b: ~; E% W# G
# D( u. X7 r/ z$ ^) W
Max skill's 6 k' p; U7 X6 B, I; r
: u: X# E; f, n& L% Q
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 # n# S2 @+ K% t
0 M+ i- S+ J: F! C, v* R: g. k/ ~
With the TUT can provide the remedy it/ o2 V0 i1 F6 B
5 S' h r( x4 M- \! ]0 @7 @+ T# 1 opens the file SkillInfluence.h
+ U2 O2 R2 Q b6 o! e# 2 Search
4 F, ^" g' V* U4 F6 O! P, J# L1 fCode:0 _1 ]( A1 [4 l: Q
" s* V5 G. n$ C* Q$ j& E
# Define MAX_SKILLBUFF_COUNT 14: X) \7 p, s: z. x& q
. N! F- ^& Q7 f/ m5 D
# 3 Change the 14 to your number (eg 21) and save it from
3 A. A& z# `4 d, N# 4 compilation and ready& o9 U' M6 [ F: D4 F$ Y1 o D
4 P' p5 e: L6 V5 B
+ D1 y! p9 [! {2 U8 \9 D$ g2 hI 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:
/ r/ f5 `4 D. A; u7 Y/ f' A5 q7 V8 z! Q/ |# R* n+ q3 b
dennisdra3 S. _" v+ @: s& D4 D! y* f
.Crasy- o4 d6 M( E! x3 T) X
©ross
~) \( A, F* vSedrika& }. X+ f' w T) D7 c% K7 ?+ C
; |4 V- U5 e) j# ^7 m* 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!
1 X, ^4 `) u$ K1 ~+ n7 l6 z+ m+ G8 s: ^9 Y) B
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
/ K2 W' L/ q" C9 Z( z1 u Z, [( e- F# E
6 d( a' Y, O1 w4 ]
Update 1: how to turn off "Profiler" in worldserver.exe
" v$ L. v& C( _+ O9 P, o
% n# [1 x& P2 r! y5 a6 h, V
$ P: v* o8 ^7 D0 qin VersionCommon.h of Worldserver Solution& E3 _& w% v$ r/ L7 h9 q: ?
Look for
5 Z. a; k9 j' C) I, v, Z
1 l% Z4 M$ m5 U1 r, _' x#define __PROFILE_RUN8 v0 |# o- S( y, y
7 h0 M4 t; Q% X% s
comment it or simply. o& c& @. C* P D ^! _
, ?- Y- w0 v' t4 }1 N0 k//#define __PROFILE_RUN
, Q* G0 Y' A0 Y3 H |0 V9 W6 W/ e- `6 C+ }: s9 y
# O Y- Z2 C& ]0 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投寄。谢谢。我添加更多的很快如果你有病加太
: ?7 P/ C. `0 W! ~; O |