|
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 & D' {2 U6 d+ n3 [. i0 a# A9 ^
change level without Rebirth; R, d G% i* o1 w+ X; N6 Y$ b0 y/ e
" m8 [7 k6 j7 t4 ZNow, let us begin.
( z' m7 l$ ^, j4 _% B, ]+ {
+ u' T- T c& U9 p5 c9 b' N4 t+ YRequirements:5 K4 H% H0 S$ {# |8 V; p
Source
8 z8 {' ?+ G, O3 v9 sNotepad / Editor
% N: B5 w3 N0 K* f$ j# K5 i& K3 {( q2 m9 g/ P
/ / Tips by Sedrika" q! R2 k9 p4 j! s- C" k
2 k7 w# }8 f- ~9 TIt is up to you how you do it ^ ^: H- j. s9 P, ?7 S7 m( I/ g
2 w: x% w" v, | _( O; m+ G. u
Go into your source folder and open the definejob.h
" @" W; I* i( K# U+ {Search there for: R4 n, X4 x) f2 C e" U" {, q
) W8 ?0 Y: i% p* V0 D$ j( ?#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
b, V; B# L# N P#define MAX_LEGEND_LEVEL 129
5 I+ G5 `+ [+ z#define MAX_MONSTER_LEVEL 160
8 d# N4 G& S$ o: g#else // 15Â÷ è÷¾î·Î ·1o§è®àå
( O+ ]- r* h" V- O4 Q#define MAX_LEGEND_LEVEL 121! i" J$ x$ b% G+ ^$ {
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
2 I4 K& p {7 |0 N: i' n
9 S/ ?8 E J: t$ d& I+ `# i& Y0 [; L1 J: |6 n2 ~& L
Red: Player Max. Level: d/ ^: t' J. P
Green: Monster Max. Level
' R3 d1 m( Q7 l! B5 f5 D* P: S8 D, [4 b7 J
These changes as simple as you want." c3 D1 ^, |3 w# e6 A
$ X' U/ Q9 f3 F! }
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.! g: H1 N1 }) }
8 b! C8 G$ k) a9 j8 {+ B, a2 f
Part 1 of blocking CE 2 r& a+ j5 ]: J& _. ?; r; ^
" i6 Z( S2 e( T1 \
In this tutorial I will show you how to change the Head of Mark flyff. u* X9 u5 B6 x( T% y
The current Head Mark is well known, 5E, which results as a string ('^').! P3 ]" S$ h2 X; {
+ Y- C/ l. W/ d% {- dFor this we go to the World (Project) and looking at the Buffer.h after thistext5 Z* a8 p& n1 q. t8 I% n; N
Quote:! o7 N3 V% ^$ ~3 d5 s' r
# Define HEADER MARK '^' / / Normal messageheader( \5 n. t0 K7 u" M
# Define SYSHEADERMARK '%' / / System message header* M9 p8 l/ |- r, |6 O/ I2 e6 `
What the Sysheadmark is looking for is not even the top 5E.$ V/ T: k% ]* }& [+ b, e3 a
Change this and it makes the CE Not work on server.# b" ]9 q' X. x# v: ]
( |' o* |3 }2 v( `# i3 P& ]Then Tom's anti-hack is no longer useful.
" p% }# |3 X/ r/ R7 P8 N, v+ |" c% ]3 x( f" |! |
LG Sedrika Part 2 of blocking CE * w3 J. ^8 J( Y6 [2 D$ X9 S
: m4 ]0 q" G8 A3 @8 e( `! qIn 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.
1 Q0 Z) c9 g$ W# ~What does this have an advantage?
4 D/ p; V! \# i9 Q" e7 BThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
3 m+ x, T! }" _' {& u) V6 z7 E
3 @; T1 G! j9 e) v" B7 Y+ L3 ? m* p
; |# I! B; M9 V1 mFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
' x* H# W( n' N' S$ T6 f# q2 F' }( H! r( j- l' M
Then search for the following content in HwOption.cpp 9 N9 l f" C p2 k
0 N5 ?: C- J1 Z2 A2 j, p/ D
3 E! b# ^+ r3 ?/ E8 J: S& G
if (scan.Token == _T ("ip"))
* U0 H- }- e9 c{
8 T/ G' s5 ^6 G% J; |6 N( S& {scan.GetTokenEx ();
- s2 }1 i" `/ |. j6 rstrcpy (m_IPAddress scan.Token);7 W! T* L: z, @' g4 I' y
}) G: r4 q- K' j2 \/ T! q& g" h# u
and turn it into this:6 ?1 g# R4 Z# |2 a4 q) g7 @1 s0 q
Quote:( \. _7 `) S x6 S& r( U
if (scan.Token == _T ("ip"))
6 Y1 b/ ~6 m+ N$ o+ J8 i/ l{
7 v2 u Z7 q* A; _5 O/ / Scan.GetTokenEx ();# ~" I8 \2 q% P- R0 s
/ / Strcpy (m_IPAddress, scan.Token);
9 [5 j. @& i" d; P( ?& H1 Z}
7 \+ W0 ~1 _. ~5 C/ ~$ O$ N4 F" rAnd you created the solution.
7 _- H6 ^* a0 k& r- p1 N. L% d5 a
; N, {" H1 w" G" D# x8 Z
6 X. R' p! l0 v9 x* c( O! RThen read the Neuz not the IP from the INI anymore. even if put in it
4 j" L2 {. P6 q. R: Q+ R' ?7 i
: {. a# e9 K- [ Max skill's
$ v7 d( X, j& v! k7 g/ g! j( O+ n. D
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
& B1 m- f. j% A% ]; z/ ?/ ~$ I- |
* M6 x: G" h* A( G4 OWith the TUT can provide the remedy it
9 U4 _& \1 V1 Z6 P% w: Y# ^7 o$ D. H* [" q, ~$ @3 ]
# 1 opens the file SkillInfluence.h
4 R+ j! W3 `9 P( M8 r; @' F# 2 Search: H/ Q* X$ W8 C4 c5 u% W, Z6 Q
Code:
# v3 u/ ]! h! o0 {7 q4 H& B$ d# M/ G5 ]; J
# Define MAX_SKILLBUFF_COUNT 14; R! A! _ [2 s0 m3 \: I
4 [2 L5 s) \7 R
# 3 Change the 14 to your number (eg 21) and save it from3 X9 l* m; C/ s2 U0 {
# 4 compilation and ready
8 U& h8 ^/ q! D$ J: h6 q( I: ^4 c |& t! _0 ^7 a/ _# X6 ]# [
8 ]- F/ h% f# [ |5 ]" iI 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:
2 A2 {7 ^& F8 X3 d7 ?0 E w) l1 L: ^% |1 R) h4 S
dennisdra# [+ T" W6 L: H9 _* c
.Crasy
: {( y! m1 A* h' w* y# `©ross
1 A7 U* r% X' x3 p- ]: J! h3 M% d: {Sedrika
& ]0 [5 S% E; @' v7 @2 U0 d/ R4 q9 L! 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! * b. ^+ F3 h: }* x
) c! ]0 o, S- W7 C6 k% V
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less. X7 C: \& P& {4 D7 h
! r3 q6 A- Z( C! D
* X+ O& I$ S% ` ?. i
Update 1:
how to turn off "Profiler" in worldserver.exe : v0 L* s. d8 y0 l' }5 @/ k* k
- ?( S: L E: p# b
7 E! V! l, b4 m
in VersionCommon.h of Worldserver Solution8 \" T% {& S& E# T1 [" [6 l |% C. c
Look for, {2 e( d6 c6 Z
+ t2 e* p/ {' t9 [
#define __PROFILE_RUN' G5 v$ j7 _' i4 O
0 D3 u4 F+ y3 ^) \. _: ucomment it or simply
: {: o! {6 f( d$ }0 w/ l
+ e9 ^. y7 T2 Y- F! q% \) }//#define __PROFILE_RUN
, @* [4 F% g) \" ^+ X; i2 J3 }6 Q* O. B, G3 R8 X
0 f; L& K) m9 a- T/ \% [0 v
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投寄。谢谢。我添加更多的很快如果你有病加太
1 X( H# t1 G. b4 V1 ~; t2 c& p |