|
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
# `: n% @( n% v: j7 @change level without Rebirth
/ h: B# S- N, s. W8 j; l7 [
4 F% o# K& x( \' I) P$ F' p- HNow, let us begin.& u' U# J2 O5 a( v6 V4 o+ e- i
& M" m0 w- P; b0 L& Z9 l8 u+ V# }
Requirements:
/ w P2 s/ D5 p4 m& G0 ?Source8 [# w: ?2 M1 [, f! _, U% L
Notepad / Editor: W( S) \' ?/ |+ o' l1 e
" ^. v* I8 Y, U2 b! u6 q* g) M/ / Tips by Sedrika/ k. F% V$ c& j" f. ^, V x& h: F3 P3 X
+ A7 g& F8 M$ h2 r2 B$ J8 YIt is up to you how you do it ^ ^7 Y9 P0 K8 k) ?
# e( S1 W% S5 q+ QGo into your source folder and open the definejob.h' @/ S u7 W. K9 l* X6 f1 A
Search there for:
2 B1 h' o' V, I- N. `' B b" q
" f- k; ?. C% `; p( T2 i) b) P#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
7 N T* D+ [$ y5 c$ k' q/ F/ S#define MAX_LEGEND_LEVEL 129
: l. E" o1 d' y7 b+ [#define MAX_MONSTER_LEVEL 160! A& d5 V, x* C H/ a4 K9 S0 t
#else // 15Â÷ è÷¾î·Î ·1o§è®àå( f/ e- o( _3 z3 f0 J+ i4 b
#define MAX_LEGEND_LEVEL 121
' p* e& s% {* R0 \4 G#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
, [" W* d* D2 f9 }) Q' N4 n
+ ^, G7 I! ]6 I, O9 ?, ]2 r0 J
4 |9 M% D9 ^% |4 ARed: Player Max. Level6 F% v) m; H4 ^9 v& h0 l/ j$ v
Green: Monster Max. Level
. W* w0 D" \7 z$ o' L% c5 S1 A' ]$ X' c. c1 {( _# s' t
These changes as simple as you want.
) @; T" E, d4 Z P1 q5 \
) ?( I: E% B' v( Z% FThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
# |4 p' I: P) c5 u f$ H' B' `% w$ |, _2 e; |
Part 1 of blocking CE 3 _4 u: b9 {5 f: P3 J
, {5 I& q# t% r" S F- y
In this tutorial I will show you how to change the Head of Mark flyff.' }5 Y$ V4 Q# k2 |: T3 N
The current Head Mark is well known, 5E, which results as a string ('^').5 E# F) `9 T; s& v
) } ^/ o; N/ p7 _
For this we go to the World (Project) and looking at the Buffer.h after thistext
! |/ D4 C9 h2 NQuote:" M1 f" c9 d6 o$ g
# Define HEADER MARK '^' / / Normal messageheader
m/ W( E- i' y/ h& W" D E) g# Define SYSHEADERMARK '%' / / System message header
( W0 R! c2 x/ S2 z7 AWhat the Sysheadmark is looking for is not even the top 5E.
& I9 d4 E! s W/ z: Z1 D# K. WChange this and it makes the CE Not work on server.0 j& p" i f( S
# V5 J4 y: A. k- ~
Then Tom's anti-hack is no longer useful.
7 g. ?& M& d( ?0 w8 J5 ?* Z& r [* y
LG Sedrika Part 2 of blocking CE
- O( c8 a6 Z; ^2 I2 N- E# R% w9 r3 B- v, V' F7 Y: O! k+ F
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.
# \' [: U; n c7 _3 `- GWhat does this have an advantage?( Z; @9 x* o7 g/ U( |! h
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself ' ~6 R }0 l* [7 [; W$ }9 P
1 J) x. E% O- f( ~# R
$ S+ y$ `3 O( @; o' G0 ~First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
+ S* m. g1 [7 A# ^
f6 ]- a6 `( w2 X' H5 CThen search for the following content in HwOption.cpp ) P& O* v3 m2 y( c1 l% ?
. ?) f5 i2 T; P8 o
; i( |6 _" }& }: q1 @; ?
if (scan.Token == _T ("ip")) f, U& P* x$ W! ^
{
; g; M9 N4 G% A, d2 G G: x7 a0 Ascan.GetTokenEx ();. P3 s7 f1 o: v: D, e
strcpy (m_IPAddress scan.Token);4 J8 @ N# V8 Z$ c" `& \
}' Z( _$ S8 T! t- f
and turn it into this:4 h& a2 Q" B7 V1 m1 m$ D
Quote:
) a w9 K" [5 o* X5 ~/ E/ \if (scan.Token == _T ("ip"))( i) }/ P* e' v* H+ Q* n9 Q* n- d
{
3 u7 {* Z6 Z) O4 X. n& h# ]/ / Scan.GetTokenEx ();
% s" w7 [8 C0 I# P! N/ / Strcpy (m_IPAddress, scan.Token);
0 J, ^/ ]2 L% t' e: J: P/ h# f}
, ]7 V; [3 B" R; x' xAnd you created the solution.
3 c5 q$ B1 V& l* Q
6 U4 G- A: p- q0 S, a: A) a6 C; Z; u3 u( H* J$ H
Then read the Neuz not the IP from the INI anymore. even if put in it
, N) j5 O- `& D/ n2 r6 G. @$ Z2 N# V3 Z3 L& f; _
Max skill's 1 ?. S& J8 Y5 T, @ m" p7 ~
$ b2 b; j$ L0 A' l* rAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc % B- F: p& i# M
; e W( a* Z0 Z; Y O' i
With the TUT can provide the remedy it
4 i/ G" |5 C/ o9 p' ?8 \
U8 {. R" n, ]+ X. }& u! f2 S8 z# 1 opens the file SkillInfluence.h
7 X8 x' R% Q. U$ K# 2 Search2 q2 A _6 A1 t+ X, B
Code:
0 k4 O$ \$ y$ J2 P8 ] Z
3 g/ N; M; u. p/ R7 Q. E* F) M# Define MAX_SKILLBUFF_COUNT 14
. h$ G0 Y" G- y+ G" p& G
D2 N l& _+ {* E. ]/ [1 b8 A# y0 r# 3 Change the 14 to your number (eg 21) and save it from
5 B( i1 q! O! U( Y# 4 compilation and ready
) }3 e6 v& A: Y$ V; Q, P: w" ^% x- T, C# X$ R
8 Q. P/ a/ ]0 C. A6 m+ F1 g
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:) U% n# p! n: ~, I9 J; s
; {( v/ u/ d+ V3 L6 jdennisdra
, t) v1 F3 m, V.Crasy
1 w) i8 j( d: d+ \. A©ross
- M( u* d7 O7 ESedrika& {$ p s+ M1 y
4 k: s7 z% g* s5 W
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!
2 `' `/ P7 e- V& Q
% I7 @' g; w; SP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less5 ^; J! U) D/ k+ f# [) s
7 f& D# {8 N6 \. W: W2 D- `
0 ?& r# K, n, c% S) V' q
Update 1: how to turn off "Profiler" in worldserver.exe ' }$ `+ l1 p- I6 ^ L
( R% q% m6 [# q8 T
4 M% n: c- k% z( b \; ~in VersionCommon.h of Worldserver Solution6 R! q4 H% e6 G4 J+ |
Look for5 V9 w) h9 [/ f9 S' A
, {2 v! @$ \0 P/ F+ T
#define __PROFILE_RUN
A+ H" f/ N: F# y. ]- a, @! y S! V. N- t6 L
comment it or simply9 f9 r/ d# `5 y/ W% X6 u [8 t4 I
" w( ]! T% W% J& V" ~4 j! C//#define __PROFILE_RUN
% {+ ~1 a3 K$ [, g1 B. t$ I# b E9 p' A4 X- M A: E
6 k1 p2 w. V( Qcredits 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投寄。谢谢。我添加更多的很快如果你有病加太 + A3 h$ w% k4 q
|