|
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
h/ h; \! V+ O. o- zchange level without Rebirth Q: b8 k6 U- A; Y: r. e
# O/ |3 ^7 w4 }+ g& `Now, let us begin.% x+ o0 G6 k D( K9 u* s. s* T
$ z2 }7 v4 f( E# V+ V0 y
Requirements:
# I/ E3 \/ ~% J6 i# B2 i! z+ t9 rSource7 K: j5 p0 |) s7 ~+ C0 T, k# Z! B
Notepad / Editor- B1 C1 K+ O. n& I$ ]3 f$ n0 l
h+ \' C* I7 }6 y4 f/ / Tips by Sedrika! G3 c' O4 |9 t
+ `$ v6 W4 ?& `2 x& v$ C e; c$ \It is up to you how you do it ^ ^
* W# a4 z6 N% X$ P% }: X. I. Y) r2 _, u; e1 R
Go into your source folder and open the definejob.h
1 w. m+ p: R+ l" v) aSearch there for:
" x W2 g! W8 I: F: d: B
B* I& n3 W! }6 t! o% D# O#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
|( f9 V0 s1 |1 D1 Y8 c! @7 z#define MAX_LEGEND_LEVEL 129- _# ^: e1 r x
#define MAX_MONSTER_LEVEL 160
# N. s' u- z/ J8 |5 ^. Y( P#else // 15Â÷ è÷¾î·Î ·1o§è®àå
/ G2 g" K# F# X1 f0 Q7 m/ e#define MAX_LEGEND_LEVEL 121- S# F M U' T5 m1 O" j" n" \
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
2 @& K7 |' V3 O
1 D( ~* ]1 P5 k0 z% y
* K. r- K; {$ T( @7 C( WRed: Player Max. Level
" C$ r/ u D7 H" i5 h! [5 EGreen: Monster Max. Level
: P; s2 _9 O; v7 L
: C% e- ^6 R# K* D8 M& aThese changes as simple as you want.- _* E+ ]( t( a
, r }0 e6 K& |4 s4 L+ m
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
5 _7 g5 v* k6 A0 l8 x- U6 Y: ]7 }" m3 [8 F' Y \' D
Part 1 of blocking CE % C9 J0 Y" ?9 O0 |9 G+ o% w# T" n
) N. L& \' H; C- h; Z( A- ]In this tutorial I will show you how to change the Head of Mark flyff.
" D; G( ^4 N$ Q6 A5 u% A s; [The current Head Mark is well known, 5E, which results as a string ('^').1 ]- @0 [7 k7 r0 e4 L9 E; z( Q. K
8 a/ c4 [1 L. f! D( wFor this we go to the World (Project) and looking at the Buffer.h after thistext
* o8 Y! H- `3 {& g# t$ m% FQuote:4 u' Z2 o0 K9 V# r) |/ g) c1 d" d
# Define HEADER MARK '^' / / Normal messageheader$ \0 C% J2 C8 w3 [, i+ L4 z
# Define SYSHEADERMARK '%' / / System message header
' `7 h) }, ]6 AWhat the Sysheadmark is looking for is not even the top 5E.
0 k# E: j; w- G' CChange this and it makes the CE Not work on server.* B4 B1 ~5 _7 `3 s* Q$ E
9 ^# j+ }. e$ V% } u1 sThen Tom's anti-hack is no longer useful.
8 [* Z3 W) `1 e& L7 U5 g9 w3 }, o8 c6 c
LG Sedrika Part 2 of blocking CE R: G% S: ?' G
* P+ `; p4 _5 g, m) b+ aIn 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.
. p% n8 S4 `; [# A( p2 F# ]% @What does this have an advantage?* F' J9 ]4 q( k2 o/ J7 J/ U
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 4 |2 M4 O. [8 u; y0 {
* r7 e7 X# ?+ L. F
8 O7 k* H1 g6 j n T6 w; UFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
3 }- w& v, k2 h* H% g$ E# Q/ w
! b0 [7 M7 J5 n* r7 x' T1 j% sThen search for the following content in HwOption.cpp ( ]+ ]8 ]1 k: S2 G4 d
$ x) d. s5 ?, W4 G0 }+ Z0 E8 L
( I9 Y/ t# k8 g3 ^, v& ~
if (scan.Token == _T ("ip")). E/ W- n1 Z/ {: h7 S3 c) i4 F7 m
{2 T2 \2 w7 L) t6 X6 e
scan.GetTokenEx ();
- c! A7 D1 m: B/ estrcpy (m_IPAddress scan.Token);# `* K, I |3 S! {! l. J
}9 A/ F J" ?% h* D6 _: h/ F
and turn it into this:
1 W, j t y& sQuote:8 r6 Q3 ?. [8 O h# N
if (scan.Token == _T ("ip")): j; J& C- i$ n5 E
{
* c3 g6 b' |1 B Y& ]- ^; ~/ / Scan.GetTokenEx ();
h g" A, t* R: g' _/ / Strcpy (m_IPAddress, scan.Token);
, B# {9 O m3 I; j T}
& M, `0 E" T* @+ z3 RAnd you created the solution.2 B( Y, P, q- H5 {& ?1 V
0 R) o/ B) q' `" }' I, b! p9 ^
+ w4 ]5 p* n" A* t
Then read the Neuz not the IP from the INI anymore. even if put in it
$ L8 `& ]& @& k, z V s! n% X5 q: S$ x9 I: x$ T
Max skill's 2 V& l* w! S( ?8 A" G
. H* G0 V% r+ 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 $ @7 q0 s: W; ?3 t. ~1 ~6 V$ M6 G/ ?
" r) r, l& b% n4 e- c
With the TUT can provide the remedy it0 z! q% M* [% ?! Z
$ r% w3 f2 w. y& i- |1 i, o# 1 opens the file SkillInfluence.h) Z+ ]9 b( ^" h* ]
# 2 Search
* ^- _2 [! g& k) }9 ~Code:3 l. l! t( ~* F0 W- A
# O4 W" l7 d9 A4 ?/ p/ k0 L8 g# Define MAX_SKILLBUFF_COUNT 14
3 L2 ]4 m5 A8 H$ ^$ C5 E4 y# j
6 B6 A1 D! E) u8 R# r7 D5 k7 @# 3 Change the 14 to your number (eg 21) and save it from
: T# I) B% ]' L' D# 4 compilation and ready8 m* P4 ~* a/ V- `4 L
5 y, a Z6 q4 |; A, |, V
6 K, N# {3 h0 r+ ~4 nI 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:
$ K. w. d% J y# k2 v* E( V/ t' z6 k7 S
dennisdra) k( P& I: W* o* ?/ {" }+ g
.Crasy7 k- ~0 z: P }) B# H2 X- ?
©ross
' _ ~3 M6 ]* e- ]: {5 vSedrika% k7 u- l6 T3 J: ?
0 }/ B$ Y- z6 [4 t9 x+ s
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! 8 e% k2 z- a; Q+ t( `% E
/ n) l, ~# h( c% |* ]6 YP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less+ O4 j& s& ]0 t3 N) s b
: G4 M! \0 o6 m3 H1 G! [
) e. P. ?1 d! {Update 1: how to turn off "Profiler" in worldserver.exe : Y9 w. K% { |* B) N
1 U y$ r5 [8 W" g0 m% }- N2 ?
q ^& w% A" c! R& F3 T
in VersionCommon.h of Worldserver Solution
* d* A2 W1 a) P- D( XLook for
, j' \( S; c( r, B6 g6 ~ @. f% c" w' W, `7 z! L( b' B
#define __PROFILE_RUN9 Q' b. o G* [4 \
8 n9 j7 d' P7 t9 Q8 s5 Y" p$ g
comment it or simply
& y: ]# d* f& i: l
! `8 d: T- G& A# w//#define __PROFILE_RUN
6 o& v3 \$ J- r; m( U2 G/ [
1 m% J/ `: @4 u6 \" x% l8 @) v- d0 x
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投寄。谢谢。我添加更多的很快如果你有病加太
* S9 x- T* v$ Q. F3 P |