|
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 ; V% i2 o% H% b
change level without Rebirth$ L0 I- c! T" q A% L8 ]+ x. | {+ S
6 x% z" x6 c) p& tNow, let us begin., _1 X3 `6 h6 R
$ S- `" g$ g, d7 hRequirements:) X7 d: `9 `% T4 f
Source7 G! K; ^8 {8 L- K3 @
Notepad / Editor& F( _* N* d, T
$ S) z9 M: L9 q: ~) \, H/ / Tips by Sedrika$ X( X& h( s Y) q
! e* Q. C6 u+ z* W: s+ x) WIt is up to you how you do it ^ ^* J0 N x% W2 o; c0 L1 t
! j5 T G( n' r$ ]3 c+ RGo into your source folder and open the definejob.h' n! y' M6 b$ @& r/ p- _9 n
Search there for:# p9 G3 Y0 }$ w0 g$ [" S! G- v
) c4 b) G+ W c: X4 R& I0 E
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå% u1 E" ]& f$ ?2 {; ^& x, _
#define MAX_LEGEND_LEVEL 1294 D" @/ L7 A: d' H: g
#define MAX_MONSTER_LEVEL 160# Q+ j6 r) M" B! M6 _. r- I
#else // 15Â÷ è÷¾î·Î ·1o§è®àå+ [: _' Y4 _4 e" O" \( H! w. y, C
#define MAX_LEGEND_LEVEL 121
! H& m6 I- W4 ~$ w0 N, A#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
8 r: r5 W# L6 h9 ?
3 t6 f# ]7 B5 O7 P% c. d0 V+ R" M/ v( z* y& w H) W' U- v; Y
Red: Player Max. Level
) V6 z' q0 p: g# ]Green: Monster Max. Level
; h# g# R6 c3 z8 }
! q7 ~. C- e+ g9 X' v; V. J- u1 BThese changes as simple as you want.% Q8 z, y' s' P0 L8 c5 V9 t9 Z
2 {; L5 Y% L9 j+ ~* t \, z: UThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
- b8 t& k6 D3 n! v3 }2 |( F' T
2 I$ P5 e4 y2 X# u Part 1 of blocking CE
6 k) A) }7 ?% F/ a6 \' H" E" t p$ q* _2 _
In this tutorial I will show you how to change the Head of Mark flyff.9 U' B2 U2 ?( t; c3 s
The current Head Mark is well known, 5E, which results as a string ('^').
8 r& {% n3 k. V; N% Z
$ N) k' E2 S w, ?8 EFor this we go to the World (Project) and looking at the Buffer.h after thistext2 g# h; w6 u& N- A5 c5 D; Z
Quote:; q' p' f5 Q8 t7 ^
# Define HEADER MARK '^' / / Normal messageheader
1 I( O2 w& N8 Q# C# Define SYSHEADERMARK '%' / / System message header
& j& Q3 O/ D5 c% T1 J1 v9 t/ G# o- s% jWhat the Sysheadmark is looking for is not even the top 5E.8 i% O5 x( V; C$ o6 e) k
Change this and it makes the CE Not work on server.
' w& H8 f4 z' ?& K$ @4 i- L* G# Z
( H+ L: d& a, c. j$ p+ D/ H) |/ g: `/ }Then Tom's anti-hack is no longer useful.
; e7 B4 I; R6 y; ?' `" n- [- e6 u; w( r9 Q- A* N; ?, n$ ~" z
LG Sedrika
Part 2 of blocking CE % P7 ~$ N/ r3 k' ^+ y
* y+ |* m T' f1 _9 `! ]5 e
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.
+ I6 N1 e4 Y G. A9 h- |What does this have an advantage?# ]& o0 o0 [9 b5 M0 _
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
9 A- [' d- K# `6 H
; V" f& s4 y( }- D
: ?) \2 n0 z- i+ ~" p, \First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
, |( O' m& j* l, Z# Z( b7 U
( o/ m$ S! z: l1 bThen search for the following content in HwOption.cpp : X& C! ^& i- g$ ^
* h! K8 t* K& d w$ w) Y% E# Q3 J2 D1 D+ l, ?) D# e s- L6 \# U
if (scan.Token == _T ("ip"))/ z/ S0 p3 Q+ o5 R
{& @! i" V( ]# R# \
scan.GetTokenEx ();8 ?" J# M/ X* i% n8 M8 h) |
strcpy (m_IPAddress scan.Token);! [' O: y" F s2 l6 @
}
* }0 y) B; R' V0 j( X; Dand turn it into this:1 E: q( ?/ W J
Quote:% S: O( P2 N4 H& g
if (scan.Token == _T ("ip"))
N0 ^5 T% v; y- y* t8 F{9 ]. `* b9 `# i a6 U+ v8 b/ P
/ / Scan.GetTokenEx ();
$ r* Y6 \/ I8 x3 j8 t- T$ ~( o/ / Strcpy (m_IPAddress, scan.Token);+ Y6 C9 ~% E& x- |5 @
}1 n8 @1 N; j0 v& D: x
And you created the solution.
+ i. v) [6 F9 n5 N6 G- ?2 v' }4 X0 k' g$ q% ]
" h3 Z. {2 ~9 n8 H3 m2 s7 S0 bThen read the Neuz not the IP from the INI anymore. even if put in it2 Y! Z. I' ? l
+ X9 m. t" d7 ? `
Max skill's 9 O! \6 E& T9 [$ ~9 U& M$ G
1 S7 G5 B' P( i( q) a
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
4 n' w1 h% U+ T! o- H0 A
; C9 Q% ^) Z5 P) b, U9 x0 {$ @With the TUT can provide the remedy it
3 F, q$ w" O* j4 G, p
4 y, i0 Q' m# w- e# 1 opens the file SkillInfluence.h
: O3 w/ Y/ ^0 P2 ]! |# 2 Search4 x* M$ S6 M- n( X
Code:
+ o/ ]9 v6 q% k2 ?0 X
! b, O# {# A, {& _! Y( |: \# Define MAX_SKILLBUFF_COUNT 14 X/ h1 Y* x6 X9 C% a5 m# P
9 c( E3 @4 [& P+ ^# 3 Change the 14 to your number (eg 21) and save it from
r# f7 T r" W# P! E! Y# 4 compilation and ready
8 P/ Q$ Q8 c T2 e. w5 W& z! j9 }/ l( r- [/ u- f
! w* Z1 K4 y( {, G! d! m5 `8 _0 g
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: [" d! r9 z' r9 M& Y3 m
7 t+ g. y8 ] E5 a4 A& h N+ vdennisdra0 y* M) b( a& [2 E% N# }9 @, v! t
.Crasy
% R. r3 u+ l7 f. p8 a6 I# Z( \©ross
, O; z0 }- M+ a$ a' E6 l& x/ ASedrika
9 o0 b3 N! [6 ~# I7 J6 R; K* i# r" Y
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! ]6 }6 y1 D7 F" h! h
# Q7 D6 M9 U) w) x
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less8 ]" l' Y+ p. T7 ^$ t- v
3 K0 w% D a; @6 d3 r+ \: U
$ Q7 L |+ |* x# L# G
Update 1: how to turn off "Profiler" in worldserver.exe
% s8 V' P" P2 E$ T6 q% |, A, R! K3 _4 n5 g
A/ X1 C* z3 S2 |; R6 g$ R
in VersionCommon.h of Worldserver Solution
0 `/ O. b2 r1 Y7 Q0 BLook for
6 z4 A9 {) d8 M. N3 O
2 D% z' h- ]- W9 D% `" v3 e6 J' A#define __PROFILE_RUN( i5 o% ^. X9 e6 [
$ C9 b, P) `/ Z" Scomment it or simply; A( f3 g. {$ i- a
7 r6 F3 Z% X; m4 Q//#define __PROFILE_RUN 8 F) {; d# }4 A4 Y" L' h1 |, q
3 N$ C) J! f. Q3 K6 I
; M$ E: k& \8 V* X3 P* p: q8 C4 } Fcredits 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投寄。谢谢。我添加更多的很快如果你有病加太
1 a( X. n. j8 P* \$ P A |