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 R) l% Z# M# I' [0 I' _" C4 Qchange level without Rebirth+ } v% x4 k( D8 E' ]
# t( Y/ w& M: L, K. T6 sNow, let us begin.7 @5 D$ j& _; O7 N/ @. |- g2 Q( B
. @! }6 }0 x" {
Requirements:2 T1 ~) O, f C5 r- x$ c$ R
Source1 _3 T4 d* I8 b+ s
Notepad / Editor
; G6 G* ~# z7 n& V) V" K% J# z- |) c$ D( `2 r
/ / Tips by Sedrika
+ m+ [8 I. M" b3 C4 j2 e' T( w( }8 B1 o8 Z
It is up to you how you do it ^ ^4 X" R8 x( x/ b7 e
: X; j* ~+ g4 H1 y
Go into your source folder and open the definejob.h7 k( D5 V, l1 ?/ {9 x+ o
Search there for:
/ v H' P) T( Q- W4 o u
' b2 g) ^: i4 P9 c#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
3 Z; G; A' q( T6 _3 Y#define MAX_LEGEND_LEVEL 129
4 o. c- o& D" K: C- Z#define MAX_MONSTER_LEVEL 160
9 _8 q; g- n- q$ I1 Z9 A#else // 15Â÷ è÷¾î·Î ·1o§è®àå
3 o: P- }6 }/ M. s6 Y8 n9 u, j6 \; D# {#define MAX_LEGEND_LEVEL 121, h8 j$ o4 N" q/ e
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå ( J3 o5 D+ a# J1 M5 K' T6 F* ]
4 A: r; P$ o9 X4 L! N% _
. s6 f) b3 n8 g7 N# m
Red: Player Max. Level2 j8 g$ N0 T$ a& X0 F* L! q2 }& m
Green: Monster Max. Level
/ L$ w6 k4 m- z. W" S& {8 }4 @% J4 k9 u
These changes as simple as you want.( ^0 I: q7 Q; F4 D8 ]; Z
9 `, X: g$ y! kThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.9 H1 H' Q: o: X8 S
U$ m. q* W2 T! k
Part 1 of blocking CE
' |2 u7 P) \: g# @; b' _+ Q7 ~
! s: {# \# A, x( N m3 `' z# cIn this tutorial I will show you how to change the Head of Mark flyff.
7 c% n& m4 a jThe current Head Mark is well known, 5E, which results as a string ('^').7 \7 x! F7 r8 ^* ^
" I0 P! L; C [* JFor this we go to the World (Project) and looking at the Buffer.h after thistext" g8 R) U( _' s& P, {# r7 {
Quote:1 o* K" g4 t( l7 b# Q" c
# Define HEADER MARK '^' / / Normal messageheader
) a# c8 [& I$ A( }0 N9 Z3 g# Define SYSHEADERMARK '%' / / System message header0 X. K8 w$ F. y/ E0 B3 X' ^$ u$ O: ?; A
What the Sysheadmark is looking for is not even the top 5E.0 b+ j- m9 ?( G+ U9 N
Change this and it makes the CE Not work on server.
2 m+ u, {; e6 y$ \& A
B1 F5 R0 \! MThen Tom's anti-hack is no longer useful.& t/ ~7 i0 }" z4 N* P
) M0 N' v% O; [0 a, c2 e* m2 JLG Sedrika
Part 2 of blocking CE
* p) s: `+ c P4 F) X x2 Y' i
- f) m' P% T: i2 k( u1 v. FIn 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.
R: y1 E. f2 g' G- G6 {What does this have an advantage?
, t u0 L8 a. R" X& X4 R8 U" UThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself # p2 h9 ]5 T; C1 s2 O! k, U
) W6 R& R- C& c
! n+ D1 g! F/ _* t5 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.8 a; [, }. c9 K, P& F, p
' h) K! x9 S8 q6 X, Z" v8 V0 x8 r }Then search for the following content in HwOption.cpp 0 q! J# Y8 |' Y. q. Z7 u2 |6 ^
( n* ^, G C S1 ?# i* ]+ W2 K
* m; J- m3 B5 Z, @
if (scan.Token == _T ("ip"))
E" i" t8 Z3 ?% o{
7 A5 c. T$ |8 n6 \! u# Y9 jscan.GetTokenEx ();
3 a4 S+ |. M+ F1 A. p3 c8 ?/ y/ bstrcpy (m_IPAddress scan.Token);
. r1 W8 S5 [5 _0 H. D}6 R9 d4 [! d- H5 Z# j/ ~
and turn it into this:" _' E b! A2 l1 l' m2 f- g! h
Quote:7 i+ _4 }) X* I, A' B
if (scan.Token == _T ("ip"))! L' O) K( M) O3 s* m5 B# }3 |8 b; Z$ f
{+ `& A4 t/ X; X- q" ], N% J4 `
/ / Scan.GetTokenEx ();
' |& q3 A# b7 L. F' }, }4 h9 b/ / Strcpy (m_IPAddress, scan.Token); H1 t7 ~6 E9 f2 `3 w$ ]
}* y; [2 A- g u* g x6 n2 @: ~
And you created the solution.
7 H9 u3 ^% E: P9 J$ t/ D
/ I7 ?( y- j) w& J7 I/ Z2 Z& E
7 F2 I) w9 t; bThen read the Neuz not the IP from the INI anymore. even if put in it
/ g& X% T4 z2 x: T. `4 A$ Q' z `6 R$ u7 ~
Max skill's 3 C' j' c d8 ^7 ~! j
# S$ [& N# w1 c0 JAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc ! v0 M; W; U* n3 l/ Z
2 a/ H0 n7 n9 u# E: |
With the TUT can provide the remedy it
4 ]+ y+ _3 d" F: X% A9 V: e
; k7 e4 D4 _1 T+ S+ Y! m# W# d3 T# 1 opens the file SkillInfluence.h
# d$ `- L3 S. D. j# 2 Search
# f9 E* s4 f' r' cCode:
3 @/ w; u. ^$ Y# j# `! u, a' t7 `' z3 q; C0 m b
# Define MAX_SKILLBUFF_COUNT 14 N3 `) X5 k5 M: P$ Y& g4 N
U' S/ A6 m) k4 X6 g3 U2 i# 3 Change the 14 to your number (eg 21) and save it from
0 N$ w) W- ^( n# 4 compilation and ready
! p2 T) h+ n( m8 b! d3 U5 h8 ]1 b. t& {$ c2 {' V: t. k% w: l
3 g/ `* B( G# z z! A: v
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:5 |) I2 l) t+ _8 d0 u) U* b
# v/ c! V- p: G6 c- X6 P
dennisdra" E' u6 ^' l( ~# C
.Crasy
$ Y* O5 @9 b% _& c- m©ross; r3 _* _) g8 Z, e# b2 F
Sedrika
9 K5 b! }" r0 G8 D7 q2 E7 e& @- Z1 s) W, }) Q8 `6 o% h O! \1 Y% e
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! . g y" m( C+ A3 }' Z: H' O
' X: S' T, v, I: C3 A& g2 zP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less) t/ c; ]$ b7 D: v
. N0 S5 i+ z" ^/ P! J8 F+ q
0 ]* @" d2 ~9 B! y* b: P# x, iUpdate 1: how to turn off "Profiler" in worldserver.exe 8 A1 [: Z, [' z5 F
( J; U9 ]: \9 F/ s: z( E% ?, ?
. ]* c" _3 X4 H
in VersionCommon.h of Worldserver Solution }; O% P% S2 ~7 c& }8 q
Look for
" H4 l1 D8 u, ~( l1 w0 Y9 m" W: f9 W" |5 E% h8 m
#define __PROFILE_RUN' w1 l3 i/ F/ Z. Q) E
5 s: \& ?& Z, L" r2 e! H' [# f
comment it or simply1 T, v% ~) ]% v. [8 B: V O+ Q
& ~7 C5 w& K- Y* {5 w
//#define __PROFILE_RUN
( }' @( M1 k5 K5 [
3 G2 H! m" c Q j6 y! `/ P8 _ I* H( ]# 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投寄。谢谢。我添加更多的很快如果你有病加太
2 [, B$ P! |" t6 B* h$ K _ |