|
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
6 O5 q& z' \ v3 a- [change level without Rebirth
/ B W/ P7 M( j3 D/ o1 k8 H: A( T
3 h! b- M# s4 {' ]9 Z2 yNow, let us begin.% `; ~7 F3 x7 d4 N* O H
! T" n; n2 R% U
Requirements: \2 F1 [. |# {1 S4 v$ R
Source! y+ O, [: z2 d+ _
Notepad / Editor
7 t; Y# `4 R4 l0 U9 x* Q& i H) |3 I, j2 O5 P7 V4 ?+ W5 f
/ / Tips by Sedrika
% u9 t. D1 C! u5 ?7 c2 r* n2 |: t
It is up to you how you do it ^ ^
2 N3 V; h6 o5 F. D( {3 K6 R4 [; w+ M; S' d9 S
Go into your source folder and open the definejob.h3 H0 h& z0 k, V4 L2 _$ ^2 ]
Search there for:6 C( d, h6 R; _+ T9 Q
' W7 W7 U- G( e$ e8 l1 P
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå" q& ]& L Q/ f8 x6 s3 B1 w* b
#define MAX_LEGEND_LEVEL 129
4 X& N$ t/ U/ q$ j# Y/ P( m9 Z$ C#define MAX_MONSTER_LEVEL 160) V; L- Y$ i K* }9 Q! `
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
6 h0 n# u8 O- _% u#define MAX_LEGEND_LEVEL 121
4 W5 r! o# u2 `0 C% ~7 Y6 w* Y$ D6 s# n#endif // 15Â÷ è÷¾î·Î ·1o§è®àå ; y, W# V! j( g- Y( }. K/ W8 C/ @
; P3 x2 Q3 z5 }: v/ S/ E' G: R' ]
2 ~: Y* `3 o, I
Red: Player Max. Level
0 S. Z @( ^8 I9 JGreen: Monster Max. Level
# G( ]- [/ x/ b `$ c7 s. g
9 E" @5 O/ L. c# O* JThese changes as simple as you want.
; l$ w- ?* q3 }4 q* g9 z
) j9 G3 ?: q5 V! h2 u; i" \9 QThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
- F7 ]/ o8 ~& I9 u w1 _
- P2 O$ o, ^! o8 R% e4 f
Part 1 of blocking CE
* ^3 f; u2 Q2 {3 N% n/ \+ B ~3 e, j: G" q: p/ U
In this tutorial I will show you how to change the Head of Mark flyff.
$ D' z, p% t# \The current Head Mark is well known, 5E, which results as a string ('^').6 K$ V+ s+ p+ ^$ Q
$ r: Q) [6 W5 Q6 h
For this we go to the World (Project) and looking at the Buffer.h after thistext& d! z% k2 R" c$ D/ D; U
Quote:6 K& H9 u' z& }3 w9 @( Z/ p# |
# Define HEADER MARK '^' / / Normal messageheader3 C3 L0 x9 i% a) t0 R& V
# Define SYSHEADERMARK '%' / / System message header
: p* t& E: H8 oWhat the Sysheadmark is looking for is not even the top 5E.3 D1 a. C x3 X3 k! U
Change this and it makes the CE Not work on server., P( r) X7 B; P& I4 r! H
) l! ^+ y& x$ [3 D1 U
Then Tom's anti-hack is no longer useful.! p1 a/ q. ~: B3 a8 @+ X; g6 g
$ j6 d- W8 u! v+ E9 V4 \% r7 r
LG Sedrika
Part 2 of blocking CE # i, u/ q4 A) H
5 a2 ]" i, o7 I; X2 L, b0 \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.
) T' ]9 r: x+ hWhat does this have an advantage?
& C% w- k: w/ L+ {1 ^0 RThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
; ?- B! i: z1 ~& Z7 Z( n
: R; S4 W% ~5 i
7 Q0 y! S$ k3 k5 l' AFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.# ]6 w" K+ z' n, `; e' n# O
v) C1 E* X5 e h/ c2 S0 k" dThen search for the following content in HwOption.cpp
9 T3 E+ v. {0 W5 s$ t( ~0 e/ N/ V \3 V' p' B
& E3 N4 }7 y3 u# q) M* ~+ h
if (scan.Token == _T ("ip"))
! I; ?- H# ^5 D& v: N' c{
# [7 }0 H5 v8 B$ _scan.GetTokenEx ();5 u: [+ Z, n% m$ n8 F1 q
strcpy (m_IPAddress scan.Token);% y, [2 L. G( j3 n8 c! D% s
}
& I2 e" Z% V8 W- B! g% Y9 mand turn it into this:4 z3 `* L# ^8 I" S# ]
Quote:
& n0 o5 T% J' I1 i* Y$ k5 |if (scan.Token == _T ("ip"))8 v1 e, u* L8 O4 E# u7 R/ v
{7 W9 v+ r* y% O
/ / Scan.GetTokenEx ();
& G; D# M3 S5 U" Y5 j/ Y/ / Strcpy (m_IPAddress, scan.Token);
' o$ G: E) T2 k. T5 d1 p}
. D- G1 j. G9 h4 u4 v4 ~And you created the solution.
$ i8 O7 J3 x0 s5 T* x T7 C3 Y4 s1 s9 B, E5 P6 u* h
! x& R0 U; a# n1 EThen read the Neuz not the IP from the INI anymore. even if put in it
. l4 r5 D7 G3 y% h' k, R+ M2 s3 ~3 s$ F- h1 E& k9 _8 T
Max skill's
$ B& ^3 ?: r! f* Y; Z. N
3 G4 H R( |# @+ s; \0 l9 wAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc
" Y6 x6 j% w5 ?7 s' v
" f7 k5 k' q; N- SWith the TUT can provide the remedy it
8 y1 Q, r, N' F! p& e+ O& F& Y Q% s; V5 w
# 1 opens the file SkillInfluence.h
3 ]( U2 T D4 E( L# 2 Search- ~$ I5 W8 g) f1 p4 k
Code:" M g/ \" u0 X- b; ~* {
6 Y0 g) G2 @- E3 Q1 o+ B1 g* K# Define MAX_SKILLBUFF_COUNT 14
8 ]+ G1 k) Z L- O0 }8 A! {) K( a
# 3 Change the 14 to your number (eg 21) and save it from; L8 ^* c3 B; D3 E: s0 g, _: K
# 4 compilation and ready
* ?7 X/ f0 F1 I$ a1 ]2 `/ `6 g( n6 T$ k
) p9 |. I$ [/ T+ Z$ q/ m. J5 UI 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:
9 I+ J: Z5 ~) y* f8 G
/ b# U" C3 K! ], idennisdra
. Z7 ~" ]( g$ O% ]5 v& \.Crasy
# x8 |+ k/ G' {- s©ross
0 U- r! F; ^' j! } ?. gSedrika
* b* E' c: o7 z; @" T1 S) B# b$ d" X2 `, R, A. ^+ m b. k+ z
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!
, ]! \; t+ [; m" M" M4 n {
E) I3 o1 } y. U6 T% ZP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less4 }% O3 L) i) Q& p
# D2 G+ B% z4 q3 H$ C) I! H
- ^6 i' W$ F3 B! k( TUpdate 1:
how to turn off "Profiler" in worldserver.exe
6 b5 F/ x# o1 T% f
+ e3 Q& D# M- u& o$ G: b4 y, s% T. V" y {/ X! C3 g7 r4 G' w
in VersionCommon.h of Worldserver Solution, k3 c3 [" u8 l5 A! l3 F
Look for% B; s7 B0 P# k3 S9 Y; H& i
m7 {+ D5 ?! w) i& g! ]" x
#define __PROFILE_RUN
3 D2 q# o" L& H. \
* Y( t3 C8 S( }3 V$ I6 ucomment it or simply, l1 q& t5 u8 S% S$ c4 m( v" ?/ f
$ \/ i* u# S" M4 Y3 i8 j- T Q( A//#define __PROFILE_RUN
' M/ k7 i" \' A8 L5 X) a& V
" f" }" T+ w4 N
# i* X4 `+ B- Y" S/ ?6 ycredits 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投寄。谢谢。我添加更多的很快如果你有病加太 . k( o: r1 ]; k% P/ \$ D& k7 Y
|