|
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 6 c8 @/ a8 j; T; N$ _
change level without Rebirth
& t3 q4 C2 o0 H7 n9 g. m3 p; d- Y
; s9 Y+ ^2 E6 N5 V, U/ TNow, let us begin.+ Y- z% P8 H! h
. L9 L- G' i7 j
Requirements:
2 x* e" D; N- j1 hSource9 i. x" R7 q) [( [' | P& M2 r# N0 R6 z
Notepad / Editor- q% Q3 Y( p, @7 d
& R+ {! K! T0 x/ a" y9 I, r
/ / Tips by Sedrika. L5 i A6 y! F+ A8 I
+ n, b3 ~1 p* I5 v" MIt is up to you how you do it ^ ^
% B4 I: }8 q# [1 P/ ?% y( @ o6 U( D( n v/ ]4 Q! E$ Z$ Y
Go into your source folder and open the definejob.h
$ H6 z& _) U8 `, x0 I% [Search there for: v3 y' _% {! o$ A* a }& t
5 x1 y! b6 f; `' h; x+ Q; g
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå5 S i, P; ~3 a: s0 U) Y
#define MAX_LEGEND_LEVEL 129
. ]$ b& }6 `6 @7 E8 j' y#define MAX_MONSTER_LEVEL 160
& v: i( N4 }1 k. W#else // 15Â÷ è÷¾î·Î ·1o§è®àå# Q7 J0 P) I. B. X! o+ Y
#define MAX_LEGEND_LEVEL 121& H1 I/ ?8 ]1 T# Q& y; O7 b
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
! L& X5 W) \4 |3 x! r. R* S. u+ {
+ f4 @8 y' D: d8 ^1 ^; eRed: Player Max. Level) ?) N" M8 v' z. P2 O- `
Green: Monster Max. Level
5 @# L* H% r) y3 Z4 T- t' d, |
# t+ q: C4 O5 H% w Z0 W' lThese changes as simple as you want.
/ B, F ?% J& x# H" K
2 R- n" Z, S& _Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.0 c+ x7 k6 C8 ^4 r' q! @
3 f. m/ l5 v& E6 h! q* e Part 1 of blocking CE 0 ^) q7 l$ M7 C: W: S/ G7 E, e) z
( W7 S# C. G7 U* t. T' H
In this tutorial I will show you how to change the Head of Mark flyff.
) Z" u; R$ V; U9 yThe current Head Mark is well known, 5E, which results as a string ('^').' ^( ~5 S8 B! `& y
7 o6 u: ], T+ F! PFor this we go to the World (Project) and looking at the Buffer.h after thistext
. ]+ B2 M* x B8 q, W/ rQuote:
# ]6 [& G, X- `5 H# Define HEADER MARK '^' / / Normal messageheader
) \7 m O' V& r# Define SYSHEADERMARK '%' / / System message header
! ` }+ E0 s' @: R% AWhat the Sysheadmark is looking for is not even the top 5E.# B" d# v8 V4 H0 M
Change this and it makes the CE Not work on server.- T; F; v; T- w9 W6 V
% p/ G8 f3 o9 l% `$ n* \6 }Then Tom's anti-hack is no longer useful., H- a$ A- k0 S% }" o
- ?4 V# c0 A4 Y1 i
LG Sedrika Part 2 of blocking CE 0 b; x7 t* _1 @( B' r- T
4 {9 @% Z$ H0 v" p5 h/ \" R; yIn 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.
; Q8 E0 E. `: R: s! s$ e* L1 mWhat does this have an advantage?* f6 x( H6 F& M6 `8 z
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
- b3 v! B3 h/ H' N5 U. ?7 y; a' @& }3 z. d
$ ?3 {) m9 i R5 ]8 R% tFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.2 H$ T' i9 Y z7 k
* d% O$ k6 x3 P
Then search for the following content in HwOption.cpp
% I( }' j; @( T8 T! s: N6 ]: L* l W1 j9 n2 L/ g1 J
* z; U! O& ?& c" w x% E9 j- d( l9 M
if (scan.Token == _T ("ip"))
# m1 y, c+ V% }5 k{5 _6 T1 [6 d1 @& E7 U
scan.GetTokenEx ();
$ V6 R# i5 \( @strcpy (m_IPAddress scan.Token);
* y% r! t' R1 L" e M. O: Z5 Q/ ]}" w7 z3 g4 X' z' r
and turn it into this:
7 ^$ I9 s7 O. d% }3 j. v9 s/ i$ |Quote:. b; |/ d" S2 M
if (scan.Token == _T ("ip"))5 R; v6 u+ B+ A
{
, o5 v3 C0 c7 `. _8 M' _/ / Scan.GetTokenEx ();
# U& l9 h- ]) R V, G/ / Strcpy (m_IPAddress, scan.Token);: g' e* W f. y8 l; ~; }
}3 I% ?( c5 c2 c- C) m
And you created the solution.% k* u4 U0 n3 }. `
- S, C; r- t7 z& G2 p/ I; b# u
- `# v; s9 j6 K& ?+ sThen read the Neuz not the IP from the INI anymore. even if put in it
. H" K% i/ q! y7 z
, s) X# I9 N. d" ^. B# B8 L Max skill's
* \. b, I$ l p% o4 Y7 X; P! V. ]; E
/ M% ^5 z- `! {' S% p- I* V+ ~. w2 uAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc
3 r5 ]* E. N0 Q2 ~6 L; o
8 g. u( w) |- _With the TUT can provide the remedy it' L$ i' H& s- N
) I7 h" E& z3 R" u0 t
# 1 opens the file SkillInfluence.h; { H$ @, Y) s8 V5 y2 F4 C/ }, B
# 2 Search
0 R7 G; q+ o) D+ w9 tCode:9 r. l0 ^) n( y8 w
( }0 x& V- |6 M8 c0 c" z# Define MAX_SKILLBUFF_COUNT 14, U) Q9 `9 @, |# i
9 V- u, a" L( ^# 3 Change the 14 to your number (eg 21) and save it from* u: Z' v J& T) \
# 4 compilation and ready& p2 K B! u% n& f
* t* U2 }1 {5 r
9 }% ^9 g- x8 X) sI 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:
% A$ t( n3 a9 U/ ^6 p3 g- ~0 h* l. w1 n: ~( P& R3 d
dennisdra
( @/ q. ~8 z* M0 C.Crasy# R" Q$ A6 r. z+ F" s
©ross& a! z2 \( `# E: n2 C) I3 U
Sedrika
) r4 J( L* s" D' k! J }
6 Z# c$ n' i2 m' s0 {, 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!
3 |; N' i, O" r, J6 H7 G2 s9 f% H' ^5 u" A
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less6 c4 ^, Y% A# G7 b& o& X6 S7 }
- N. e( |$ h1 T* R
2 r% ~/ P6 r( g2 r n w
Update 1:
how to turn off "Profiler" in worldserver.exe
3 H) B# v: ^+ Z# z' B: i
$ f& I, _) K0 ^" z; u" P( `
8 _, W" z* @5 F' y9 x* Yin VersionCommon.h of Worldserver Solution
3 R5 l7 ^* `! b' v# O2 ULook for
. ^0 I! v3 k" X0 m& H- @/ }; k5 e# L
/ o$ Q& ~+ Y7 Y1 a#define __PROFILE_RUN- q U& v: N3 i
- E6 y$ f; M! \7 [' y4 ]
comment it or simply- e* t& L- r5 q3 d, h2 A/ ~
% P* y) F6 a, L8 r! {6 @) [5 R//#define __PROFILE_RUN
; R" i( W) W* [# |. p# T2 K5 {( \) D
; v- w3 c0 a- B1 Y6 k: v. T( tcredits 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投寄。谢谢。我添加更多的很快如果你有病加太 . a6 h) K% J: n: Z( y
|