|
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 4 | p8 h. A y* M
change level without Rebirth+ E+ E- H7 Q/ r4 s2 Q( ^$ ?; G$ h
& I. k' P: }; @' |3 J1 q( j
Now, let us begin.
; N6 d( ^/ s a0 O. `# K# @# s3 S4 D6 U7 w4 }( X, j* t
Requirements:$ b' I' s! Q+ b* a8 w: [' d
Source
& C& {1 v5 L+ M3 g, HNotepad / Editor" h4 J1 I# ?* k- O7 s# g! Z
" s( e/ G7 D8 R3 M. Z* B$ c+ o/ / Tips by Sedrika1 c' h4 b& X, \, C L, I$ i. ^ d
0 Y' K( c+ N2 x. q. m& ~; XIt is up to you how you do it ^ ^4 B2 H+ _( d) ]0 q+ L! D
0 @' H7 I1 Q! I- k
Go into your source folder and open the definejob.h
+ f, J6 r( k( z! v, D4 }Search there for: c5 C+ j5 r) x9 o# O
' z, g, h3 C( z) \
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå& U; a$ L( m Q! f( b9 s
#define MAX_LEGEND_LEVEL 129; i6 W2 L: z# r) j0 Z, W i! d/ x H
#define MAX_MONSTER_LEVEL 160
) Q" P2 ~5 ~& [/ R( J, l- o#else // 15Â÷ è÷¾î·Î ·1o§è®àå
; H3 x- Z7 o3 g% o#define MAX_LEGEND_LEVEL 121: X( l' X: ?% ~1 w8 s& t% K
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå ! \; p- A0 T7 I3 A) t) q. Y( r
- h; w3 C0 ]0 |: P2 v
" n' Q; p. L+ `& gRed: Player Max. Level
0 }9 o# ]/ v' p4 L; h2 W; D, b& YGreen: Monster Max. Level/ y3 _; _5 ~; w; x9 }5 I2 F7 k, W
! U- R; Z' W# k9 E5 I4 `$ l" YThese changes as simple as you want.( x7 j; [* r/ x% o3 I
0 d, h% C, x! l4 o* l. @; j) U7 l. I/ Z0 u
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
/ \6 f6 E+ ~2 h' z9 b
$ Y9 ~* Q3 Q5 ~1 Q Part 1 of blocking CE
9 C6 u* b5 ^5 B" ~5 ^
) x& Z8 L2 e2 Y& d& `In this tutorial I will show you how to change the Head of Mark flyff.- F4 w3 D3 z9 ~0 G9 r2 E, D
The current Head Mark is well known, 5E, which results as a string ('^').2 \- z6 I& g3 @3 ^6 `! {5 M
) J# F- g* h1 m, O/ C& q8 p; BFor this we go to the World (Project) and looking at the Buffer.h after thistext3 V+ t9 F0 n( c( f) K1 q
Quote:
) W# y; h% G4 V# U( r- N# Define HEADER MARK '^' / / Normal messageheader
8 Z" Y# b1 W, Z# Define SYSHEADERMARK '%' / / System message header; U; h, y+ M/ I$ | F+ B
What the Sysheadmark is looking for is not even the top 5E.
( W* G$ l" |- G( }) FChange this and it makes the CE Not work on server.8 }2 X: _+ y8 r1 o
- k% e4 q o) [# W5 \
Then Tom's anti-hack is no longer useful.
% e; I- h! G ^* a8 e2 a* O& o( Z- C- \) b
LG Sedrika
Part 2 of blocking CE & k8 d3 Z! N) {8 l2 k
' Z+ R9 _% H5 L1 uIn 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.
" h& |. Q& s4 g2 I* EWhat does this have an advantage?
& O2 e; u; J1 ^, lThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
% ~2 ~; x6 q, R9 J( x! p- ?! `, [& |; v# M) o
6 j2 A6 q% {5 j
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz., i$ _+ q9 h, y+ n0 [2 O4 p5 s% A g
. J% ~9 R# |4 `1 k( h0 A! L2 f
Then search for the following content in HwOption.cpp 5 C2 l; Q( @) P" e: Q% o
/ r& j( G9 }8 ?5 k( S6 X+ W) X* g5 [
if (scan.Token == _T ("ip"))
; K4 L) j+ Z( j$ _{8 \% Z6 Q0 U! u
scan.GetTokenEx ();6 q4 A$ K( x1 L4 h: D
strcpy (m_IPAddress scan.Token);
7 q, U0 p% V: s1 U6 N) C% n: [9 g7 Z3 y}- R& P) A$ q6 q+ u# }
and turn it into this:- ]% f- i0 W/ v' M2 ?/ O
Quote:8 O* N- S- t9 W
if (scan.Token == _T ("ip"))' x( o- z; b$ _$ [( J# [+ d
{, Z. w5 f! S9 Y. M) M8 Y
/ / Scan.GetTokenEx ();, p- u% ]+ ?( p; K
/ / Strcpy (m_IPAddress, scan.Token);
1 L& k$ y3 |) o: ]- ]# |0 {% w}
" }/ C0 T0 [% G% L2 U. ^And you created the solution.
* q: I" m2 W% i! ~5 I9 k4 O- m4 D! [5 ~3 B% k
: Q) m. z, e3 F9 e' z: N
Then read the Neuz not the IP from the INI anymore. even if put in it
0 r0 {9 S, M7 x# d4 @+ }
4 F# W7 V% `) ? W9 k8 a! E Max skill's
1 Z" E S7 J6 ^* ^) Z; T' r) Y) K) E) k5 ^# z
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 # k4 K* I# A1 @0 @
$ ~) ]7 q7 m q
With the TUT can provide the remedy it
8 p4 y( F4 ^' G6 ~4 G V/ v- s% C+ t% }; I5 B8 ~% j
# 1 opens the file SkillInfluence.h
' F p+ x4 @( R& ]% w$ c9 [# 2 Search# D! h( S( Y/ f8 W2 U6 n1 b
Code:$ ]* y: ?, x5 G/ n
; e3 ]7 ?5 y/ ^( a# Define MAX_SKILLBUFF_COUNT 146 t5 |( [+ A6 [, D; z% s3 \) b
, ~: g! B& N/ t8 e
# 3 Change the 14 to your number (eg 21) and save it from0 ]0 y: C- F) n8 I
# 4 compilation and ready
! V6 @2 \3 `9 m& ]0 D+ R: t7 G; ]) [ r. T6 [
9 ^1 w2 I8 |4 z
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:
0 F& @0 g5 \$ q. a8 p) ~
1 D4 j+ T! `& e# k0 r$ Idennisdra
% |2 T1 M5 `# t' y0 E# H9 a.Crasy8 P% x* L$ l! M* G+ N1 e
©ross: k! }% b4 v, d* @
Sedrika
, `# Y0 Y' ~8 ?2 {8 p- y0 v+ U+ j; p' {4 Q
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! C5 C+ z$ {% M8 L1 w! W
: V' T! I' a' F f1 F i7 l) vP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less" J; T7 t" l, M$ h
! C+ C, _2 Q* x: s8 @: h' S3 E
9 r" w& u/ C( M! Q3 S0 v' G& nUpdate 1:
how to turn off "Profiler" in worldserver.exe
; o* U( Y! I% P$ f4 H2 q4 i8 a6 u; {9 Z2 p
0 z/ c; S9 ^# U0 N4 B D
in VersionCommon.h of Worldserver Solution
5 ]" I, j" G+ C1 F) c% L, eLook for
' Z; o2 }" I4 Y
( H9 G" d: M( g! l& R* @* X#define __PROFILE_RUN6 R% u1 D- q7 J$ o* }* ~" A3 K
2 P5 N3 X; I% ?) ^8 x, s& {6 C9 W b6 n
comment it or simply
! l9 ?9 b9 }+ P
9 K }8 U8 n B3 V1 D+ f. q2 z# @- J//#define __PROFILE_RUN 0 W/ |$ V4 G, E& ^1 b
" Q& b) I& ]4 G7 B/ X9 ^: i' a) m5 L) e! {2 {& P! z$ {
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投寄。谢谢。我添加更多的很快如果你有病加太 p' P0 @( G0 _# f' B1 L
|