|
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
5 ]* ~$ i" h" M, q+ s* [! Gchange level without Rebirth, ]: y0 H6 J/ F- C
/ d. O7 ~: E G# o" o- y; x# o
Now, let us begin.
+ I7 H# Q; |1 v |* t5 u/ J3 i. n* h! V; n' o5 o! G2 E! s( W
Requirements:; g' E# G5 r M, C, Z# z1 Y
Source
. e/ `" h9 p# `/ {Notepad / Editor
4 O" d, g9 T) {3 [0 _
- L; u2 G" r2 V' r+ E/ / Tips by Sedrika
# @2 s7 ?8 m' |! I' O% R( R9 L* P
It is up to you how you do it ^ ^. _( B* b; d! A* b; ^9 @* n
0 B6 [5 z' }1 t8 {2 I1 C& l
Go into your source folder and open the definejob.h
. f3 @4 v* b- | [3 USearch there for:& f2 { ~' }$ M2 M# e5 R, [5 R
# R" e0 e- M+ I2 }& F& |
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
& c1 z" w! @5 G& N7 j, W#define MAX_LEGEND_LEVEL 129
; d) E2 H4 C: F" m#define MAX_MONSTER_LEVEL 160( i. j% c( V# d, w
#else // 15Â÷ è÷¾î·Î ·1o§è®àå, i& T* k# L! {& |8 A
#define MAX_LEGEND_LEVEL 121
' f% }( M W9 g. P& N#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
+ b4 D" ]& @* S) g! \
\% a" d4 {) O3 x' N: @. Q2 l6 `* [& e7 z# S
Red: Player Max. Level4 J E) e" H& k: \
Green: Monster Max. Level1 N# T$ d& y5 `; b7 F9 j4 [
' l. ~5 y+ |0 {9 mThese changes as simple as you want.0 X8 L* d. {1 z6 }& F! a
% e# ~2 C% N; ?5 v: H4 F# zThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.( d. k* a2 Z( r5 }9 m
, w3 O% m+ e9 I7 g4 ^% h# d/ p
Part 1 of blocking CE
& ]6 U4 f0 M( X% g* ^# K
* J' s; q* x* j/ g* j2 a& OIn this tutorial I will show you how to change the Head of Mark flyff.! l: S3 q8 b$ F7 N4 t/ u
The current Head Mark is well known, 5E, which results as a string ('^').5 d$ Y/ |# u8 r+ G1 d. D, L
' i6 @* D( w" ]For this we go to the World (Project) and looking at the Buffer.h after thistext
- z% L& P. c6 A- m6 P! Z: e SQuote:% j( J1 P$ z8 n8 [3 f6 t6 g' u
# Define HEADER MARK '^' / / Normal messageheader! Q! _, Z0 F6 x1 o
# Define SYSHEADERMARK '%' / / System message header
1 D) y0 O. `- C* jWhat the Sysheadmark is looking for is not even the top 5E.. [3 p) _! u7 Y2 k5 x4 G
Change this and it makes the CE Not work on server.
* X& Q/ w# l' r
: N5 [1 R$ W4 k% `! B2 RThen Tom's anti-hack is no longer useful.
l- ]6 u' T# l/ N- g6 i G) S" ^# `8 _
LG Sedrika
Part 2 of blocking CE 7 |9 q: a+ a1 p s
% W/ l9 D9 A- U. p
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. 8 |" C" q5 \9 Y8 Y- l' W
What does this have an advantage?
! L( n! ~( [+ d$ r$ N, T8 Z# _The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
$ J3 u9 t0 D- ]- x6 Y2 J7 n- @4 o% r* @' a
3 A7 o% l g3 UFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.. W! A" y* f" x* B# w8 k
7 k# K8 Z: W J7 r6 e; GThen search for the following content in HwOption.cpp
5 h& M6 X5 M5 f. J4 o( a6 ~: Y+ d: E4 h6 o# T0 u
5 K6 h& k- ]* d% a P. I+ d
if (scan.Token == _T ("ip"))4 e) s* k- g v+ P0 I' v# M
{
- u. y- {7 h2 U5 rscan.GetTokenEx ();
& D% Z7 B* I' |strcpy (m_IPAddress scan.Token);
$ {% r$ }1 o* O: s6 v}
0 U5 Z J( ]$ W- {: tand turn it into this:1 v1 u$ p+ _, K4 q
Quote:1 N* ~3 g3 o' P6 P) w# D
if (scan.Token == _T ("ip"))1 |& `1 Q4 |; l0 O9 N3 o& ]
{. [& D9 p' ?/ M- t9 W
/ / Scan.GetTokenEx ();7 r4 @( c& m: O# a" _2 e
/ / Strcpy (m_IPAddress, scan.Token);0 H' w& b$ N, m4 G; e/ `4 s
}
9 I z8 ?5 Q# X: e5 E% P) VAnd you created the solution.: x1 }' @+ Z9 m
9 L/ U4 j' j% Q& m8 D( d
' `5 j% W9 O; b* \! v
Then read the Neuz not the IP from the INI anymore. even if put in it* `. v" x, d% ~+ S- f4 Z8 ]
. @- Q* e. Z# t5 t: j K( A
Max skill's
" j" x5 w9 |% o3 V* h) N! d2 r2 \7 N9 N9 U; q7 \1 q8 @
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 : G% X2 C4 |# W& h, D% Q8 k
, @2 s# M. D y7 ]2 e0 F
With the TUT can provide the remedy it) d2 ]& b. I$ j, @) p
a7 ~6 o# Q7 F8 y1 ~5 F# 1 opens the file SkillInfluence.h, c! p+ a( ]) P4 M$ N' K" A
# 2 Search3 \% f8 @8 r, R5 i! S- ? X. x9 s* p( q
Code:, d$ N( g3 X6 c2 ?# P
9 y+ K1 R5 m3 s# B
# Define MAX_SKILLBUFF_COUNT 14
) R* k7 \1 i8 c5 H- G7 d6 T" f1 K4 ^4 f! s
# 3 Change the 14 to your number (eg 21) and save it from
0 O. r5 O S6 b% I% V# 4 compilation and ready6 L5 O z# q! }1 Z
2 t$ p4 T) r" P+ [& O7 c7 J9 F. c& |' s- V" S
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:
* D/ o& o4 H; ^7 ]3 I3 \3 a* k' A
dennisdra' L4 m2 q7 D2 W4 V0 }2 s* d
.Crasy
8 V" P+ f1 ^6 \* B7 S. @$ y7 D* J©ross5 f5 ^* O: i$ j0 z
Sedrika
3 N* O6 T; ^) u7 _& i3 S0 ?- r" n: t* @. N
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!
. J6 v2 I" m+ M- ^0 x3 F1 v5 J
( {# V" G9 d/ j1 w7 ?, ?P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less, @' Y; c7 j2 c' M8 J7 A& V
) \+ a& G1 E p9 @
Q( Q5 s$ t9 ]8 @Update 1:
how to turn off "Profiler" in worldserver.exe
; H, t; n& }: o9 x p% v6 \) s I: E& V" |5 ?
1 M0 ^$ i4 Q+ G
in VersionCommon.h of Worldserver Solution- o. D; ?) E6 q9 g+ l7 d- K1 W
Look for
y- u4 w0 e% { W, B6 \" I) P$ r8 G4 p1 [3 P
#define __PROFILE_RUN* m" @5 X" o4 L$ t- l; j6 m" u0 w. X
5 ]: j( _* v$ d6 f. t: v: u) n( Q( Lcomment it or simply1 C+ Z) g; o/ l0 m( K/ P; H- M
7 j; G1 |7 q$ N8 h3 F J//#define __PROFILE_RUN
3 D' U# t" k/ z0 \* k
5 ~" R9 m ?1 F5 F- V8 }3 l
" a6 O/ L+ B! X) n: Jcredits 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投寄。谢谢。我添加更多的很快如果你有病加太
0 X) l9 {6 g( o( h: q# N |