|
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 2 a8 A; w' B$ @: f( Z9 \8 o
change level without Rebirth
T: p6 _; f/ Q1 b0 d5 E) n! ]' g+ l1 r8 ~1 O
Now, let us begin.5 [" R8 n2 \0 o8 l
9 ?5 j) h8 G C
Requirements:0 ?- w& u3 u+ |5 G& T7 N3 G2 I
Source
% Q- D" y" z( L* bNotepad / Editor
9 K* M/ v7 |2 q, v- k) h& K6 `
/ / Tips by Sedrika
# @; ~% Q% E" \" u
: M1 z, G) ]/ L4 @8 i! L: ?: sIt is up to you how you do it ^ ^# j1 ^! k4 u- p# p3 g! I P2 y
) _/ }+ \0 v0 b- dGo into your source folder and open the definejob.h8 r4 |7 v( E: [& A, a+ D( i% Q# i
Search there for:
o" Q7 i+ I# W V4 _( D2 Z. s1 p, L& ?: m
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
. V& a6 K4 l% E, _: I; [1 b#define MAX_LEGEND_LEVEL 129+ [ K8 q8 q |. @& G8 e" C$ X
#define MAX_MONSTER_LEVEL 160$ X) T! E. f7 X8 q( d5 I" t" N+ b' y
#else // 15Â÷ è÷¾î·Î ·1o§è®àå4 R: f6 F* a7 T& B
#define MAX_LEGEND_LEVEL 121( Z: Y: g/ R3 _- g" l; h9 p# n
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå k. `; z% L2 i9 L# D
: K! J. _) D4 S( M- _( I
+ O' T$ t0 u% H; t6 a4 K
Red: Player Max. Level: ?. w2 V: R+ o; t# @* Z
Green: Monster Max. Level" t6 T4 h5 `- i& D% D; d0 J% F
+ R, L1 D7 M. X# W/ I' B2 S, ?( o8 H
These changes as simple as you want.
& m# x$ ~2 l8 s- ^
5 b' S7 w( L& V6 j* h* @ CThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.# ?$ B- k: p! O! Z
' h$ z2 p0 w# Q& o+ _# R Part 1 of blocking CE
$ |! J! h& U. l; a/ h4 X
, q+ \# D6 W7 M3 G" R5 LIn this tutorial I will show you how to change the Head of Mark flyff.$ ]! b/ @. z8 ?* d. ~2 E: h
The current Head Mark is well known, 5E, which results as a string ('^')./ U8 U& k! {& x J) v0 M+ n$ t; U
) {' n5 {4 s) h4 P! e- Q
For this we go to the World (Project) and looking at the Buffer.h after thistext
' Y; s3 {3 ~) i+ ? vQuote:
+ }' D( o/ c, s# Define HEADER MARK '^' / / Normal messageheader2 U0 O2 N/ P4 f% l5 {5 v( x- d
# Define SYSHEADERMARK '%' / / System message header F9 x0 X2 m$ Z* ]% Q
What the Sysheadmark is looking for is not even the top 5E.1 l, R( u- w, f# c& U! W0 c# O8 h
Change this and it makes the CE Not work on server.' J, [' T: t; G9 H7 A& v0 C/ [
1 N4 v% J n/ j ]6 m4 C0 r# W }
Then Tom's anti-hack is no longer useful.0 j5 u/ G# _2 g( X
, A2 ^8 r" G5 L2 SLG Sedrika
Part 2 of blocking CE 7 X# W) j& h5 Q. i/ T3 Y
: }3 J% h% H7 h' [/ O+ ^6 q& KIn 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. 5 G' F1 A- `! `
What does this have an advantage?
0 p g9 W* {! nThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself w) P: D5 j# Z0 `
9 I+ w. }+ g& T+ x! K1 N; ?+ p
7 S7 B. ?# W1 C+ m* L. m( i5 I3 jFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.7 a; W8 N! n( y6 {/ S2 P; Y' P1 r
4 Q% d: L6 U* J% w# F
Then search for the following content in HwOption.cpp
( [, \4 o- {) A) c( ?
- ^$ X/ M* _4 j; s5 m
/ d- o8 K3 U1 {- Cif (scan.Token == _T ("ip"))
! a: ?4 h, }) f# e$ a{
2 @$ K4 |- l# Oscan.GetTokenEx ();& I& }& e/ k5 ^+ ?9 m
strcpy (m_IPAddress scan.Token);7 [/ X0 N, M/ m+ R
}
& y% X8 X' S# v$ l" aand turn it into this:, u2 w8 O( E, u3 X! _; h
Quote:5 t7 ^4 h: F, T9 U
if (scan.Token == _T ("ip"))
) I0 f: |# _6 e; v3 K6 R3 n* I{
5 r% v" X& [$ w5 }9 F, w; o9 I/ / Scan.GetTokenEx ();* h4 _/ Q6 e3 d* i
/ / Strcpy (m_IPAddress, scan.Token);- d* m9 K; Y% ~2 W+ Z, G) y
}
& W, l1 E' ^5 L) M2 d( nAnd you created the solution.$ W: U! }5 z: F4 @1 W, @% `9 i0 q
- K7 k' s) Q+ b( v9 K0 |( D' h$ m! T+ t `* N; N8 M
Then read the Neuz not the IP from the INI anymore. even if put in it, V2 O$ U) e! k W, u
- ]+ }/ V% Y, M1 v- h Max skill's # {& b% P$ ~, G8 V0 N% Y
9 v) b: G8 c6 E, j; Y( m
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
6 C0 `7 E7 p# c7 f% [1 t3 G/ K9 y6 S1 b: s
With the TUT can provide the remedy it
5 K, j5 Q/ ?& \1 }" |6 R5 i @: `& q8 s3 B7 w
# 1 opens the file SkillInfluence.h: k: [, `2 \) ~/ X; i
# 2 Search- c) f1 O' S8 h L1 L* T @
Code:5 n* z" B* `. r
* ^$ i8 Q$ f4 v3 V/ Y" e& R
# Define MAX_SKILLBUFF_COUNT 14, C: F3 ?, t" h$ u
1 f& ]. a& H2 r* M3 d0 A& n7 ^
# 3 Change the 14 to your number (eg 21) and save it from
9 F2 K, I' ]' v0 p# 4 compilation and ready, x6 \* I2 I( j) }) J$ T
- T* x' M* X! Z% g2 @' \; @% O d3 n3 Y: T( P+ a! U/ Z
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:" f( R, x2 k) `0 G6 J
( W6 L( H3 M& A1 ~0 ?9 |
dennisdra/ ?, y6 G6 c" M7 V
.Crasy$ ]* Q6 w) d3 o4 X+ }" m h$ S5 E
©ross8 C q) F3 t4 }4 }% |
Sedrika
$ t x. Q% b3 ~6 F' D: O
4 }0 R) d3 e8 y$ G# J+ @: h) X( M* J: leverything 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! + X/ \ P% f4 \9 l) _4 |+ B/ }
$ F. d: D! |. k5 E
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less; v3 Q( r6 C- F! ` e
" G9 N/ `8 q5 V4 w% N, U
7 R, \( Y+ Q5 b+ IUpdate 1: how to turn off "Profiler" in worldserver.exe 1 }9 }4 d' v$ s, p* Y" W
" t' k9 ^. o5 g
% A) W! P% Z$ r+ Xin VersionCommon.h of Worldserver Solution
( X. B) { G$ N6 v- Y. K) L5 jLook for
3 \- s6 }2 R- o' L* O3 u6 V" w
, |. a M( n2 A; l& x! u) ]9 f#define __PROFILE_RUN9 d+ a8 t! I; m/ i' _; n, {
: o% {& c- Y G$ d& \& ^
comment it or simply
5 b5 R V6 Z4 t# ?: P9 X! N: l2 l
9 e- Y( V$ }' \* k3 R b//#define __PROFILE_RUN $ ]2 Q8 s. d# D
5 E4 b4 o9 C3 R( D
- z! R; ^) b( Y9 J9 m9 Y' a5 ?8 wcredits 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投寄。谢谢。我添加更多的很快如果你有病加太
8 {& M: _/ S {- m# D# L |