|
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 o: _8 H: A6 J2 jchange level without Rebirth
/ u# y6 r( x0 ^# ]" S' ]2 [+ _) c8 `2 Q/ @3 ?
Now, let us begin.
5 e3 b- o4 t. b) s7 |( K; S$ |- h; R1 ]8 T& @8 G2 X
Requirements:
5 {: t' x9 h4 B$ sSource- B6 l; Z7 r( _& D, N% V
Notepad / Editor9 o$ s1 X4 R# [* l; E( f: K' u
% E; i0 d# L' k4 _2 o/ / Tips by Sedrika
# |7 g3 f7 |; o* A$ c4 x( D
, c8 C9 Y9 Z4 w! }" {# H+ j/ v) S& rIt is up to you how you do it ^ ^6 o8 y9 f1 D7 C# I& v( p2 P
: Y! N6 B. s( Q
Go into your source folder and open the definejob.h
" {5 u0 B ]- w- HSearch there for:8 _5 d1 F% I6 I; u k& D1 Z( Q
4 i% O( V& R' t! a% r S#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
! ^" q1 G( j8 o) @% ]0 X4 `+ A" C#define MAX_LEGEND_LEVEL 1293 E* P: y, o" J+ G
#define MAX_MONSTER_LEVEL 160. o2 r# R3 x. g$ N
#else // 15Â÷ è÷¾î·Î ·1o§è®àå2 j* L! c( S4 g$ U, B6 s0 W+ ~+ r
#define MAX_LEGEND_LEVEL 1214 D( _$ P2 }' x; ]- H3 p
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå 9 y' N/ a2 V+ C0 ~* U
! ]% l0 v+ S2 K8 O; r7 j/ q3 i
4 Y) [$ } N H* \* [' ]8 z5 y
Red: Player Max. Level
9 I3 N; \1 Q/ }2 j# rGreen: Monster Max. Level
, v! q7 `3 M6 a/ \2 G' R+ B2 I) B* a- c Q1 J8 U
These changes as simple as you want.
! W; r; X" R1 l/ J8 P" u
! u; y3 n) E. m) E+ vThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.! g, `1 A- v7 [
! D7 }5 Q: L9 H G6 y* d
Part 1 of blocking CE & a8 w% O; ~3 {9 a+ k' C" g
+ p% s j) p7 T3 h% qIn this tutorial I will show you how to change the Head of Mark flyff./ b$ y) ]: R' G/ A6 w
The current Head Mark is well known, 5E, which results as a string ('^').
, m. k0 b* ~8 R1 ]3 ?4 j# d# w$ o% {( _; i7 w% K" Q% C# |) [
For this we go to the World (Project) and looking at the Buffer.h after thistext' \1 c' ~1 _) \ k( m
Quote:5 I6 K5 @5 B. n0 u; F$ o' e- j
# Define HEADER MARK '^' / / Normal messageheader
0 ]2 m" D! n, |3 D# Define SYSHEADERMARK '%' / / System message header
0 F w: ^) F. ^- b3 {What the Sysheadmark is looking for is not even the top 5E.' v! i% f0 m; [; o, E9 U. }9 i
Change this and it makes the CE Not work on server.3 j) N3 ^% y) O# S8 ^9 M
8 R- K, v0 Q) A! T% o) I
Then Tom's anti-hack is no longer useful.
4 Q' A' ^+ g1 j' C
- o! a; [4 e6 ?/ e7 Q. KLG Sedrika Part 2 of blocking CE
# | o0 ` l. H( _# Z' f |! x
" p8 p- `+ |! S( `2 ^8 f. S5 \% xIn 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. : m' d& z( }( j6 f+ A: h+ p3 |
What does this have an advantage?
1 v1 r" d; n% l, f* c/ Q$ ?, pThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself G I. N! e t N3 V, q
]1 I9 \& W" J% F* q8 M: j! V
' y/ ]' j9 _# n4 F: p- L; C
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
0 c/ S$ R8 Z- R- x% w- n
6 F0 M% e* q" g9 hThen search for the following content in HwOption.cpp 0 O% I0 q u5 b( l; `+ {
. R/ Z8 P) O V- D3 A% f s2 b3 ^" c
if (scan.Token == _T ("ip"))
4 ?; F/ v a2 u$ ?3 O& J{
9 L3 b- Y+ e6 B6 W" l6 uscan.GetTokenEx ();
! Q" a$ m1 y6 e5 o, @* pstrcpy (m_IPAddress scan.Token);
' Q% U7 S' B' U% o, w}% |- \# Y: Z& h7 D+ ^! b3 `
and turn it into this:1 y$ {0 c7 l/ e( [! ^
Quote:
' ]5 L3 A: e: L+ Rif (scan.Token == _T ("ip"))5 m9 W7 `* T: I0 h; ~ U0 B
{
: a3 R; b( G: h/ y" ]/ / Scan.GetTokenEx ();1 r. p/ I, w' X6 {2 w1 K/ t0 U
/ / Strcpy (m_IPAddress, scan.Token);
- a1 ]% a. f, e/ ^; Z0 p7 a V2 U}* C# s% [& o/ L% A
And you created the solution.) b. [1 e, @8 Y/ W- u: s
) ~& L3 E, l; ]3 x6 g; X- f5 ?
) ^! i! {! r4 Z! U3 E
Then read the Neuz not the IP from the INI anymore. even if put in it
, I0 W1 |% r/ Q( ]9 Z! z' y$ H( {6 t$ M9 R$ Q- J& P# j/ |. h
Max skill's
$ w5 k+ W) L Q) j! c2 e9 E- \; E; b# T$ I4 B
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. e. B4 Q. Q% ~
. F3 Z9 `2 k/ SWith the TUT can provide the remedy it
$ W' l1 g6 Q$ G& p. ^
3 H2 ?1 J0 \8 _/ W# 1 opens the file SkillInfluence.h3 v! s1 L Q+ d0 L- g) {/ s3 m- g, e
# 2 Search
& ]: q, z) c% H- q( TCode:- F- S) U# {; f6 @7 y) {+ c
9 {3 h$ E6 V. D) F5 I4 D# Define MAX_SKILLBUFF_COUNT 14
9 T% I4 i( ?9 I+ m$ y0 J$ ^
# M) b/ d& V! F# 3 Change the 14 to your number (eg 21) and save it from
2 M0 x$ H/ K9 v- ~9 {% E8 K9 _9 ~- J# 4 compilation and ready. C5 Q; C! F3 p/ y+ u
' i7 ]: r* C. k" t6 o
1 H+ _* a" h4 g3 f' c! aI 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:
" T! C) W2 |9 B# R( S( ^4 O) t- L/ N; w8 S& H0 }
dennisdra. ^4 @# I$ N) j4 g$ G$ e$ ~$ N" ~
.Crasy$ I; n+ B6 ~" v* G- J
©ross
5 d9 Q0 n0 S9 v1 kSedrika& V5 m; d, N- W" v# E/ X
* X! i, w* }, V
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!
, Z/ a" x3 H' x1 \7 C
. E+ K3 o: u- Y% E3 v. n& H- _/ cP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less( X q: g+ k& \ ^( O( t
, j# M6 g \3 D4 `
3 _, v7 a1 L% q6 S' n7 k) XUpdate 1:
how to turn off "Profiler" in worldserver.exe U+ a, t; @& \5 m
' ?) w; d @2 y5 L
! ]+ ?$ d0 p9 W& Min VersionCommon.h of Worldserver Solution' e5 u& D6 m" m/ H, x( ~5 n
Look for
9 z; I- Q5 ]% {. e
6 J- W: @. X5 a9 }6 f#define __PROFILE_RUN
- B, I1 U0 z8 {4 S* B3 Y
v4 |/ Q/ y. a( _comment it or simply; {+ ^1 B' |! b: m$ K$ {/ }
& c- a7 p5 p8 P; r. c9 K
//#define __PROFILE_RUN , l) V) ?0 g/ r8 d: ?
, q1 _' M$ i( I8 C P
& B, [/ F, l+ h G7 ~
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投寄。谢谢。我添加更多的很快如果你有病加太
+ r( s, v* C5 r$ @, X |