|
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 t, \" b- e; }4 |6 d' K) P
change level without Rebirth
2 O2 ^% i$ Z! O# y8 v
0 X# J" h& o( XNow, let us begin./ b# Q, z3 B9 h6 _2 F3 f. {/ }
6 B0 n7 a- b* c* q
Requirements:
7 V0 G, g8 z) n7 oSource
2 w) m5 }6 d; ?; N- S6 Q7 x6 Z- f6 PNotepad / Editor
X8 M! E& d: k @$ X7 V9 ]- |. \' Z `9 Q6 O& n3 ]
/ / Tips by Sedrika. r8 j; `" H6 [7 u& V2 D
# A7 X6 N; m# T/ v- yIt is up to you how you do it ^ ^1 f9 d9 f0 ]4 U3 r, e& @, K: `
4 f' Q! W. f3 tGo into your source folder and open the definejob.h" N5 D5 k5 a5 [, y
Search there for:4 O6 `3 T# B, J3 R0 ?8 J9 T0 s
; d: k8 e1 u' B' G#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå- |# w2 p. F* M! b( B: r6 o% k
#define MAX_LEGEND_LEVEL 129
0 J6 u g; A) r ?6 c: B% y: |4 n#define MAX_MONSTER_LEVEL 160! m4 h6 |; _3 ~# `2 N" P
#else // 15Â÷ è÷¾î·Î ·1o§è®àå( ~; _& `: r( h" A# G; g) y. {' P
#define MAX_LEGEND_LEVEL 121- w p0 U, m" S2 s: t1 V
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
; o- h z/ Q- ], k1 T( u; r! E9 o& U6 T Z( }
; S- U8 g3 L2 t3 |' K# S5 YRed: Player Max. Level
3 {$ r7 Y7 ^7 x* N* w/ y* mGreen: Monster Max. Level
& |( n/ \3 J9 ]6 {& \, D; v( M! N8 f9 c" i. E* \; _
These changes as simple as you want.
) Z! h2 _+ m. @- `
& g. {, @, S1 S5 D8 l6 {2 {" HThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.! o( Y A9 `% I/ z( S8 J. p/ t
. _/ h4 [5 h. }6 _
Part 1 of blocking CE 9 o2 W, Z+ t0 J7 f, H
) u% @+ t3 c7 E7 s; p
In this tutorial I will show you how to change the Head of Mark flyff.
% S8 [; o$ a' q5 W3 g! E- L- c2 rThe current Head Mark is well known, 5E, which results as a string ('^').$ U% o9 f+ k! c, S$ l( n& E
; e S- ?8 y+ x Z1 G0 j7 ]For this we go to the World (Project) and looking at the Buffer.h after thistext
8 y! c5 a5 ^" |+ B" G. I. z8 _Quote:( S2 y" t# z( C* B" n' V" b
# Define HEADER MARK '^' / / Normal messageheader
; R$ A: b) G: W, h" S Y; M: P# Define SYSHEADERMARK '%' / / System message header q( U+ G8 J {3 u3 a" D; _
What the Sysheadmark is looking for is not even the top 5E.
) C( u1 A$ g, q# PChange this and it makes the CE Not work on server.4 Y" s! X8 y1 F! h; O; Z" @: ]" r; Q
4 P: X2 f- m5 a3 gThen Tom's anti-hack is no longer useful.6 u5 s( [3 f! S3 y
+ s2 J4 @4 G# P9 ]LG Sedrika Part 2 of blocking CE ) d( C: C: }* J2 q. I
( A# q" O5 ]) o7 l' N" z6 `
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. " _8 |, X9 L& O3 n- x5 S0 G. a) Y
What does this have an advantage?
" r* Q9 h: I4 x8 D4 F/ ]6 PThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
, ^. }2 {2 _. }7 }
# B, I0 Q% p" N
8 n" f( v+ d# L) V2 _First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.- h: W* X0 M- V
* d# a% V* W! u$ cThen search for the following content in HwOption.cpp
[) f! K' Z% q! @& ?3 L" L P6 x: t6 }- U
4 c3 d5 |6 s5 r) Z$ m- L% `if (scan.Token == _T ("ip"))
7 ~ m2 Z. v% w; l* W1 q- @{ h6 r: {$ u8 I! B
scan.GetTokenEx ();( `& `1 X2 X& J/ b3 \3 x7 [; E
strcpy (m_IPAddress scan.Token);
9 q. A: L9 E. B}
0 M2 a6 F5 e9 `' m( G7 ^4 zand turn it into this:
6 b. T4 v1 m- g# L. aQuote:5 M6 t+ `1 ~- {( w, J( O/ f: A2 m. g
if (scan.Token == _T ("ip"))! G' |4 I$ y/ ~! {8 K7 u' r9 B
{0 s* J! s3 h" G j9 g, m
/ / Scan.GetTokenEx ();+ P9 w9 b% I( X: \( h& k
/ / Strcpy (m_IPAddress, scan.Token);2 b, j7 ]7 [6 x
}
! q( x5 T: j/ s/ @And you created the solution.
+ d8 a) o# Y5 U) q# [2 O5 f
, L6 N" Y7 P- H3 r0 F+ p9 @7 J- J. L: `
Then read the Neuz not the IP from the INI anymore. even if put in it8 z( b- s: `. ^: M* L! G2 z
) l6 o$ P6 A" ]/ `5 Q% C& [5 L Max skill's 0 P, t* W* v( M2 }* a
# z, O( m& ^ k2 g5 Z8 T' C# vAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc 6 D$ \! @) ^) ]5 k' v3 D6 ] J
3 y" B% E0 n9 s3 c$ }6 s
With the TUT can provide the remedy it
9 ^# r2 x: F' r6 B# [" y% `: L, A1 ^0 d! a4 y4 Z5 j6 L
# 1 opens the file SkillInfluence.h
+ Q0 _# [: c4 p( Z8 R* ]5 z+ R+ h# 2 Search
5 G) L |! b! V3 lCode:; u( ^) l4 [' ] M* H* O5 n
0 N: Z/ C H$ K: q) K$ a$ L# Define MAX_SKILLBUFF_COUNT 14
. p* U, U( C3 A! X
3 S+ {" V5 f3 ^) A) k# 3 Change the 14 to your number (eg 21) and save it from5 x. b$ I3 D- S( ]
# 4 compilation and ready
! L6 v% v' s/ Y& ~5 D- m) I w3 d/ `1 ^
3 |+ C Q8 b8 Z. Q6 R2 Z4 h3 {/ @( L
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:% a& ]+ @; Y1 ]
' D. O6 e* ?- P$ {% y% B9 ^* Gdennisdra
* @8 R! a. Q* q* v2 y" t! R) y.Crasy
6 _( m! y- u$ ?9 F! Q; ?7 p' y©ross5 R$ T3 V: a' S* X
Sedrika
% o: e$ ~. R9 ^5 V) i$ C$ I
* F: } N- W2 |1 x. ]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* x" w8 ~$ d6 p& M5 g
4 K3 h3 m, q6 U6 @+ FP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
' c. ?, M) b* L% U5 p6 r: L" R, ? p! X0 b6 g, \! G" C! r2 Y
5 z" d. ]) P6 A% i; q
Update 1: how to turn off "Profiler" in worldserver.exe
& F5 ]3 @" _2 @4 A- k1 Z# _1 F& E+ d! m" y, t$ }' h4 y) I, {5 |
9 a0 |# F( Y( ~in VersionCommon.h of Worldserver Solution/ A7 Z! C% j+ B; _8 d
Look for
! [' b/ P. d/ D1 r0 r, H8 o8 R1 f0 b2 c
#define __PROFILE_RUN9 T2 U- t" u* m6 ?9 y! m6 R8 `
9 b9 `: x' W' o9 J$ Ycomment it or simply
# Q$ y: U D; C: V. R/ b& H- e( M3 y0 z9 X7 S
//#define __PROFILE_RUN
, G( T' h' f b% h6 c) ]2 A9 O2 Y4 t# m& F7 ]& ]
( @6 Y+ X% D7 L- u! acredits 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投寄。谢谢。我添加更多的很快如果你有病加太 + s' b0 q0 }, F9 L
|