|
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 # t2 B, H/ G' x4 m2 W5 `9 ^& D( }' h
change level without Rebirth: X- j1 t9 v4 V, F7 V+ c. z
5 A# D" v4 ^ a* s3 M- R4 h% ANow, let us begin.! \1 c/ U. B# w; c% W/ W* }
2 I" K# Q. }' o& W bRequirements:
6 \; m r: v# _( E1 i3 i% {Source
; |1 p2 g7 ^" L5 U( N0 ^3 f$ qNotepad / Editor
X) V2 S8 w* Z1 ?% p, d8 Q, Z; @1 T
7 N% Z9 C! ^* F; G" t0 K: G1 e/ / Tips by Sedrika
) A4 V9 t% x! t4 S) ]5 ^( B6 Q: [* u/ g7 ]& _) J4 V6 h
It is up to you how you do it ^ ^5 D( x, M2 c( j/ L! @9 }
% ? l6 W! w0 i; y$ bGo into your source folder and open the definejob.h5 i( P9 y& d4 w z' R
Search there for:
4 A/ c- S' @* w/ Y( T: p& O3 ?; a" ]" O' d J' c2 t0 M7 ~
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
- j) `: B' W8 k4 q- }7 N#define MAX_LEGEND_LEVEL 129
0 B" B0 ^5 t. s+ i3 N7 O9 p#define MAX_MONSTER_LEVEL 160$ M& P1 v% w5 P( ^- g2 l
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
9 R/ d) I) I: {+ w$ f, L#define MAX_LEGEND_LEVEL 1213 F v7 W2 @ U8 I5 W1 ^
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå $ \ r! r2 n) K
: a& W8 H9 S% }$ ~
* }' A6 u. r7 N% m3 S. sRed: Player Max. Level
6 Q( {0 V3 f" M- K+ p: V6 z oGreen: Monster Max. Level
8 d8 z4 ^. V1 N. M9 B* F/ |+ l* p3 S+ r. u
These changes as simple as you want.& Z: K# K6 W8 X* ~3 g6 s$ c
: P. b8 R, h; K
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.7 d# G; y7 t% u4 L( L
) z+ @' }. W2 C: n+ q% q7 L Part 1 of blocking CE
8 x3 J8 @) j9 R& A2 x! v5 |1 H3 J
In this tutorial I will show you how to change the Head of Mark flyff.
5 _/ z5 }" w: g+ H2 N) TThe current Head Mark is well known, 5E, which results as a string ('^').
% M- u, F. d& b3 D9 T. _( o2 _) O- h0 B# ?
For this we go to the World (Project) and looking at the Buffer.h after thistext
: j6 ~1 `# P d% v" A6 g* j- FQuote:" H% n5 e/ ?" Q; h
# Define HEADER MARK '^' / / Normal messageheader
2 { y, S: `# o" `2 Y* x2 F0 p# Define SYSHEADERMARK '%' / / System message header4 r( C0 W4 v' W
What the Sysheadmark is looking for is not even the top 5E.
. Z: y2 i$ o# _4 J$ b% _2 p) n) SChange this and it makes the CE Not work on server.
# m4 c" s: V! u& Q
9 `/ F) ~- A3 }9 l' k) n: a( rThen Tom's anti-hack is no longer useful.
, w7 Y% _& |. \ `7 C0 |' n# s; N
* T7 M( [ O6 J" a' ^LG Sedrika
Part 2 of blocking CE ( G+ m. U9 J" T2 n& I
4 M: f2 f$ ?- \' u8 f# ]; A
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.
u! r2 j( z c5 j: tWhat does this have an advantage?
5 ?2 S5 N4 b% Y+ `4 _: JThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 6 i" M- ]" S, I- E+ m
( d8 H4 x n! X4 I4 ]3 W
/ u1 e3 G' E, d1 b6 _' @; Z1 q2 cFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.: D6 [, z' ]; @' C% ~2 j
2 [* R8 {2 ?3 A) R
Then search for the following content in HwOption.cpp * ]8 L+ O3 z, P5 ?# m
# w& a2 f0 t: D( X( B$ Z: F6 S! A3 b9 x. X' }
if (scan.Token == _T ("ip"))
% q* o$ u' k9 I$ N+ v{9 b& W. j3 o, e2 F' Q
scan.GetTokenEx ();
2 _9 N. P- b$ I$ L( Nstrcpy (m_IPAddress scan.Token);6 [1 J- y, D5 p* G' f u7 o& K
}
+ \, x$ {# d1 t1 B9 y8 O8 r1 vand turn it into this:2 g1 o( }) ~6 D9 @! R- g
Quote:
! C- E6 S+ b) t! r9 ?if (scan.Token == _T ("ip"))
. G2 W6 n( a# ?2 e{
9 u W0 b! z; s/ / Scan.GetTokenEx ();- C4 L8 W' ~% V! g% d! x R
/ / Strcpy (m_IPAddress, scan.Token);
6 b, ` \1 }* l+ j}9 {1 |6 s5 h/ w
And you created the solution.
; ^7 @4 p! B' h9 o" k$ R8 l$ p% g' e/ \: S; E" T& |+ ~' Q3 N! X
( V% S8 Z/ J8 M' l
Then read the Neuz not the IP from the INI anymore. even if put in it5 [; v! k* m# {, C, w8 l! u+ L5 v
4 B2 L# C5 ^5 Z, ]
Max skill's ! d% m& v2 r& g/ s; N j% i
" s1 L, U: K( M! ^6 oAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc + a! ]+ u5 q4 J
' ~* |9 C! m7 ^! r* h
With the TUT can provide the remedy it7 f) P! J2 q0 `
! k- J1 P n2 [7 k! W: z! D5 N
# 1 opens the file SkillInfluence.h; x# T# u3 W2 A6 |. M
# 2 Search
; `* H$ U# [6 a* oCode:0 O% E, |/ u7 S" l3 `
% ^1 N4 Z& ^1 z( u% [
# Define MAX_SKILLBUFF_COUNT 14
W# j* h/ i# p" p" y) K5 ~
) a! o* J7 t+ A& @# 3 Change the 14 to your number (eg 21) and save it from
$ _% P, v& [& z9 Z- F' p) |# 4 compilation and ready
" P. [8 n" h2 H. ~; k
( b, U( f, }: K# V: r. L- V* x3 N6 \! w) k8 f2 }4 Z% n$ x
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:
! }% u4 ~$ o: l* u$ z7 c' a! j
1 B) [: D' d% o1 k- T9 u. Zdennisdra
# W" u# J) |5 i g5 M. {( h: f+ p.Crasy
$ i% j4 K# X" g: m# c0 m©ross+ ?# C! }) v: A7 I1 C. j+ _
Sedrika8 ]8 `+ J. E, M7 x) ]
1 |) r8 f! r. [9 l0 y7 m* xeverything 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! 3 A G( e" w4 \( D) y+ x
: b0 K: O8 B v+ v) C
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
: ~$ X- y2 }/ J
/ Z W" O2 E* `5 Q5 ?% g7 l b- x, U4 T# M
Update 1: how to turn off "Profiler" in worldserver.exe % t1 B# o' u$ d$ p8 q* T* _- Q$ B
4 c7 S4 x# |0 `2 N
B _0 k/ ? d) Rin VersionCommon.h of Worldserver Solution, y; ^) [. ~! ]& D- |: J
Look for# ^; ?7 M, W$ L
" \! }, q9 _! X- J" d4 k
#define __PROFILE_RUN
6 A) i) ^: X6 l$ h8 p8 B
8 z+ A4 I+ t1 S/ f9 D1 g) kcomment it or simply, h; A% x' X2 f: H+ e! p# S
, E' Z4 Z6 ^1 w n( x4 }
//#define __PROFILE_RUN / Z% n' U- N9 I! n
. t/ k1 ~; F& F! D5 e
+ c7 F t4 r% X' U: Z) U4 w
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投寄。谢谢。我添加更多的很快如果你有病加太 7 |$ |% X. w) V' x
|