|
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
0 d+ H5 }: C0 S7 M1 z) mchange level without Rebirth l9 k- {: e \) u8 r$ l. [. J1 g" F, p7 p
6 ?( K, {. m/ b3 SNow, let us begin.
7 |& s1 C2 C# C5 h
% s1 M% W& |5 |, zRequirements:
. k" l8 x' t; i8 }9 ]6 M# g' pSource, A# d( U$ S" V* [
Notepad / Editor3 u- v+ H! n1 u5 R# J3 L. I1 b
N: p$ e) y) i- z' B
/ / Tips by Sedrika3 X! h- b( f: v
# \7 T T c. a' v1 a( w. |' IIt is up to you how you do it ^ ^
6 j& o& E& t/ G; u# \3 V0 @' d
0 P J2 y4 \# k* x* Y( Z: hGo into your source folder and open the definejob.h0 b% {7 F! E. Z
Search there for:2 c. S7 I& ^ w$ h. ~
2 A# \9 w4 W2 W9 H. Z, @3 Q- e#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
# E$ n/ A" x7 u L- P" _) [9 i#define MAX_LEGEND_LEVEL 129
4 J: {0 D |$ c6 e#define MAX_MONSTER_LEVEL 160
+ Z" e0 C9 Q4 B. \( A#else // 15Â÷ è÷¾î·Î ·1o§è®àå
}9 k6 C! T/ s% _ f0 A#define MAX_LEGEND_LEVEL 121
% q: c$ y- j! k- ~, }! w#endif // 15Â÷ è÷¾î·Î ·1o§è®àå 3 O4 G1 `$ l* E, `& i K
7 B& u* N8 r. B4 \/ \% U
8 N) P. p, W: j) b% l2 p! ]9 {0 lRed: Player Max. Level
1 q1 O8 p8 o+ E, Y- q' t0 kGreen: Monster Max. Level0 X( n6 v, M4 w9 R. I( a7 N
# O, U T% @9 C2 T2 _& Y
These changes as simple as you want.( Y% H i( b' v
( L! e" _$ ]9 wThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source. _8 @+ H9 H/ O0 f8 w' \5 L3 n
7 N7 `; _% j4 w
Part 1 of blocking CE
, J0 N* H2 n/ n. ?4 {. D, ~) ?: j! X5 E9 Z
In this tutorial I will show you how to change the Head of Mark flyff.
) p% o2 \7 I( m: }! }1 E8 z8 C& IThe current Head Mark is well known, 5E, which results as a string ('^').% ?: K# I7 B/ Y* ?* r
/ I5 A. O# U2 z, a2 }, i7 Y7 c
For this we go to the World (Project) and looking at the Buffer.h after thistext
1 a+ F* T2 ] @2 oQuote:
8 b6 s6 ]: ~6 ^# Define HEADER MARK '^' / / Normal messageheader
% H& m7 X7 r% i3 h* A) N# Define SYSHEADERMARK '%' / / System message header
: ?1 z+ y! M3 K* L: t! @7 BWhat the Sysheadmark is looking for is not even the top 5E.
6 k5 E7 `& q4 K' HChange this and it makes the CE Not work on server.
; |- Y: m5 |! e/ h8 ?
) }5 K' r: ], m% e1 h: b7 L: e- JThen Tom's anti-hack is no longer useful.
+ s) c; _ d. ]9 ?' }6 o6 c V9 F. Z2 ?# `/ Z5 _7 r: K8 |
LG Sedrika
Part 2 of blocking CE
$ v1 p0 e# S' k" w* j2 A* x2 x2 z8 |0 {! H) m* ^0 a" Y% @: B
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.
* [" ?3 I9 H- Z( d3 ?. xWhat does this have an advantage?
: X- y) {. U r- N" bThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
( _8 H0 Y- K8 O/ X0 J$ ]$ I9 u4 [6 I' M* S4 N8 ?$ e o
1 |2 k$ r- S' @$ L
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.& }2 l* i' Y$ g4 R/ Q4 Q6 \. u
5 {. L; V" I& p6 S3 z, x! q% {6 UThen search for the following content in HwOption.cpp ! A- C j1 K. W7 }
2 ?% H* o' e# D" `7 m9 Y o, z- R: x8 F1 K! v3 e' d
if (scan.Token == _T ("ip"))% W* D# T Y7 I
{. k2 l6 Q. L% ^2 ~! A3 g. R
scan.GetTokenEx ();4 y$ r' T, u, O+ t
strcpy (m_IPAddress scan.Token);8 j: s; r4 L# v4 `' ]* v
}
5 [" I' \7 R7 J% F3 T: C: {7 Band turn it into this:
% {2 b: N9 H7 O. P l5 bQuote:7 y; P3 p9 @/ }4 m
if (scan.Token == _T ("ip"))& ~% _7 ^ C, b8 k' f: x6 k
{
: q8 V! B! d% ~# m( b/ / Scan.GetTokenEx ();
9 ]1 ~, y2 P* C5 `4 O/ / Strcpy (m_IPAddress, scan.Token);% [7 O$ G+ w1 r6 e6 R
}
) H8 B* b8 s2 Y) g6 S5 g5 |5 ^; TAnd you created the solution.( R, j+ m% i$ p( g
, G. ^$ D, ^& j* ?# d8 J
( T2 K$ `% ^- p: [3 p# [
Then read the Neuz not the IP from the INI anymore. even if put in it
: r0 Y( z, A5 C% Z- s( f1 Z h" C7 k' c5 ~6 t4 Q
Max skill's : d6 _( g% _$ C" _% R. t6 g
7 R0 r* U# a4 l* H" [0 p" K( hAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc
' L% R. \2 B, v( U
9 n y/ z- P5 _' ~; q$ Z4 B6 GWith the TUT can provide the remedy it3 H, G) \2 A+ e* e
- g# ~& \* A5 o" ]8 U
# 1 opens the file SkillInfluence.h
5 n* f$ _: {6 z' c) S" \ E3 r# 2 Search
2 i. P9 S0 `! Q3 ~6 Y* q% GCode:
3 L/ p' m; R. r7 T- V5 p. k8 i/ x# n" q% I
# Define MAX_SKILLBUFF_COUNT 14% \& v& ^0 a: `0 G6 d/ ~+ E8 y
9 L- y& j# E: Y# @& M. q8 e5 F# 3 Change the 14 to your number (eg 21) and save it from
8 I8 h& m, P' T5 C# 4 compilation and ready# p `+ l# O' T* `7 H* ?* K0 m
3 P/ g8 r6 C/ T9 L8 L8 c% X
( b( @1 M$ I1 w# O+ ~
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:! i/ ~3 D9 p. p- Q
; u, P* T, ?) d( s' M& D" fdennisdra" P8 ]- Z) H. C( @ }3 N: i1 C
.Crasy
; ~: D2 ^8 l' I# Y+ w©ross
% W; K3 f; y; l) tSedrika
; R% W: p! M& S z9 d
5 w/ z* ]) J" N/ }+ g) Qeverything 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 a7 R0 Q+ k. @2 {1 R$ x" \% R
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
9 o& I% c8 h6 Z
/ }8 o" s5 ~8 u/ q* C! B+ P& o, H! i" M/ P2 X% r( b
Update 1: how to turn off "Profiler" in worldserver.exe
" i/ _' Y9 {. a* y; V/ u# }/ r' c
; Y) ~4 n9 N" m" jin VersionCommon.h of Worldserver Solution$ c- b1 \, f5 M4 c( L' _1 Q* S
Look for
0 Y! U+ x6 s8 d9 E" L& T% p5 I# K
% @9 I9 ]) ^- h#define __PROFILE_RUN
; V7 c/ B/ q% \/ K; i
" [7 \7 P& R" [comment it or simply
( y. J, d3 W! X( L5 I
, P: i7 f! ~8 b( v//#define __PROFILE_RUN 1 \) N9 i* M7 u0 J/ \5 W# T
" a$ D) O }- ?: M( [% F3 U/ A
" }$ Y: L( S P8 G
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投寄。谢谢。我添加更多的很快如果你有病加太
; C6 T8 A T1 D2 i. [# m |