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 / ]/ P# y/ M; ^- T3 ?: D3 Q" k
change level without Rebirth: K' Z h. Y& c! R
8 S6 H! o5 C; ^; n4 y' jNow, let us begin.
: A ?! V' e9 o3 D
9 U/ ^6 W" A! P k! URequirements:
; I# E+ [9 V$ C" m7 JSource
4 J+ G! Q) X: P4 ONotepad / Editor
0 r9 \. d! {- V" s- [* g$ k3 M9 e9 f+ j$ Q
/ / Tips by Sedrika
& C8 Y, q0 a/ t1 {! t
/ l( S0 ?0 k! H- p$ X MIt is up to you how you do it ^ ^( h, D ^! C" {: q
3 b; c# h1 |5 H6 `; e0 E" o: BGo into your source folder and open the definejob.h
0 h$ `; y; Z3 d2 z: `Search there for:
! {* r: ?: E C$ K7 s6 \% x) j } C/ W. k0 F
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå3 {4 I' \0 r* n1 v4 u
#define MAX_LEGEND_LEVEL 1299 U( x* q1 V+ d
#define MAX_MONSTER_LEVEL 1607 |: }1 `1 m8 e. z- Z* ^: i. f
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
4 s0 K$ I# ~7 Y! w/ O% X#define MAX_LEGEND_LEVEL 121+ S7 }: L- C% @, V! y& x. x: x; m
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå $ A; r t7 j' ?% g3 Z
5 W' ^; V" ]6 d9 T* a& ~, W4 \* A$ I8 {
1 S; t8 O' Q1 u. E9 Q
Red: Player Max. Level0 j9 F2 r/ M2 n/ A$ x
Green: Monster Max. Level
, v' a! [" i7 Z" [! { W) K6 n0 ? ^ y6 D M: \
These changes as simple as you want.: I8 s( ]) Y$ i- m$ G
4 @$ a" ?" V( A, @: K* UThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
/ G0 Z5 G/ O% v/ d7 a4 J6 v: d1 W0 d5 S, a. D, R3 O# C% A
Part 1 of blocking CE
& h! K! S! W( ^& D9 Q4 e$ M& \8 W# @. P! D2 H$ i- S- a" F+ e
In this tutorial I will show you how to change the Head of Mark flyff.9 X s' e) I' G& W
The current Head Mark is well known, 5E, which results as a string ('^').0 ^3 Q, B5 N# s* o1 n1 u0 K8 M
+ N9 q) `& }2 B$ R, h3 z- ]For this we go to the World (Project) and looking at the Buffer.h after thistext
- I! Y: a, K+ S% z0 a KQuote:* M. v' K' w' `" e( |. P
# Define HEADER MARK '^' / / Normal messageheader9 O* p! W$ o$ [, h% Z0 j' ?! j% }
# Define SYSHEADERMARK '%' / / System message header
. ] [, X/ z! n S! WWhat the Sysheadmark is looking for is not even the top 5E.8 s& h- r+ K/ Q7 o9 {( F- B9 W
Change this and it makes the CE Not work on server.
0 R1 W8 W/ g, y
8 r, |! @; v/ r4 f1 j/ F7 v/ a! V' J5 IThen Tom's anti-hack is no longer useful.
; W, d1 V" u+ O# m0 z; G+ K
$ ^# C/ [" `, A7 F# t! R5 FLG Sedrika
Part 2 of blocking CE
7 Y. ~3 b0 H1 w8 h3 O: c* v' {. ]* V: c- t, r/ m2 K
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. * ?2 i/ N# X7 R. x# L4 |4 f- e5 o
What does this have an advantage?7 p9 b) O% }, s; ~8 k, }6 l
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 2 N7 `5 r7 J+ E1 }7 e- a/ L- S
; s2 i6 {4 G) _
* |. a/ w m2 @+ A0 B% r zFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
% u0 J+ c. N( |0 Q" t# X) b/ u# P5 t, |/ ~" _
Then search for the following content in HwOption.cpp 8 w3 G/ Z2 K. e! h' g7 g
- P. h8 c; @2 E8 D+ n& F0 j
5 [3 u% K- F. v! j: Q, F0 P: Kif (scan.Token == _T ("ip"))
! P) k5 @% Q5 T: `3 E) {+ p{; T. l1 `- |( f% P
scan.GetTokenEx ();
6 M( |' v4 c, ]* k6 gstrcpy (m_IPAddress scan.Token);; v: H, C' m! y) l* I0 u/ H
}, n7 C* s, {! W5 }0 v" t
and turn it into this:
4 ]& ]/ O$ M4 b7 jQuote:
i) k2 j0 A1 w" L" b2 |+ Oif (scan.Token == _T ("ip"))
* r0 _) I2 x9 `3 K& n{& D9 ?' |8 H- q
/ / Scan.GetTokenEx ();. Y L" T, ^2 O( D+ w+ o. B$ L# T
/ / Strcpy (m_IPAddress, scan.Token);' o. Q4 Z3 x- T1 x/ V0 g7 Z z2 I% _3 k
}
+ }5 q7 |& K- h" P9 oAnd you created the solution.. c" y7 t& ]; k# k c* o# ^+ c% q. }
, D1 R0 n) M L: n6 M4 }; r, k; z
2 [/ \5 A' D# bThen read the Neuz not the IP from the INI anymore. even if put in it" \+ n; X F% S* w8 F
6 C0 r5 i! p. s$ m7 ^; \8 a4 u& w
Max skill's
' W$ A) ^3 N2 H" O
H6 [% K& {5 F! j6 E' H! kAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc $ b6 U( A" _) m: k. n
& _- S' l4 P& z2 Z$ |( _, Q
With the TUT can provide the remedy it
+ |6 F& Q% \3 P7 h V& v1 W w
5 J' c4 s" Y x- Y- L+ Z, w# 1 opens the file SkillInfluence.h
2 V) d# R6 p6 j. L( M% ?; ~# 2 Search6 d3 W% R) h1 x& z4 \ V2 o
Code:2 t4 @5 f k& p; v* s& I
+ ~% ?# K2 ?% w
# Define MAX_SKILLBUFF_COUNT 14
$ z* X) N' V, V' a! [/ d
8 E( h8 ~6 w" _$ s1 ?# 3 Change the 14 to your number (eg 21) and save it from
- p$ a3 H) n6 v- ~7 Y, J) ^# 4 compilation and ready# \3 Z3 a' B) i+ Q$ l
" R1 k4 _$ G8 U; H- Z# S
+ w h. s5 s, |' M" R- ~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:
; Z0 j7 {1 O; ^' }. Z+ V
* D, y1 N! I# k( p3 R. }dennisdra
1 D' y9 H w; w.Crasy
* G6 {# a8 h7 \7 a. c* W7 T' o©ross
) h( r' j& V# `Sedrika) b4 n: O0 Z6 ?0 Z
s$ c$ n4 t3 M/ `4 x. s7 L
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!
( J% f* @% v! Q. V2 x3 d: O" H) I" X/ K8 E2 V
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
7 J7 A; {7 K! E3 H6 t$ c9 \( B7 m8 g l( z( |2 `8 t/ v5 n. r: T
$ G9 l5 b6 [' n' A
Update 1:
how to turn off "Profiler" in worldserver.exe 1 q% o* V$ b* t' c/ Y" Q/ {
6 n1 h; R, V. j9 {, \/ ? r' Q. Y' m1 C
in VersionCommon.h of Worldserver Solution
. h, s6 E" _+ y8 \0 N& ?Look for. b2 {/ M$ O5 ?- m7 I0 T3 ^6 Y
0 \5 c! @ P" n' W#define __PROFILE_RUN2 p, c3 j2 A0 V/ [
6 ^& v) g( r8 I3 j9 r' p. mcomment it or simply
; U f0 w; }4 n% ~8 P* B1 z% }) x7 _. [" l/ z( c" G7 W: N
//#define __PROFILE_RUN W4 J) Q3 Y/ @) o
9 Y5 ?5 ^. x+ k: l; |
7 l" D1 o3 L5 U( A+ c. B
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投寄。谢谢。我添加更多的很快如果你有病加太 % o! k6 j* u; c+ t4 X
|