|
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
/ R9 h, F" N4 f. x2 Ichange level without Rebirth
+ u$ H3 ?$ J7 V0 J4 s
7 A6 ~1 H$ a3 O, d: CNow, let us begin.
8 x# A7 `4 ^. D# C* M" r" o6 K2 Q9 P8 K1 l0 c! l
Requirements:
2 t' f- A* ~. Q- |% LSource q: F- U: P! _/ O1 c7 B
Notepad / Editor
; S3 V3 M) P3 Q1 m6 P0 o Q
, ^. g& g% Y4 x1 `, ^3 z; T8 a/ / Tips by Sedrika1 h, t5 ^4 H$ y0 K
, a3 m# l W. H. G- \8 Z
It is up to you how you do it ^ ^
, S9 `2 i0 x" n5 A+ u- u! j) c1 V6 s! S1 A+ P
Go into your source folder and open the definejob.h
) V( O* o1 x& H( w- R4 ASearch there for:
* {' O0 r4 {; f, w& ^" a) c! F$ W3 Q# J2 y
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå# b4 r @6 q2 p7 v
#define MAX_LEGEND_LEVEL 129 g2 e* i% y! v- L" A; R( a
#define MAX_MONSTER_LEVEL 160
) n! J. W: a. p z7 j5 y#else // 15Â÷ è÷¾î·Î ·1o§è®àå. c7 C' @3 R b9 H2 @& Y( g7 D
#define MAX_LEGEND_LEVEL 121
$ _2 l! u1 i3 D% ^2 k0 C* \/ R F#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
/ W! ^; i Q a. D$ O! Q; s
+ B: p1 Z# i' g/ s
3 t9 p& y8 W( v5 @2 A: WRed: Player Max. Level6 b9 \9 E' L7 h) ?
Green: Monster Max. Level
- {" T! x' ?9 L, V
9 @% S4 E+ M2 H8 }& d& _% zThese changes as simple as you want.9 I! h p' l! T; F7 M, K
& C2 i* s# I" w5 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.% Y3 L% E" d$ q3 n1 q: K/ \
# [. e/ r0 m6 R0 z
Part 1 of blocking CE
4 ^2 H% K/ a9 S6 O' f; {
6 j/ F$ K# N0 g6 X$ A: m& vIn this tutorial I will show you how to change the Head of Mark flyff., C/ N& X$ K: O9 P6 X1 F
The current Head Mark is well known, 5E, which results as a string ('^').
0 }1 \, d& v& P+ Q' ^# F% J$ T/ k8 \+ M: ^, N5 Y
For this we go to the World (Project) and looking at the Buffer.h after thistext
& P% @* s9 p8 r4 y% g5 b6 O0 c. u4 ^Quote:
9 }3 e0 \2 N- y# Define HEADER MARK '^' / / Normal messageheader
2 D% @: L/ y: r Z# Define SYSHEADERMARK '%' / / System message header: Z8 B! k0 s( e; I; `+ B: x& |
What the Sysheadmark is looking for is not even the top 5E.
* B% X- p$ q( ?4 m, C9 tChange this and it makes the CE Not work on server." k$ n; U# ^* j6 q2 w3 i' p" p
, P* W1 u0 s8 u' NThen Tom's anti-hack is no longer useful.8 _* @( y# a4 ? A/ A f. N
% I! _$ f$ A5 Q; p% e8 J5 i# w9 }5 h
LG Sedrika
Part 2 of blocking CE 8 a3 K" F O# Z; v4 v: \
% p+ i) b% ^$ m- N: o+ l# l) M
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.
% U5 t8 w' R, i) v9 DWhat does this have an advantage?- f0 r4 l& [! P4 n
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 9 S4 v/ G* c4 K: m+ z0 s \4 F
& a0 q- L0 Q: f2 }, {* `
+ {. m- _0 Y! n$ p z z3 i: a& IFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
% v, E. R! \8 K7 L5 t( n
: }9 p$ I2 Y$ h' d9 fThen search for the following content in HwOption.cpp
; f8 b+ ?2 C9 q4 C+ g' n2 v4 G& G" N9 }, C
5 `8 R2 X' c8 D" `. Y2 E4 iif (scan.Token == _T ("ip"))
! t0 i( a+ x6 m/ t. o6 b{8 f0 q( K4 f& O
scan.GetTokenEx ();) ]* }3 l+ p3 O. J7 N" i0 G
strcpy (m_IPAddress scan.Token);
7 B- _/ Z: l. U3 r1 J0 X9 r}
! `. k q, K5 ^and turn it into this:! c a. [( T$ @0 i
Quote:" o/ U& i$ v3 ^/ [' O8 C0 g
if (scan.Token == _T ("ip"))
& f7 T" X! g8 O4 y9 g7 S) q m{
5 ~8 K- F& j, H" @/ / Scan.GetTokenEx ();$ M* B0 x2 w( T7 \" S9 l, r
/ / Strcpy (m_IPAddress, scan.Token);
4 [8 [1 G' \' a: v* P}
7 V7 G: T) S: n, ]1 N/ G7 LAnd you created the solution.2 U, U, {: I9 k- X4 P+ U
/ s# ^$ e" Y$ L* J
, T7 P4 D0 S/ n) Z7 V
Then read the Neuz not the IP from the INI anymore. even if put in it+ V4 @, Q, H, E! ~
2 p* x8 t. Z/ |- B4 u+ c" E Max skill's
+ x- P# Y R) R
3 M1 s1 {# _( {; XAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc $ h; J5 p% `1 O
. @+ d9 B* i8 X3 s: p
With the TUT can provide the remedy it# ]# p, _& X9 Z3 ]1 E' o
$ ~9 m* _: F" Z4 t# 1 opens the file SkillInfluence.h% L& B" W# \) X0 g m6 H1 y- K
# 2 Search3 O) Q9 k3 L U3 u
Code:
) u7 y: b$ A5 U, z- ]1 \0 k; d$ `5 C, A5 q# O7 m
# Define MAX_SKILLBUFF_COUNT 14
, p) z( W3 x! d" X- S% t
- j6 M1 @- b4 z# 3 Change the 14 to your number (eg 21) and save it from1 O* c( `9 D7 ~4 r
# 4 compilation and ready" U ]' o3 @0 x, T$ w4 Q
, g+ r2 J& w! P, N0 N9 g
+ a, a' H) W9 J U; B. d w! X: [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:# p$ h/ D6 q: F6 k+ M e4 e$ D
) J% ]# |" s1 {
dennisdra4 Y( n, b% v* T/ {7 C- _: w D7 d, P
.Crasy
+ ?! h3 i" j5 }' H# e3 H©ross
2 H2 ^$ X# H* r! X+ vSedrika" O* p% U0 O* W% ?- T+ D* ]+ B
. ~7 F- I2 K8 _& W6 \
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!
$ b1 ^2 l* Z9 U8 ?- F
7 J% n# j7 [; uP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less' Z# w/ y X7 `9 K; m1 m
& D; R) l3 S% Q/ ] a- z% _3 Q5 E0 R8 H( K
Update 1:
how to turn off "Profiler" in worldserver.exe 9 p# G# p: B* O4 i! A# c
9 f0 L X, B( z$ E" O- e4 n
1 Y- }6 n: k) @$ h2 V8 `. Z, ein VersionCommon.h of Worldserver Solution
3 l. o# z C uLook for: V+ Z/ C0 ]) @6 t- D
& d/ ?+ U* K: A+ D( N3 F
#define __PROFILE_RUN2 D4 s z8 g2 ~
# I; @0 M5 x* \comment it or simply |" h8 a# K! ~; w' l' t
! J6 R+ ~- h$ T9 N) V, Z9 H//#define __PROFILE_RUN 7 g4 [( q ^3 J- _" k8 i; _
( P- T- M. {0 c7 t9 @
& g2 S' O: z5 l1 x. n; O
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投寄。谢谢。我添加更多的很快如果你有病加太
; x+ i. v! _7 F. F) F4 j |