|
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 " U3 f+ O, E( F
change level without Rebirth
+ F/ j8 _2 Y3 L1 X9 E( K. G/ L5 H4 T1 f; _
Now, let us begin.
3 S* v( V& A n+ _" |' {) {* _# V2 u$ |. m& Z, {; |
Requirements:9 }, u! |6 _1 W6 n; M3 N1 o( [
Source
: K' e0 }0 y5 x+ p! }Notepad / Editor7 U1 S1 D. R5 v V3 c
: a) m9 m( e7 i8 o8 N' i$ L/ / Tips by Sedrika8 x4 O/ P+ T; J8 x4 T
3 e9 J" f+ B( B+ ~$ b2 ~It is up to you how you do it ^ ^
9 J0 k$ |$ U* d% B# s' c0 ~) Y6 S# w( H
/ C" B: p% v" W+ @$ C- JGo into your source folder and open the definejob.h, B6 B* j: |7 O/ v
Search there for:1 y" m. [+ ~# c( |
+ O0 ~3 c: B7 G& H6 N( m; L
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
. ~: q6 u1 p+ c0 I3 U#define MAX_LEGEND_LEVEL 129( K# x, p1 O, {
#define MAX_MONSTER_LEVEL 160
, x; X: F4 g) Q6 Y6 n3 y; \#else // 15Â÷ è÷¾î·Î ·1o§è®àå, g. H6 e& S" s1 ^0 w/ n
#define MAX_LEGEND_LEVEL 121
6 G. H7 C* {' L0 S. |! a#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
9 X7 {9 q: ?6 S; [ Z' `( u& M; g% i) {3 h, z
4 J7 R- v0 y1 ~* ~7 q/ i" {
Red: Player Max. Level
z" s6 A, R: s1 V. m- @9 `" J- c+ UGreen: Monster Max. Level
. K$ R; [4 k4 i( }9 Q* R7 V: t. Z- g% B, G
These changes as simple as you want.2 G( s% t) K/ K5 D. _ T
$ n+ U& u+ D! P. E1 ?Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
7 t3 O8 \7 a, Z ~* p1 r9 I5 x8 H
1 G6 D m0 b5 n9 J& t Part 1 of blocking CE
2 q$ [4 U8 n9 M! ^. {" r u$ {; J' Z. ?) Z
In this tutorial I will show you how to change the Head of Mark flyff.8 L% M3 |3 B% r8 q/ o
The current Head Mark is well known, 5E, which results as a string ('^').) }4 S) r6 H/ p9 {: V5 h' C/ |; v
+ w4 }3 L( ]9 j7 J FFor this we go to the World (Project) and looking at the Buffer.h after thistext) F2 ^: [2 t/ O+ g3 r
Quote:) q3 B6 f2 F- D
# Define HEADER MARK '^' / / Normal messageheader
6 W" Q+ g) ?+ W+ P a, e# Q, U, j5 K# Define SYSHEADERMARK '%' / / System message header' B% ^& ~& O5 p$ U+ N$ H. w
What the Sysheadmark is looking for is not even the top 5E." t5 t3 [* y( e4 z* ^# N% l0 z
Change this and it makes the CE Not work on server.1 x# \& J: e. B) }7 _
; n4 l8 H+ e* l0 I. e
Then Tom's anti-hack is no longer useful.: L. O+ C3 t) w$ s( N
4 i, v# S# K5 S9 T
LG Sedrika
Part 2 of blocking CE
$ l) n$ s4 M4 Q" Y
, D3 R- q1 c) c/ b8 I+ f7 {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.
5 S. Y* K9 q& K2 `$ c3 ]3 ^What does this have an advantage?
# H9 A) |/ E0 P* M. sThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
6 K+ \$ j; j7 U& \ V" Y3 _& p9 y7 q8 q( [
4 \7 p6 e$ g/ Z/ L6 i! p( mFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.9 G8 J, L' |6 ]: L
. c6 s) G: {" D& y" F3 T% ~& }
Then search for the following content in HwOption.cpp
9 [5 ^% ]% P7 ^3 Z8 O9 Z7 K$ }! h
6 c6 ~5 h( Z7 W
8 z( w: o) H1 j+ p vif (scan.Token == _T ("ip"))/ D% z7 d7 Y6 K- y8 Z# Y" r7 {1 i& I
{# R. q* J! \; b: S( H! s; S. _
scan.GetTokenEx ();
4 ~ F* \" N' |$ z3 u" kstrcpy (m_IPAddress scan.Token);8 L5 U% W5 ^3 }$ r
}( R2 A, P) ^8 D1 u
and turn it into this:# y; `( U9 F# u5 \) G( p2 }
Quote:
+ Y$ b& g' G$ Xif (scan.Token == _T ("ip"))0 ^& F! X9 g m l
{
! {: n6 h' q4 o9 a/ / Scan.GetTokenEx ();
+ e& g3 N/ F0 @7 V" S/ r# Y, z/ / Strcpy (m_IPAddress, scan.Token);6 p& ]! L- _) A _3 W( b
}
; R4 W" g- O+ k4 _7 D" H/ p4 cAnd you created the solution.
' `% U# Y* v2 j" p+ k- N# E$ Z$ M4 m3 b5 J
- ^5 L! x! s& j6 U. p m
Then read the Neuz not the IP from the INI anymore. even if put in it* p G7 b* L5 t- y# l) ^) b) ^8 {
. E) z) i% P( O; z& B" W- R/ t
Max skill's
- ^; I6 A4 Z3 @% T3 y% f$ k4 x
& M2 K3 O* l! u YAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc
+ I9 c1 K% i5 k" h Z9 R3 U' F& i0 }+ M! T0 `& l3 C
With the TUT can provide the remedy it' U2 _3 C8 y( w C, ^- _: a8 r/ A
' z' A* X( u; l8 [# T, r) J
# 1 opens the file SkillInfluence.h- ?7 M: O/ e5 a$ d @8 F1 A
# 2 Search- L* E8 O6 B" R# ?
Code:8 D, ^1 _. U- F- e& z2 [% @. L6 O
2 a! j0 M" J/ a# Define MAX_SKILLBUFF_COUNT 14
& w) v& r. U6 \! W
! Q2 T. d' T- I# 3 Change the 14 to your number (eg 21) and save it from
8 Z0 ]; }7 G! V; e! L7 F! Q# 4 compilation and ready
( q$ c2 W2 Y5 H! j( G1 t$ z
0 r: F4 S: q6 T
+ K2 n' ^) z: }$ LI 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:% Q! D: `9 _+ F8 P
" X* ?$ U: ?8 \; h+ v8 I4 m! _: D
dennisdra
) [3 N" h# m+ {.Crasy
. m1 t2 s* Z$ ?! ~0 M5 x+ u3 x©ross
7 t# k& k2 B7 E) PSedrika9 f8 p8 Y7 y* a+ R$ j) \
/ H+ w* L/ O+ q- V& ~/ X5 M
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!
% B+ e1 O4 x9 ~" y' H" a
3 b" ^7 Y/ |& h+ Z* n7 c0 eP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
) J d; Y6 A" N+ U
' r( ~, `. k4 @7 f# [9 u4 c2 S! y; k1 F8 @
Update 1:
how to turn off "Profiler" in worldserver.exe
' s7 C" V; R& k
6 \) C2 ], S F c; q S2 I1 L' J; Z: x1 A7 A% _4 O, q
in VersionCommon.h of Worldserver Solution; w3 K5 s( |/ C7 F/ ]5 V: A, D# n
Look for
; w5 m! k: E( F1 R4 z6 h6 h
b. Q' J* \( f/ X$ }4 R6 K" o#define __PROFILE_RUN
i8 o8 Z* M5 b; X5 D( ^: k2 [( K5 a/ s3 G
comment it or simply
8 O l6 Z$ \$ `4 f! I' ?' E# h: _- }; N% h) ]' k0 b3 B6 b" y
//#define __PROFILE_RUN 6 W7 A$ q1 u8 I+ L$ D5 k$ r
+ J1 r" z; l3 t+ h+ K
/ I) J. \6 b& C6 B4 vcredits 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投寄。谢谢。我添加更多的很快如果你有病加太
! a( _9 J, v. O7 I2 J" ~ |