|
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 5 i# v+ z# b$ z* E0 c! g8 O
change level without Rebirth
5 {+ q2 @7 z; @$ a2 ]" g. S- s8 i: e5 n7 k4 ]
Now, let us begin.
. M5 D j! ?" _4 T' E+ Y( i8 ^7 w" L/ q: |% w
Requirements:! |% ^( y* Z4 R
Source
$ M" X6 y S3 U/ c' z3 |4 z' fNotepad / Editor
% o8 K8 s2 U$ L8 ~1 p) l. i! e6 A; w# @- c
/ / Tips by Sedrika
. u4 [& N% _8 C: j5 a( _# o
3 U0 ^( K" F4 R8 V% WIt is up to you how you do it ^ ^+ E4 h& `" t1 t
0 |- B+ k F: u+ @Go into your source folder and open the definejob.h
6 V$ K# n) R# M4 q! l6 `+ Q8 xSearch there for:
, {( T8 s, I9 {0 a' R/ s. v: m, R) Z4 N$ }" a! r @
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå9 ~ X1 u3 ?, E0 y/ x7 ?* B
#define MAX_LEGEND_LEVEL 1293 n$ B' w/ E7 E% y8 F6 ^; u3 E
#define MAX_MONSTER_LEVEL 160$ O2 R8 g# M* h! l( ]* \1 l
#else // 15Â÷ è÷¾î·Î ·1o§è®àå8 _- Z0 j$ Q% v3 C" C/ s$ g$ E, e5 l
#define MAX_LEGEND_LEVEL 1214 \6 z. g' X# f v- V+ ~8 s1 {. [7 H
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
8 [. s9 w! J8 k" u' {) H! {' }! d( a/ Q6 G* z5 p8 D
( W+ _ P7 }2 @" o/ i/ d- Z: ?7 mRed: Player Max. Level
' S: P! q. p6 h" o* sGreen: Monster Max. Level* a T" i, I" Y/ G
* \& t! C( d# S% b
These changes as simple as you want.
- S. Z' v& N2 Q2 g2 P e' F# g/ V) O/ r( O' u. h" B
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source./ w- \ |7 L- r& V+ h
7 _- y8 {) K4 N2 `7 F& @
Part 1 of blocking CE . S$ ]4 v3 k0 ^/ X/ e
9 v& h1 N' Q! [7 |1 X
In this tutorial I will show you how to change the Head of Mark flyff., }% O9 Q( V9 u; t/ b8 V$ b
The current Head Mark is well known, 5E, which results as a string ('^').
* H! {! \' ]4 ~5 k! U6 w8 ~# l; l1 E$ B: h
For this we go to the World (Project) and looking at the Buffer.h after thistext u$ V% h: d2 ?( _- f; w1 b8 k& g6 q- z
Quote:! y* }) a4 e" j) P4 [1 u' c
# Define HEADER MARK '^' / / Normal messageheader
: r& h; D( g; @7 |3 [/ x* `# Define SYSHEADERMARK '%' / / System message header
) [$ T9 L: J5 A# m7 kWhat the Sysheadmark is looking for is not even the top 5E.4 F! H' E/ z* r( L
Change this and it makes the CE Not work on server.
6 q8 F( P9 V1 v0 c! r
S: p/ [7 v" `Then Tom's anti-hack is no longer useful.; K+ [) Y% i5 V
1 W0 n: m& @! l6 c
LG Sedrika Part 2 of blocking CE - M0 i+ j# t4 A, v& E# v4 `
2 T) X" q( a: u0 _; U' z' 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. ; E! O9 |" w/ U6 i$ ~6 ~
What does this have an advantage?' G Y: F1 |$ q- I# M
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 0 b4 g7 v3 r0 Y/ T h+ w
, P, ~0 k x b, j R0 n% y
0 D' H/ p2 D7 y: u' S9 R0 W' N; BFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.( y/ K5 W* I8 {9 O+ r
' s' ^" A2 Q2 v" x( EThen search for the following content in HwOption.cpp : _1 P4 v" I3 o' {7 _7 ?/ N6 D
+ ]9 S& Y8 g% s- s, V
7 j( q/ D: a' ]% J, v: T; ~8 Jif (scan.Token == _T ("ip"))
( q3 I- t; V+ Y{
8 p. t, w# P' x' o0 [scan.GetTokenEx ();
1 p) G9 W0 P% q0 _$ ?strcpy (m_IPAddress scan.Token);! e$ a& c) Y/ b0 H% w9 q' L& M9 {/ E
}
& a+ C: c% n4 T5 u( X7 ?; r& Jand turn it into this:
" P5 }6 Q8 x8 d9 NQuote:: p. L' s* _) J8 O( a1 B' b
if (scan.Token == _T ("ip"))
F2 ]9 {1 @' k% e' Z{
* F- l# l, j. @' c/ g9 `/ / Scan.GetTokenEx ();+ a& H. u* P& K5 D% \) s/ F v2 _
/ / Strcpy (m_IPAddress, scan.Token);5 I5 K5 J; u( g6 o; d5 Z
}
* j, t/ @4 R" r0 dAnd you created the solution.
) P% |0 L4 |* {* f
3 [7 h! ~, t4 H- x4 p
+ a; q0 @0 M! t/ gThen read the Neuz not the IP from the INI anymore. even if put in it
# x* V! E; J! x# @
) T' W- K# f; ]. A Max skill's
3 b, b: J" [. f6 N. j" x- x7 j) [% e" B. v# |5 e
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
( s/ X2 i; ?9 A" z1 P0 D7 v
: ?) T- A" g. h" I' nWith the TUT can provide the remedy it
( N, {5 t9 Z" \* K+ d8 q9 r5 ~
1 a; Q0 }2 _1 K1 u6 h# 1 opens the file SkillInfluence.h3 i, M$ Q) D. Y$ N$ M
# 2 Search- I) V6 O L% P0 O9 _* |8 C
Code:& D V0 B2 n7 \% D j2 W9 a
$ j$ T0 _' Q8 w& z, W
# Define MAX_SKILLBUFF_COUNT 14
1 s6 y) K ]4 F- C
* X5 J. O! N; M/ }" G' _# 3 Change the 14 to your number (eg 21) and save it from
' q$ Y; H5 p! h# 4 compilation and ready; Z0 q1 }- Y. a- _+ O7 g& ]" r: a
0 j( P# z4 W$ W( b% k$ ?8 C k, r9 ]% v
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:
. |. Y% S9 q3 ]4 N! W5 L& ], k; P0 H: I; E* D2 u( m
dennisdra
* ?8 H% x: q4 S5 m4 P, _.Crasy
* d( |# a, l6 A. P% z! }4 [. R2 @©ross5 b2 X6 f$ v; |+ Q5 J
Sedrika
Y0 {2 n) i* h
$ \9 [6 S! \+ \) i7 Z2 Neverything 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!
! p3 U% I: |7 q/ e9 {2 r3 @( L3 O( h# I" f; ]
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
/ [* }% U: L1 f. `* v R- N- L5 \% y" V \3 Q; q
8 q v6 e: R* y1 I2 e9 M3 L% q
Update 1:
how to turn off "Profiler" in worldserver.exe ! G+ e: i+ ]/ G; h1 r1 U9 g. @/ p
1 s- e/ V) y# ]( h; \
% j3 D% d/ Y' tin VersionCommon.h of Worldserver Solution4 y+ a+ L6 g* I; N* m7 C" D; N
Look for- S( f4 Q: j8 M3 K0 | d) }
2 s- f. B3 n9 J% ~+ Z0 f#define __PROFILE_RUN
4 }* e, w6 C3 z0 Y" U
3 H/ N/ Q8 J6 L+ P' O! E; @% Qcomment it or simply
' u* K5 M; [3 p8 Q1 a6 |. K' r0 l* ^, j: ]6 x0 R1 ]3 R: Y7 b
//#define __PROFILE_RUN
( j8 B8 k: p+ K
4 [! Q1 ? |4 V, E6 k8 b: [: i. i. E5 k& M
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 l* I' g6 R7 C4 v7 M
|