|
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
% {; H7 D. J/ M4 Qchange level without Rebirth( I& X, U* c, b, Q5 z% E2 z
% h' ?( J( M7 x c5 }4 n4 a8 }
Now, let us begin.9 K# s+ I0 O0 q
0 D% u: g6 i8 @- ?
Requirements:6 Z* Z2 j; ?: ?! y0 D0 g# x
Source$ \0 f: E% H' q* T, v _
Notepad / Editor' d& E+ g! T, O A8 i" x+ _
! F/ H* ~& ~/ i4 l8 f% W/ / Tips by Sedrika, J$ i7 {/ V" m) M6 v/ y
4 C) k1 Q7 B" C. `# _It is up to you how you do it ^ ^
6 g) J) N9 E! m8 M5 B" l" n9 {3 b+ C0 E! ~( m1 E! q
Go into your source folder and open the definejob.h5 e" {+ h% w8 ^& h, j" k: K( N- Q% J
Search there for:/ _5 \# o+ }7 p5 T5 W
6 ]7 W h4 ^8 |9 E5 g4 t#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
% w( s% F; `. W: V6 `2 M( T$ B# p#define MAX_LEGEND_LEVEL 129. m2 H/ e$ k/ }0 c4 G
#define MAX_MONSTER_LEVEL 160; V6 M. |( ?4 c+ p# i' B- m
#else // 15Â÷ è÷¾î·Î ·1o§è®àå* V4 K8 D% q7 z% D8 ^- P S
#define MAX_LEGEND_LEVEL 121
# \- V. Q: @" U s. T; [9 R#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
7 q0 J* G- @: c7 z. c1 o
' o+ J& N* p/ |; [8 p6 }9 y- ]' e1 F2 P# M# b' G% _
Red: Player Max. Level
_$ P1 ?$ k" W/ A) GGreen: Monster Max. Level
; | e! A( f4 I; e. V( O" v$ {- v9 z8 B/ \& \
These changes as simple as you want.
% O. D! n _' r8 p% S ~
' Q( e' R _* g* y2 M) uThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
3 J- Y: O. W- X8 q9 l! E7 k
& Q$ K& f X( c$ x2 h. A% o) R8 T- U
Part 1 of blocking CE 0 b+ i+ ^* a* B9 X' w0 p
/ ?" q0 W- G* M. Q& b2 H
In this tutorial I will show you how to change the Head of Mark flyff.) [* Q, @6 ?5 \5 H9 o9 ^2 z
The current Head Mark is well known, 5E, which results as a string ('^').
1 G+ e7 z0 _2 D" m% }3 {! i. i' S Z Q6 c2 f) Z
For this we go to the World (Project) and looking at the Buffer.h after thistext$ e F, N N' j: h
Quote:9 y+ {' Z2 ~/ [0 G: n o% t
# Define HEADER MARK '^' / / Normal messageheader8 Q+ H% g s& R/ Z) M0 b
# Define SYSHEADERMARK '%' / / System message header
7 u( u! h1 i: A8 c& GWhat the Sysheadmark is looking for is not even the top 5E./ B) m' |$ P$ n1 w+ M u
Change this and it makes the CE Not work on server.) ^: V' N7 ? r) S; k8 `" b
6 X, T2 B0 r; l+ {- Y2 Z4 V7 u* VThen Tom's anti-hack is no longer useful.2 t1 o, z. Q2 O; P- G+ s
; U3 ~, @9 A! m2 xLG Sedrika Part 2 of blocking CE 5 A9 V* x5 o8 {: R9 s) B4 i
9 l H% w7 C; J" i8 P5 E
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. : P e3 f! z, ~7 \2 D' A% s2 P
What does this have an advantage?0 j* s: A l2 C' o
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself ( A7 A E9 b. R$ }
! @$ x$ f$ |& r2 c8 u) F0 [
& t1 }' ^; O7 z" {; F |4 N
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
4 [! h- I- q6 F3 I; X- H6 e8 @5 C3 G, V
Then search for the following content in HwOption.cpp
6 |' e# |2 G$ P& X3 b' ?/ y- C) z! u5 w6 ~% ?2 T
2 q' r: v0 a+ A) Q" o
if (scan.Token == _T ("ip"))0 [( R7 o+ g) I$ w: G- R
{
( u( W8 ]5 @% ascan.GetTokenEx ();
8 n1 T8 q# _# k0 mstrcpy (m_IPAddress scan.Token);
8 E2 `) I- G+ |+ k( C}
$ C0 m+ r4 M4 S; |, X6 Gand turn it into this:* P" N6 @* J( u& D4 j0 @; L
Quote:
. n! }& o; n) T+ g9 \if (scan.Token == _T ("ip"))4 L: m# n$ w, u1 \
{
6 G& |" c5 j8 e$ ]* C& A, f/ / Scan.GetTokenEx ();) f$ f& i |& s G
/ / Strcpy (m_IPAddress, scan.Token);
. U* y7 B; o+ H1 O7 R: h}
# k* `- E3 W- Z/ d+ M& dAnd you created the solution.6 \* X: I! D2 N2 T+ ?: p7 i" m% o
2 q& A6 [- v. j6 {. q
. E! `( s* h a2 |1 E. BThen read the Neuz not the IP from the INI anymore. even if put in it/ l+ P, b1 f0 b3 I+ B( N( L/ { K
$ Z7 |) a1 i# x
Max skill's
3 h. Z' J$ K5 y) S3 n: F' O- I& {# {' G2 v, T3 p6 M0 r' F+ t
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 " B3 j! x6 ^7 q/ r! V
0 [( y* K: C) k; Y8 c; e
With the TUT can provide the remedy it
/ g! t0 R/ n' q( E4 U$ |- N4 @/ r1 n
# 1 opens the file SkillInfluence.h! m! Y5 I6 p; ^/ L( K* o- ]
# 2 Search
' A! O6 A3 a3 _# C5 a$ xCode:0 e: J4 ` F. V. _3 t2 \: Y
+ ^% V* b0 |& O% V; \$ U# Define MAX_SKILLBUFF_COUNT 14( J3 V: u7 l. }. m, N
* C1 G* ?8 O" d- ?# 3 Change the 14 to your number (eg 21) and save it from7 P+ k' k( k( z. C5 X5 o7 ^' C/ l
# 4 compilation and ready* x( {( Q" r4 t# |8 u! v
4 ?! s0 d: G2 F4 P8 i
+ }! M1 L) ^6 P, ^7 `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:( W) H" I P: M( V' b! u
, [* _/ q* r5 _9 R3 o
dennisdra
) {8 z0 f( d1 x- a; x.Crasy% }/ `% w( ^+ A8 j# f" g6 H) y" r
©ross4 N1 i) c3 j! N& N( a6 t# m
Sedrika
; R0 j; U1 ]. J% x, o% D6 O1 x
& y; J5 [: w- h# F8 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! 1 ^2 q( {. _5 ?& V' F1 v. @
Q9 N3 j! T5 J* P7 `
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less* p' F. [+ l( B+ s; f, b
Q' b8 u3 C0 Z8 l
# m5 Q9 G5 b8 L( M7 NUpdate 1:
how to turn off "Profiler" in worldserver.exe
% q4 P, L" \) L8 T/ t$ q8 K2 e" A, d+ I- ]& A7 p
- u* G5 ^. X7 ^in VersionCommon.h of Worldserver Solution2 Q$ Z I. f3 f9 b5 k( @7 N3 K
Look for
4 B3 Q! m" Q! H4 y7 F5 I3 E: w) L0 K
#define __PROFILE_RUN
$ ^$ g& a3 C5 n* {9 N; {/ ^
8 [' R, |) Q. J \9 rcomment it or simply5 m& m6 |2 S/ @& U
" z! U" c( O: X5 t/ Z
//#define __PROFILE_RUN
+ x* R% \9 `9 i& E( a& A4 X0 M4 M' s
7 ?, Q& ~4 H5 P3 P% P2 Rcredits 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投寄。谢谢。我添加更多的很快如果你有病加太
2 u3 \ h5 ]- R. f( p9 M |