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
& a" H6 y. U/ H7 Gchange level without Rebirth D5 `5 k; F& I( Z1 L* r
- T" V; u6 ` {3 b$ d4 h$ gNow, let us begin.
$ p! J7 `) s' s; v* T" n' l6 V3 S& Y& L# n8 L9 G- d6 e
Requirements:
! V, X0 w3 T c! _0 xSource
/ e1 l. h, ] P! a# GNotepad / Editor/ q0 M6 T9 i$ r0 ^4 Y3 @
! ?) G' ?' m" O5 n* S- E' ?: R
/ / Tips by Sedrika' f7 {$ I! Y9 _+ K
$ |- V n4 s! a# C5 |
It is up to you how you do it ^ ^- [! d+ m4 L' e. V1 f
& y$ l% s) L* A) j
Go into your source folder and open the definejob.h% W" ?; z3 ^" l/ t) j3 }# v, Y9 z
Search there for:
0 j0 z/ }1 E" c
, m" z. {8 q0 B( q#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
9 C+ G2 G5 U5 ?. x#define MAX_LEGEND_LEVEL 129
; P; Y* y% O5 C, Z& }# w8 r G/ S: P#define MAX_MONSTER_LEVEL 160, m8 y* @ t/ F3 k/ K
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
* a% y; W* V% i1 c" r. u2 a#define MAX_LEGEND_LEVEL 121, k9 E+ m* O! d# d
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå 0 s3 H/ U% I m& b! t4 K
) O/ i6 q! |% J) c, B5 @; {
* j0 y) {1 R/ C4 r
Red: Player Max. Level
?( t( y; i5 }7 p) a0 rGreen: Monster Max. Level2 P$ [# N0 }; v8 u! O8 T
" c5 t" O% ^7 ~# eThese changes as simple as you want.& w0 D/ ]8 | b: H2 T3 W" T
4 K% K) t; v2 e
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.0 B6 m/ ?( j& [: o
- w7 {0 P% \& ^9 k X0 D- D
Part 1 of blocking CE 3 D1 H2 m" Q: U* }. p0 O
4 S/ x9 A4 J4 t% E5 ^/ ?In this tutorial I will show you how to change the Head of Mark flyff.% \% }. N2 f& x' o1 ]" d
The current Head Mark is well known, 5E, which results as a string ('^').2 [0 R9 f; z6 N
+ ]& y: `3 }+ ~3 d, q7 b# `For this we go to the World (Project) and looking at the Buffer.h after thistext" V0 b* r1 K2 J
Quote:
1 }" V: ^8 T7 O( \& ]. R" A& k2 i# Define HEADER MARK '^' / / Normal messageheader! x; _. b& f4 @' D& y2 g5 I
# Define SYSHEADERMARK '%' / / System message header
9 G1 t% l6 N# \# ~! Q* GWhat the Sysheadmark is looking for is not even the top 5E.
" j/ F6 [7 C- |" w1 mChange this and it makes the CE Not work on server.1 Z4 o- Z3 V4 `& B
- W: B; i# G: o( k5 |
Then Tom's anti-hack is no longer useful.
$ |9 V4 m4 R/ g6 S% v) ]6 b% D1 @: Q) B" w( j
LG Sedrika Part 2 of blocking CE H2 s8 V+ r/ W+ P
0 J4 N# q Z- z \/ u( cIn 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. 3 _, q5 l$ \" i; b
What does this have an advantage?2 L2 q6 a9 z# n7 u, b
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself ( ~0 a j1 g. |
0 Q; ?0 E( c4 L- a
$ P5 m+ i; t3 J( F3 Q% z: }2 l# lFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
5 n# X$ z* Z! Y+ a S5 a: [' \/ r3 i5 @: U6 H/ ]. ?
Then search for the following content in HwOption.cpp 6 J6 u2 j0 _ X" y3 A
: `- ?& q) n9 H f- D' b0 V4 E1 ~
8 w3 J0 H7 |! i0 U" f) g4 B" @# hif (scan.Token == _T ("ip"))5 i, e+ }) v* u3 b
{' m% |, ~7 F; V; y; _% V
scan.GetTokenEx ();
6 `( S' _/ s% z( W a: X& Tstrcpy (m_IPAddress scan.Token);) ?" d7 j d i. N: v7 _
}
, R, H' I$ j( i/ V3 K$ l& `and turn it into this:% I2 d/ |9 a$ T- u7 W: M- Y- C
Quote:
4 J: n" g+ U' q( d% U1 Sif (scan.Token == _T ("ip"))
; L0 j* q' _; u' z ^5 E# D: _{
1 t: b% r$ D1 T3 ?6 e# F Y/ / Scan.GetTokenEx ();+ ^. y/ c# V9 G* e ?. c
/ / Strcpy (m_IPAddress, scan.Token);
& F& Y. K+ N* c3 }5 K# n) @( |( @. Z( d}0 M3 m* J3 s" Z0 C) z6 i
And you created the solution.' ~* o7 p! }% f* x- W: X
0 {& c7 X# s, N/ E4 x! @& d3 Z! s- o/ F. [/ f- `) T* H! k4 A/ z
Then read the Neuz not the IP from the INI anymore. even if put in it" K! x1 g; a/ l+ y
+ ]" ?' J% X1 C
Max skill's ' q+ Y) \8 j! o, C8 C6 i8 ?. o
2 o3 k8 y* ?) ]4 @; N. W8 ~# Q# P
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
: U. Y8 z* o O% f1 V
9 s2 m* H4 `1 Z- h$ q3 tWith the TUT can provide the remedy it# ~0 `5 K0 Y" k7 r: b+ Q! ~$ L
# l+ `/ n! _( {: m0 K6 M$ h6 a# 1 opens the file SkillInfluence.h
$ t* s* M: Y: L# 2 Search. }% `8 u( p& X- c2 V- u6 @) ]
Code:- u/ E& |9 _; M' d M _
. J% i2 p% F6 S
# Define MAX_SKILLBUFF_COUNT 14% b1 _) F& }# Y
# _1 L4 F! q; q+ ~# 3 Change the 14 to your number (eg 21) and save it from
`: ^& N d5 w8 N3 h# 4 compilation and ready
C0 k4 `! i/ l' B' Q9 z
. {* s$ W4 U) P: z( s1 Z" Y; Q" g# R/ D
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:
: X& z" Q/ M9 P+ E* n1 N
4 j2 S4 b3 k9 E$ [. vdennisdra6 D5 f: Q7 M' M& `0 p8 u0 @5 O. o
.Crasy
6 x" q2 r0 K/ M" d$ d5 i' v$ c% t©ross# b X- P" u/ Z0 |1 f
Sedrika
0 @- P1 f2 g! u. N3 z5 h$ R8 `3 n8 f" P" ?
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!
7 E$ h8 A# U/ a, k/ g
# e5 l$ Z8 H7 c- ?/ BP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
3 b! h, i$ O! }! k2 v" o/ Z9 G9 P5 ]6 Q6 A# d
7 Z3 G0 f. ]+ E- N% i3 AUpdate 1: how to turn off "Profiler" in worldserver.exe
! j8 W! M1 e1 J' g' f# s( l
) ]/ `' C0 n1 z! s5 g" E* K" i: Q* G. l" ?) Z" }: u" Y
in VersionCommon.h of Worldserver Solution
; I' t* g3 `, E! z' U8 NLook for6 U9 ]7 S( N5 E" N$ u1 K/ r
& \2 i. \% @1 m. {# G4 z
#define __PROFILE_RUN4 g5 D1 `' H, O, f
8 P/ T! V- Q# y q
comment it or simply
7 u* F6 F. T- S: ~# |4 l& J3 Q( [: {4 ^- B" i: @
//#define __PROFILE_RUN
8 h8 ~2 O, Z/ |: \5 @0 d
- L2 t$ r$ r+ R, A( g2 u. q9 X) X. z7 i0 i3 }2 O, ]
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投寄。谢谢。我添加更多的很快如果你有病加太 P0 _) j; ] C) z. B, E3 c; C p
|