|
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
# `8 N+ i( q+ ?) X7 Hchange level without Rebirth
9 y$ e% A0 z/ W+ o! T1 b2 Y0 x
Now, let us begin.
6 j+ ?6 |9 D, b. }3 d9 R
5 y; i8 y% Q8 L, t7 cRequirements:, g7 M1 d" R6 w$ m* Q) a. n. K
Source6 j5 W: i* |7 o* Q$ p% ]9 m
Notepad / Editor% r, U4 K" L6 H) Y6 |, G3 p( {8 x
9 X1 h, _5 N9 x! b$ @
/ / Tips by Sedrika# e& W9 J9 s+ n9 o- [! p: t( }
/ Y7 w* P# k" ^It is up to you how you do it ^ ^
* Y, H! t# u. f U& A: ^5 U0 Y- M, C% Y( ^
Go into your source folder and open the definejob.h
* d, f9 ]% Z$ pSearch there for:
6 |/ l9 d3 Y5 I4 G% W% [& q, d+ N5 n5 B0 V0 j) H
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
: b3 g0 h' l% e7 j( d' Z#define MAX_LEGEND_LEVEL 129
9 L8 S! E0 q" `6 X#define MAX_MONSTER_LEVEL 160
7 o! b& v: D3 G( D2 M, D# k" i9 @0 |4 | c#else // 15Â÷ è÷¾î·Î ·1o§è®àå) M) v" d' X) q. \5 E. c( e- a# \
#define MAX_LEGEND_LEVEL 121) T2 W/ [2 E1 u5 O5 T2 ?
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
4 k! L2 B1 l) R) P7 K
! Z6 O2 i. ?: N2 N* x
! ^: i7 R: o `) X1 y; C: l/ y4 {7 n$ PRed: Player Max. Level v' s! X% m0 v, v
Green: Monster Max. Level
, J# e& X+ N/ {, b2 P
; m5 F0 z& v8 gThese changes as simple as you want.' e$ d8 n$ @! {3 i1 n# ^9 t6 W
1 d+ w- B! I$ d- N8 S. H7 ~: ~$ I# _Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.) k4 J" Z) F; @; _8 R
- A: Y9 B5 Y' T% {: \( O
Part 1 of blocking CE
3 p6 {' p+ o6 f; G H
6 D( T7 F$ _9 h5 D! HIn this tutorial I will show you how to change the Head of Mark flyff.
$ G5 r- M' L# VThe current Head Mark is well known, 5E, which results as a string ('^').7 C' @! B& Q) C* d0 a! c
! R+ a6 R& Y# [+ o' k
For this we go to the World (Project) and looking at the Buffer.h after thistext
( n" e( v( K7 U: D6 a: VQuote:
2 V+ T0 V6 ]$ \& N$ K. s% [# Define HEADER MARK '^' / / Normal messageheader+ q4 ^1 S2 }; P* \% R
# Define SYSHEADERMARK '%' / / System message header% s3 a( \6 b9 A- N! A+ P) I
What the Sysheadmark is looking for is not even the top 5E.1 I6 V( ~5 c+ q( Q8 K
Change this and it makes the CE Not work on server.; n' ?9 k, r$ Q
2 {7 O6 ~0 V. B% M VThen Tom's anti-hack is no longer useful.
' s/ a8 ?. z; ?- N/ O1 c. K3 I& f. ~( E3 S
LG Sedrika
Part 2 of blocking CE 6 k2 ]9 _ {- O+ z5 F1 Y
# I0 s. S" g+ M6 ^/ M$ P
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.
) _) r0 k7 `1 w3 f* x m8 t9 {What does this have an advantage?
* n5 C6 E9 `1 PThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
2 k6 R& f+ o2 X8 ?1 C' D/ s; F, z4 r) k# g% `
: b) K. O0 T8 E) z) b4 z
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
0 `, B3 \: V3 A6 U' I, {3 i; p6 B; N$ z
Then search for the following content in HwOption.cpp
5 r0 y% B [! g6 [# G$ \
0 Y: q/ L2 @4 V) U$ K8 L. h
2 o- J( F, K$ U# Xif (scan.Token == _T ("ip")) T3 ?4 B/ p) d9 C! x4 Z* p- z
{1 p0 f& |3 U, z/ w, [
scan.GetTokenEx ();
9 `2 t8 I) i; p. e, Wstrcpy (m_IPAddress scan.Token);
) n) O0 a' q# h1 Y3 \}
: G1 `7 ]9 m( @7 q, X0 [" \ O' E( d2 _7 Yand turn it into this:
. A! @" A/ }/ A9 b7 z8 SQuote:( Z8 I/ ~" e; ^* Q! L, t8 }8 K
if (scan.Token == _T ("ip"))
2 {3 H9 ?3 t. T9 s9 t; A{; w7 e1 S$ f( P) d
/ / Scan.GetTokenEx ();2 ]2 ?& A% {& I6 e! z n2 i W& | w
/ / Strcpy (m_IPAddress, scan.Token);
- X q; O4 W/ F}
z8 Y. A; Y) h1 N3 B1 \And you created the solution.
9 h a8 T% B. I& G# k) n' y
+ S' P" o/ q6 q: m# Y5 [! p* M% x' N' Z
Then read the Neuz not the IP from the INI anymore. even if put in it
, {4 n; q( U8 n4 t: K0 J& u2 {# T' Y
Max skill's - J2 X0 m3 K' M$ N$ z+ T! _2 q
. G# ~6 [9 \2 F' u5 T! A! s
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 W# T6 q! Y W' S3 c
1 q# z# M$ W( {4 E: m5 k
With the TUT can provide the remedy it
- u' R5 s. k7 P8 Q5 r# x& u" u9 x" m& V3 r. s( Z
# 1 opens the file SkillInfluence.h. |2 ~' E Z h; i9 w. l
# 2 Search' d3 p4 z- y1 C( P5 u
Code:
$ l/ V& Z5 ~- A" c. e
$ f0 B! O6 x9 x5 z# B# Define MAX_SKILLBUFF_COUNT 14
8 O i$ N- a" @& d6 N, n O1 r+ T6 n: ?' Q
# 3 Change the 14 to your number (eg 21) and save it from" p* j4 `; u. L; m. r" l( I
# 4 compilation and ready
& p6 U2 Z8 h7 a z& L# ]
$ d+ R: P! C% |3 A
}% p1 {; w% i" oI 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:" _& K* Q% s/ \& B
2 B* ?6 D6 n# b. q
dennisdra1 N# Y- F, l' j; r+ N
.Crasy
8 M" G- y$ Z+ x; H+ u: e©ross
1 M4 M/ y4 H9 P6 d8 n# aSedrika$ ?) v4 m1 x& h
7 A. n0 e4 r9 F3 k( ^. h( Deverything 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!
7 F" d# J8 M4 r4 x' e
0 }; g1 T$ {7 Z1 _P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
n; i# g/ e' q: p* \# `* M/ U. _
`0 \5 x8 }% g; i' | ^ |6 Z: K+ a+ A+ F& R3 V! i. s
Update 1: how to turn off "Profiler" in worldserver.exe
, j6 i1 `& h# X% Y1 ?- H! M
- ^, F1 x) Q% N$ a# D9 T j! n% p/ [, U. U' }
in VersionCommon.h of Worldserver Solution' C7 S4 h0 G, y" X
Look for
0 x5 h, w9 O: Y! Z0 A1 l6 N! \1 X' O$ j! e
#define __PROFILE_RUN
2 M& V# o! v0 J0 q3 K
! ~% ?* i( C& x2 A; T6 `0 [ F6 hcomment it or simply# `$ b6 E1 L q6 q% k- M
# a3 W+ n; R# G9 |+ ?
//#define __PROFILE_RUN 1 f1 M# \2 ]" Z7 K& c9 C/ v( x
9 c9 k# ?; S9 X6 y# f- F! I
# {3 I5 S( a. `) S8 p$ j1 ecredits 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投寄。谢谢。我添加更多的很快如果你有病加太 , X* E+ a, y! ~4 R4 g$ L6 |) a
|