|
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
8 {' w1 [& {" ]change level without Rebirth
: d& O, F9 V2 X: m* {3 Y7 s0 X9 K/ P/ ?& B$ r; e
Now, let us begin.
- v! a/ L, `2 R' K* G4 r
% S3 o1 m4 O4 g) G; r4 wRequirements:
; H9 r/ }" [! E# b% xSource! h" _, U+ `1 Q4 y9 |
Notepad / Editor
6 e* N6 y+ U; K$ p- i' i
) f# @0 U" `' F3 S/ / Tips by Sedrika
+ A- @2 m9 I2 n9 d( f) j1 m7 j$ Y3 k9 ~
, C1 W% U# a# {0 T8 U$ \3 b' KIt is up to you how you do it ^ ^
! ~' {6 t% |' Y2 v+ C( A) K+ c
! q! k1 k6 n, N( W" W: }Go into your source folder and open the definejob.h
! X4 W" R; y! I* b! @: ESearch there for:! h4 ^9 z& f/ w& d4 q/ A1 t: A$ r& Y0 h
: W& m6 |# U: T6 Z! [# {. P
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå9 y' p! ^8 Y" c i# V) K, C7 Z
#define MAX_LEGEND_LEVEL 129
. }* i$ w5 M* I4 U1 u V4 d#define MAX_MONSTER_LEVEL 160
( m6 D7 c ?/ u0 [$ W' |#else // 15Â÷ è÷¾î·Î ·1o§è®àå# s; F* a4 x# P6 V( c
#define MAX_LEGEND_LEVEL 1217 H( W9 i9 M- y' w8 Z
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
5 N) ~ k& n1 Z: x+ X' C7 X' t3 w/ s- x; R/ v
# R! ^! E* `; ?
Red: Player Max. Level
% a$ ?9 L: g% a) Z3 o9 CGreen: Monster Max. Level" S( O( e j" y6 U& ~9 l
6 i+ x- ^4 x2 B8 s. `! I) Z. I& zThese changes as simple as you want.
0 B; k8 ^, W$ V
, y6 c9 ]6 c6 p$ l! R$ a- pThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
, [$ M$ b7 ]; H, g) ^! a* d" ^2 W* H5 Z5 v8 |' f
Part 1 of blocking CE
- f( |" \1 u2 U! b: \; {0 B9 K( x5 O- o. m" I
In this tutorial I will show you how to change the Head of Mark flyff.% Y. ~2 _% j. D" D7 u' A8 z
The current Head Mark is well known, 5E, which results as a string ('^').
1 \6 Z6 |4 J4 h, U( c
/ [/ O/ o( n; u: N! S4 GFor this we go to the World (Project) and looking at the Buffer.h after thistext
9 d8 n1 X! p* S) R! eQuote:
9 U m: v5 i0 X. Y2 C# Define HEADER MARK '^' / / Normal messageheader
# ?2 b, [! O ^3 @) q, u1 Y# Define SYSHEADERMARK '%' / / System message header+ z/ O7 x5 H i# g2 _
What the Sysheadmark is looking for is not even the top 5E.
( R3 S! ~+ ~! q4 E+ IChange this and it makes the CE Not work on server.$ \# J8 Z" c p. c1 ]
6 |1 J% K+ x9 T3 D) e
Then Tom's anti-hack is no longer useful.2 p9 H3 ?# X- }% n
' ~5 Y& S$ h# ^
LG Sedrika
Part 2 of blocking CE " ~8 G/ X' O7 D* b
! Y6 V; P& X- \9 \! V2 ]
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. ; Z$ N0 X+ ^) x$ K& u
What does this have an advantage?
1 N2 ^& u4 J& j) O, \The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
$ U) @: y: _! A& I* P! e8 l8 {/ {/ O) p3 z! g( D3 b
' \+ y* E& w( H8 G: ?1 {1 T. H+ X# `
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
9 q8 g8 s, [8 u9 ^- ~ G3 \8 f4 m
3 X6 d. U; }( T4 g8 yThen search for the following content in HwOption.cpp 1 Z8 G! P1 W5 v* ~' C3 M) X: p e' A0 t
1 ^; g( x# q- {2 y- H2 ^, Y, h I7 i- P
if (scan.Token == _T ("ip"))$ {: z5 d3 f% w. j1 `
{
: M) i2 y5 p: u: hscan.GetTokenEx ();4 W3 K" s6 \7 D! B0 l# F0 e2 g
strcpy (m_IPAddress scan.Token);
8 R3 H! u/ W; X8 E" A4 O; E' V}
/ o* z$ }% \. Q# a# h1 W% i2 r* C# gand turn it into this:% X0 Z/ S5 y" r5 n
Quote:
1 u; l, U" j) b B1 Mif (scan.Token == _T ("ip"))
& a8 w, z$ w" \' z& ]7 |! J% ?{
# I3 X" Y9 x( ^/ V9 ^5 |/ / Scan.GetTokenEx ();
3 ?' B$ e8 L6 ~( u& P" E% J% D; g0 ?/ / Strcpy (m_IPAddress, scan.Token);
$ a% ^7 j+ n9 }( V/ n( ^: m}
, P. U, M7 ]$ V( G: Y$ VAnd you created the solution.
" \1 l& O2 w) Z! [% c1 ?
2 m) p# B# ^% G" K4 }; n8 z) F" l8 H+ f$ s/ w9 k3 Y
Then read the Neuz not the IP from the INI anymore. even if put in it3 r0 b z7 N8 p( x1 ?
3 `- a0 w3 o5 V( z1 [/ H6 l$ h Max skill's 2 r( [- M' i3 d$ h& @4 v" [ m5 j
7 U! y# i# D: }" d& h6 p( }
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 ) Y! S, r& O4 k) J2 |1 _% W, R
( [% f6 R- F; @- w* B f. zWith the TUT can provide the remedy it
4 y/ f6 P8 R3 |& u0 E; a
9 H/ w6 [* k/ U) Y; G# 1 opens the file SkillInfluence.h
% ?- Z8 v/ _* G9 V# 2 Search
! g5 d4 s4 }+ i; d1 q3 ~% Q$ t* uCode: z& [* K# O; j$ Y9 U0 A6 f
( Q- I# d# j, l/ C& ?5 ~
# Define MAX_SKILLBUFF_COUNT 14
! f0 e# d7 U5 \2 z% c# o9 {% X3 O$ b' N0 Y4 B i9 y, ?1 s1 J" ?4 C
# 3 Change the 14 to your number (eg 21) and save it from2 n" c6 Y2 q) G
# 4 compilation and ready
% V* q2 @" j! x7 i; a' p E. c$ ?- U; Y5 \, {' t
7 }5 I+ t! h( }) z; c
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:
9 e6 k Z( T* J2 G: d
2 _& e( d, I1 E, n* d. rdennisdra, o/ v! _: q# y1 O5 L7 V
.Crasy9 U; B* _" j B4 s- M# i
©ross
+ }* T+ ]% |' A) ?) cSedrika
, B2 A& T2 h( L2 q) @
8 D" l* e2 m2 r; I+ Heverything 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! 5 I7 E, z$ z$ Y7 t0 a
# H& G, c1 W( { [- ~! ?P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less3 x8 X0 F- u$ h! x( e
% Y( }* L0 l% m
* J3 Z5 v0 I1 W6 O/ \+ ~- T' EUpdate 1: how to turn off "Profiler" in worldserver.exe
3 v' o2 r1 e# H6 k) Z2 K
7 J) X6 h# k4 |8 q8 Q% ?% j: I# `' V; a+ i
in VersionCommon.h of Worldserver Solution
" M- [: ?% ~+ V& \2 D8 M% lLook for
8 C; E4 F( }) }8 M; Z
7 A! X+ ]3 I" ~5 d* e6 A+ g#define __PROFILE_RUN+ M( q; @$ ^0 g& e" p! I4 B
9 p6 a) S3 p$ J5 K8 x. o/ Dcomment it or simply
1 u3 S. k5 q; j" L6 T5 i
, {3 y( H" u- Q+ ^//#define __PROFILE_RUN . U2 q" C$ n8 A" k/ z7 M
1 e2 b1 y/ s, q Y& u9 y5 J% }
]6 u0 l2 p4 V' e( t# Lcredits 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投寄。谢谢。我添加更多的很快如果你有病加太
) ?' G4 y3 ~/ k% I( c9 y+ J |