|
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 3 p) X4 S* b- j8 j2 e; s
change level without Rebirth
' @0 f: y- |- a9 ]' b% \" ^
& x/ J0 G% T# WNow, let us begin.
, ^# q$ d2 g9 r8 `+ u7 N
7 V; v" q2 Z& }Requirements: F* k3 t5 R; s6 O% V) S n* L
Source) }- Q7 U$ \8 O& A$ h
Notepad / Editor6 h6 y# ]+ i1 g6 M; T; l; N
7 \8 @9 F" e5 i# a7 W3 ^/ / Tips by Sedrika( m3 r2 y0 c3 X7 O3 M
. v" y; k4 V8 D2 S& e/ E
It is up to you how you do it ^ ^
d s# A+ V3 T8 H4 x) l, F8 F
3 y6 X- [5 A# s% WGo into your source folder and open the definejob.h
$ Y- s" S8 ~& [# E. dSearch there for:8 t9 d9 q& o. D7 v* r4 B7 ~5 }
" Z6 m8 |" J" b# u; j7 w#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå8 Q, b# }: E. F0 X
#define MAX_LEGEND_LEVEL 1295 `, a5 o8 P% s. R( u6 K- N
#define MAX_MONSTER_LEVEL 160* ?( g7 D" W; Z4 T2 d
#else // 15Â÷ è÷¾î·Î ·1o§è®àå: |7 ?: `5 P8 d y e+ v
#define MAX_LEGEND_LEVEL 121
# O7 z" g8 B" s1 K% e9 ~+ l#endif // 15Â÷ è÷¾î·Î ·1o§è®àå * W4 {" p% D* E9 u- b
9 \* f& c! T, g% M: a9 D
- Q! }& F' \# g8 ARed: Player Max. Level; e) J! z* H# h( [( }5 V' o1 W" P
Green: Monster Max. Level
( h+ U8 R) ?8 \: g% ]& M4 `' J6 p, w2 `- f6 H9 l7 h
These changes as simple as you want.6 { X# ?2 }3 r5 |
) p! [% n# \; ^ |& d( f
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.! \* d9 z u. U! `0 ?4 }& m* B
$ d9 [" O1 C! G! ~ Part 1 of blocking CE
6 L4 l: _* e6 x
$ Y# C& o9 Z" s& [$ FIn this tutorial I will show you how to change the Head of Mark flyff.
; k& w% C0 b) i5 h0 B; wThe current Head Mark is well known, 5E, which results as a string ('^').5 ] V2 T% A$ I7 m* }+ e; e% r
. S- S' u" s9 [. I y' m! q LFor this we go to the World (Project) and looking at the Buffer.h after thistext0 N+ q! m o H, ^
Quote:
9 D1 K3 G' g* f: `% ]5 A# Define HEADER MARK '^' / / Normal messageheader* D6 H4 p3 o! A) U8 ?( J6 B) A- z9 p" W
# Define SYSHEADERMARK '%' / / System message header
8 s+ `( B/ j5 P Z5 n8 `What the Sysheadmark is looking for is not even the top 5E.8 R: h7 k6 z7 N2 ^: o5 x& O
Change this and it makes the CE Not work on server.
. f, X. E/ @$ E, e) k, O. o2 f
& g8 F9 z* J' s3 P7 l" j& B* L }Then Tom's anti-hack is no longer useful.) P m2 p8 l0 O3 i2 |( N
- x/ {- i' B6 g/ [; P( bLG Sedrika
Part 2 of blocking CE
% Z% @: Y! E4 J# J/ I3 Z* ^' t- I$ x
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 s1 s% m! ~% {& N5 Y7 H6 ?
What does this have an advantage?
0 O, M! ~" e% J' ]" e1 aThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 8 H {# d) v% z$ \. A+ B( e
8 e, r1 r0 E# n$ M- x- |
/ q( K# W; s2 R! hFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
% D5 R" Z2 U$ U" k% c! L. D" J+ t& [6 X; C0 u( l6 x- o" W
Then search for the following content in HwOption.cpp 7 O) g7 j& F- k& C- E7 @$ G
7 o8 R# g2 r' m. ?2 R G5 _5 m0 |+ k
8 M* W( x# o+ b% nif (scan.Token == _T ("ip"))- L3 B) \& v6 d8 Y
{
* T5 f5 S1 i/ t4 n) p; u |5 A5 Xscan.GetTokenEx ();: l j. C* z% }, v) N
strcpy (m_IPAddress scan.Token);
- _& N ?( b6 R$ T# V1 [5 ~} d* L4 }5 c6 q) m- W
and turn it into this:" w2 D# Q& O. T% A `8 w% w
Quote:- `: k% V- x6 S% \3 Q
if (scan.Token == _T ("ip"))9 l5 q4 j. }$ o6 S3 N0 U
{
$ O; o4 U; |% _/ / Scan.GetTokenEx ();: }6 y3 Y7 a8 j7 E" @5 S5 A
/ / Strcpy (m_IPAddress, scan.Token);# P9 d$ D3 V1 U
}
& `. y7 A6 W) ]) ~And you created the solution.
! A1 t; M! a1 o
) E$ z$ h3 N% r @
% h" T4 T$ G9 yThen read the Neuz not the IP from the INI anymore. even if put in it
; j9 W% {" E# L- U
3 Q+ e, ~3 G3 ?4 E' m) }" r
Max skill's - ^: z/ {0 q+ E) X( W: v( d3 B
1 p# W# s4 l( f9 z5 h7 Q Q
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
9 H( E2 H7 v$ d) F/ ?% Y( g! _5 d; Y9 j0 Y6 i# j: o2 ]( o
With the TUT can provide the remedy it/ I3 Q& h4 t/ {+ h4 W
' m1 ]; G, L9 l! r, q5 t1 Y# 1 opens the file SkillInfluence.h5 m- E9 Z- N( ]9 r5 Z9 u
# 2 Search( y. y3 m) q( w- m. d
Code:
3 w) b! B* S6 O' M4 a& n9 N& U1 L& t4 ^. H9 l
# Define MAX_SKILLBUFF_COUNT 14# H3 v3 `5 ]# o
7 f) V& y" C" A+ G1 P# 3 Change the 14 to your number (eg 21) and save it from
& Q7 ^. M5 b# _# 4 compilation and ready/ H2 s; Z* f% E6 f4 C
1 K# _7 z4 h" Z3 I1 P* a
. W1 P {& r& tI 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 X& K0 c# [! \2 C
! i& k8 l5 F" D8 a
dennisdra
9 K4 h6 W# d/ {- E0 U. D.Crasy
9 ^# ^) V0 g$ |, d# K7 ~; j- M5 D: Q9 D©ross
. h2 U& O( }& \+ p7 rSedrika
# P0 V& T5 [2 d0 H, U' P6 X, J4 I' [' f3 ?8 J& 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!
2 R" ^+ u$ r! g) v6 p( a
( q; D4 g( N4 [2 L; `; M4 _$ m8 hP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
5 H2 E& U5 \$ _. @/ ?# ^% q$ `
( A. w2 S" d6 ]) i* e4 U+ n; ]8 u, A. q% ^$ Z2 d3 m! Y+ i
Update 1: how to turn off "Profiler" in worldserver.exe ' F, J# A- x5 S* C
" Q) J3 v8 j E
( |* U3 ^- l8 E/ g4 `, f7 O
in VersionCommon.h of Worldserver Solution0 Y7 E2 u7 ?4 [1 T' {) X
Look for
9 h7 ?7 ^* g! x u. {8 z0 v7 A2 h! G1 p- ]% h6 I, I0 ^
#define __PROFILE_RUN
2 X, E- @% u* U+ a2 I7 R& F6 w* K( _6 x2 u2 L; q
comment it or simply2 B5 H r, u/ z4 F
5 c' c3 U7 N- [& p8 w
//#define __PROFILE_RUN
7 n0 M- ~- N! g5 `* @' L& X% Q2 K
3 m& ^! S( A7 ^; Y8 {; ^5 w& I
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投寄。谢谢。我添加更多的很快如果你有病加太 ' ]5 c/ y1 P5 D' b+ t/ [" @
|