|
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 & _+ ?, g$ W; a& L' `. ~4 u
change level without Rebirth
2 A/ V7 T7 ~. [
# Q( H4 W$ w# S; M9 ~Now, let us begin.$ B2 m2 s& `5 O2 n' Q1 z2 }0 k$ {! \
+ n; g, y/ t2 }" o) e9 h1 `Requirements:
9 o1 B- T! _7 F0 c7 f% x1 SSource3 N @0 ?5 z# w+ y. d( s& D& ]0 O
Notepad / Editor5 n" m i5 i% T* }0 y9 n
% E9 Y" s. z! w( v. t5 U$ |
/ / Tips by Sedrika Q8 F( Z/ G- J- ?& q. R* J
; N' I# R; G9 z
It is up to you how you do it ^ ^, w, s- |( F! z- E, d- U
* z$ D$ m# u6 q5 B/ M4 IGo into your source folder and open the definejob.h8 g: z- z7 |7 ?! Y9 J. S% I' I
Search there for:- o) A6 P4 P; v4 f3 t# t) D+ q- Z( f1 q
# R% v, |; E& f; ~4 x* K+ S#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
I8 z* S% q; E$ |" j) D4 X% |. \ C" {. A#define MAX_LEGEND_LEVEL 129, O/ C( g2 q: B/ @2 t% g
#define MAX_MONSTER_LEVEL 160
+ w {8 g M9 h q" ^: B: ~" I6 E* k3 \#else // 15Â÷ è÷¾î·Î ·1o§è®àå& L; S! P* n! y O! I4 [, M' {( t4 F
#define MAX_LEGEND_LEVEL 121( `' _6 R2 w$ Y m
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
3 l- l5 r' W$ _7 T9 ^
8 }4 t* l, y% b, E. L: O% C u8 R' C M
Red: Player Max. Level% k2 N% x% b$ Y: R! F1 R
Green: Monster Max. Level
, e& L: z; t1 E9 @* {4 C9 `
' B: }+ w( g! ~8 C( e2 M9 aThese changes as simple as you want.9 ]1 u. J% E. x1 g6 _
3 y' p9 H9 M {6 w; V% _Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.3 j+ H% M/ E3 g' S! e
( f8 D2 c/ s7 Q/ l0 w
Part 1 of blocking CE
2 C: f; h( H% Q9 O, V9 `
. D$ ^$ I- |( KIn this tutorial I will show you how to change the Head of Mark flyff.! j( Y0 l- Z) a4 ?. ]
The current Head Mark is well known, 5E, which results as a string ('^').
" r( @$ c n, C: s
% T- w& S% o1 S& ]4 G: W, [; MFor this we go to the World (Project) and looking at the Buffer.h after thistext0 p2 Q+ O$ ^' k; K E: N
Quote:
, c4 G9 u$ m: i, h3 Y O' z3 f* J2 t M# Define HEADER MARK '^' / / Normal messageheader6 O. ~; M/ [1 s! w
# Define SYSHEADERMARK '%' / / System message header3 l% p6 I* H" `/ Y% I. ~1 I
What the Sysheadmark is looking for is not even the top 5E.# o v/ j9 i( Q8 w
Change this and it makes the CE Not work on server.
, Z e7 g. F0 Q7 ]1 z2 F R' h! s4 B' C
Then Tom's anti-hack is no longer useful.
, N1 l1 P4 y- r; L# D f/ G6 }% n( q% S
LG Sedrika
Part 2 of blocking CE ^5 i' o& M: E1 @) X
3 H8 ^; q* I) B$ m* Y |- rIn 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.
1 z. W! H5 }2 J" @What does this have an advantage? ]" a2 ^$ U c6 A$ k8 A3 `
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
+ n2 ~7 F! M& q4 y
, ?3 @) T' p5 G! } W/ v W6 J/ o1 f/ g- m: X' {0 ]1 y
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.$ @+ r! Z6 L o
8 L4 c2 W$ V+ G* Z
Then search for the following content in HwOption.cpp
/ k/ o/ S Q0 N4 x8 M( S" t# D/ y+ Y
; V0 l7 E2 @7 d M2 p
if (scan.Token == _T ("ip"))! e1 ?! ~( a" h8 L
{
; ^" _* l# m. h) v* J# hscan.GetTokenEx ();
1 @1 a& G# ^* L( ~strcpy (m_IPAddress scan.Token);* Z/ [. Q3 u: b
}
" }7 b. K( t! i" }and turn it into this:
& X0 {0 G# c8 e+ lQuote:! D; s9 {) s/ U5 |) B" Q
if (scan.Token == _T ("ip"))$ \% r& f2 n% s. [
{" ~( [7 H! ]: J: M( i
/ / Scan.GetTokenEx ();5 W* ?5 g1 a T% R. z" y! D u
/ / Strcpy (m_IPAddress, scan.Token);0 T! N& Z2 }; @$ L
}
! W* Z' C2 y% O. ~* Q5 V# oAnd you created the solution.
$ P2 m$ G. R+ s# X, H3 c1 q. b. Y( l9 p, C0 c. Z" \9 u
0 ?; N; z! s/ Z& UThen read the Neuz not the IP from the INI anymore. even if put in it! c, y# K% N# u- j9 K6 R |
1 Z- C2 E1 i4 I
Max skill's $ y$ ]9 }# J. \; k: \* D- I4 K) L
+ r K u' \: `' @; f5 YAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc : i8 C6 C+ k1 A6 {7 u3 F
6 x2 V, G7 R' f; |* l& c) W1 R7 p
With the TUT can provide the remedy it) W' b+ z/ a4 a. o* o
# Y3 ~! O! T! Y; B) x# 1 opens the file SkillInfluence.h! k, n1 w. y- ^) }
# 2 Search
* r0 w% O3 j7 F' c. ]Code:
$ h7 R' J1 z! K. O8 m, p2 `. v8 n6 d( K7 z3 F
# Define MAX_SKILLBUFF_COUNT 14
: r0 @9 N. Z4 Y6 r2 ~
+ M% B, P# M( \: y$ M+ ]# 3 Change the 14 to your number (eg 21) and save it from
: U: B" ^* u. A1 u% d+ c1 G# 4 compilation and ready
: I& x0 b% |/ {8 w" e( `9 `/ G- R# J& x
; `& b; K1 d! @; N0 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:
" F4 W; ?* c' w0 ]2 f/ f4 `, e+ q/ w
dennisdra O6 Y7 z' O- u. k2 A) \2 v4 [
.Crasy8 d6 n6 A" \3 f+ Y& l
©ross9 _; j, Z+ L. Q J l4 I+ I
Sedrika
0 P% }: m9 K' h* k: D- q2 @( r* x7 H
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! , [ f T% I4 d8 I# y% ^! p" R N
* r1 k( z- g; }# }0 a* EP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less: B ^% r/ T$ o% {4 J) e
5 v! Y+ c: [9 d
# p! l! m4 a8 Y5 ~; B. I' C+ g1 w
Update 1: how to turn off "Profiler" in worldserver.exe
5 _4 J* V$ D* n% P" u7 Z4 X! E3 ^- J \+ J1 b
* Z3 c2 w5 U0 V9 I) Qin VersionCommon.h of Worldserver Solution: G! W% S: P( ^& P
Look for
7 x$ I+ o3 w/ x7 T1 ]8 U) ]/ Y& i0 {; I j- g. C+ x; J3 a. ~
#define __PROFILE_RUN
6 j2 Q$ `2 o$ H4 `8 v& U8 w F
* W' T' y g- C' M# ~8 p& Z1 Ucomment it or simply
1 y+ e* Q0 X4 g" p" i0 z
0 E+ |4 C: Q6 d2 ?$ ~5 D' J//#define __PROFILE_RUN
# a: C5 t. t% N- F/ f7 `- E( g) c* Y | o' P1 E7 c
1 c9 P3 z( Q; [% g- ^
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投寄。谢谢。我添加更多的很快如果你有病加太
1 x/ r! F$ l* \ O6 N) J- H+ M |