|
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 u6 L* ^& {5 V! l0 B/ V2 i+ Nchange level without Rebirth
* ]$ K2 ~, K4 s+ K1 m# D4 F2 G
5 r$ ` \9 R4 [7 T i2 rNow, let us begin.4 w/ q# p1 P0 }4 ^
& b$ v# i0 P. B
Requirements:
4 U/ k# q+ K! t v$ [) DSource
! j& n! U }! s( I; I7 d' fNotepad / Editor
4 u$ \4 a( N! O$ e& V2 \- O: d1 k! M1 f
/ / Tips by Sedrika' E$ \8 S- W" r& y) e: Q
% D" Q$ [% c% }& p" p4 R* G
It is up to you how you do it ^ ^. {) C( Z5 c2 P
8 i; F! }. k; I( o0 xGo into your source folder and open the definejob.h
7 y) I) K2 m5 O. `( c+ OSearch there for:
" Z9 p' P2 Y h( m4 J0 [% P
# w. J0 |. ~3 |#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
, [1 Q- N, X8 z' t#define MAX_LEGEND_LEVEL 129
. E5 _' T) R! }) X4 X' b% U#define MAX_MONSTER_LEVEL 160
4 a& \ H, [2 p4 |, [* j# o7 E0 E3 ^#else // 15Â÷ è÷¾î·Î ·1o§è®àå
1 Q, z9 Y/ A! p4 C$ _#define MAX_LEGEND_LEVEL 121
; C& ~4 F4 d1 X+ z% l6 Q# G#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
0 ?1 {# Z9 V: x& v" ?
7 l- }% l8 `, Q1 f5 X3 H; j& d [/ o
Red: Player Max. Level/ r0 V ~. k1 \ }
Green: Monster Max. Level( c3 ^+ O7 ]: {5 F5 s
4 C# L) ~+ X3 O
These changes as simple as you want.$ B: R- p; t+ D' K8 t% P: @
E( l2 }3 g* Z; B" p; s* b4 tThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
8 \& |; h9 j% }5 O; M% S- @6 }" g" c! y5 ]+ b" c% D9 b/ l% o
Part 1 of blocking CE
/ q+ q3 G$ A; N* W! P* B. U. d. A
/ u7 ~2 H) u3 v- BIn this tutorial I will show you how to change the Head of Mark flyff.
- }. t* c |) B* S- O( mThe current Head Mark is well known, 5E, which results as a string ('^').
& Z2 Y8 `8 I* x1 d
2 d9 q. x' X+ Z2 }7 E. c7 E, qFor this we go to the World (Project) and looking at the Buffer.h after thistext" U, d4 \2 S5 p6 `! A$ V4 K b
Quote:, b# n+ T- [+ R, S6 J9 S7 E
# Define HEADER MARK '^' / / Normal messageheader
' ]7 W! g K6 V1 w# Define SYSHEADERMARK '%' / / System message header3 M5 D' y# s/ {" x( Y: L; h
What the Sysheadmark is looking for is not even the top 5E.
$ ]' ?$ H. U) JChange this and it makes the CE Not work on server.
$ N: P9 U( C" h' ^# _/ j3 ]
2 ]. M2 f! C+ M' a, q( C5 I/ MThen Tom's anti-hack is no longer useful.
6 g8 e) u7 Q a5 a2 Z$ v* l( @, Z0 r: A. b
LG Sedrika
Part 2 of blocking CE
9 R# a. m# r% N' \3 W$ d# M. B$ x* X) |. |+ g+ H
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. ( [; U9 n0 Q) b) Y# s; C
What does this have an advantage?
; T/ m9 ?7 x' V& R# V4 I; @: IThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
$ F) K3 y+ `7 h5 r8 F9 z' F
, y6 ~: ~7 ]- \+ M( l( @$ J
2 d6 | Q2 S2 ^/ j& zFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.2 P& A9 E6 W Q4 ~/ g) F7 m+ X
, k' M& o/ Y* f( hThen search for the following content in HwOption.cpp
7 n$ |& j! i! K+ Z9 Z- ?3 f+ ]2 T: X6 Q
, r0 e* V) n+ |0 ^
if (scan.Token == _T ("ip"))# I: C* U0 z0 `5 F+ [* o) r8 a
{
4 k* B* ? H1 {% |3 v Rscan.GetTokenEx ();
+ o$ S1 X1 g% t8 _7 x5 G3 z8 Xstrcpy (m_IPAddress scan.Token);
3 ?9 L7 D% {! \. a}
. V9 m$ q5 c$ ]and turn it into this:, P6 o! p* F) [2 @+ V9 X7 S% O
Quote:
0 n$ @- {5 V/ F) O- a _if (scan.Token == _T ("ip"))
* W7 |3 T2 u) n. I6 q! |7 z{
- Q$ n7 b# a0 P1 O/ / Scan.GetTokenEx ();- i; ^* k" T& T! L# e5 D) u% s
/ / Strcpy (m_IPAddress, scan.Token);7 h7 T& n" L6 z8 c6 [& S
}
1 Q) b" \/ \7 u7 [; g! SAnd you created the solution.
; e5 S! p" M H& M$ p2 o+ e- M; U* C: B6 B' c% Z0 |( e) H) F; Z
3 O3 a: k1 R9 Q' h, k3 J
Then read the Neuz not the IP from the INI anymore. even if put in it% z- N0 C; S0 _/ Z: _1 ]
6 h: \, w( }8 x6 u" M
Max skill's " I. U6 ]0 A3 E: T8 E
) ~! j/ s# Y+ P$ K; J ?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
$ e$ A! h M% A0 \4 |3 ?5 U2 _6 g4 d: l8 o% m9 l! G
With the TUT can provide the remedy it/ K0 I& [+ p3 [" }
2 w. [3 S6 i8 \! `6 s; R: p# 1 opens the file SkillInfluence.h3 a! l6 X# e0 z/ H
# 2 Search! V) J7 V; O3 f3 l- E
Code:' ~3 L9 W6 t/ ^" G
3 T+ y1 j. O) A+ t( J# Define MAX_SKILLBUFF_COUNT 14 r# c: F# m7 _7 R" Y, g/ G) B, h
+ t2 E" B7 t7 w. a0 o! k. J
# 3 Change the 14 to your number (eg 21) and save it from
$ D: V4 e- a% L& R H# 4 compilation and ready
* O4 n' J w t6 \; v" N# j# {+ o! N" m: A6 Q
& n! o" n! u- ~; m5 e7 {. m
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:
2 @# o. U: Q4 ?
' R$ U$ o4 d+ K& xdennisdra7 Q9 ^! f- ?# C8 {7 {
.Crasy# M, i2 I* k _% Z& ^2 [
©ross0 E8 L7 w) m: S' h {
Sedrika
0 s* ^" u/ H0 N, O: d6 @9 S( ~
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!
4 y4 y* @4 \1 a
, r! I4 S3 f4 @) i$ r$ FP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
4 \$ s: ?4 _- }
& n3 f1 s% Y1 s# S$ Y3 {& Y- w( E& T7 J1 G) u* w
Update 1: how to turn off "Profiler" in worldserver.exe
5 x4 B; V- K: `3 |4 W% f
! Q7 _2 q' k2 g% w, l T1 T1 \
3 ]; J" z7 w' Q8 g! P: ^4 z) l, min VersionCommon.h of Worldserver Solution% q1 q8 `; Z9 H( G" _& g9 ]$ x
Look for( C; ]& q- Q" f
4 Q# B# B* L$ C# C* y#define __PROFILE_RUN7 R. v2 O2 \8 S, P) t1 g& U# Z: h
+ c; ^% S* E- G b
comment it or simply
9 u0 ?+ {% E5 o D$ [8 P* p" |0 N5 @+ E( |% _+ ]$ H
//#define __PROFILE_RUN
; ]8 G! t! k: _* _3 S0 N0 l0 ]5 o/ J+ P9 G
; Z6 v) q1 d4 x. k) b5 n, C& R/ }" W
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投寄。谢谢。我添加更多的很快如果你有病加太
. D3 s; R. I* @, X' U& Q |