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 S+ n+ q8 D( o) C# Y
change level without Rebirth- i) N$ D5 l& l1 |
! i& o7 b$ B' h. r/ kNow, let us begin.
7 B& q2 u1 p4 B: G3 e( b5 w9 w, M0 V8 W% i
Requirements:
3 B6 f6 w% B( H. o* m7 BSource
: v4 { z. O' ~Notepad / Editor9 r/ ~- \' ]' _0 I; U* X' t
1 y- |7 H$ Z6 k8 Y
/ / Tips by Sedrika
0 N0 a% l" W% Y4 @: g& Z- f! ]
: e( R0 ~5 ^+ j, Z+ LIt is up to you how you do it ^ ^0 x. b6 ^5 ^) k7 m0 I, `! b& Y$ n
7 B7 b3 }& z6 J; c$ R, v
Go into your source folder and open the definejob.h# h B+ J* O/ q7 L }# |. Q- s
Search there for:
- E1 M+ r5 j& t- H. z k! ~5 X3 }4 C" S3 H
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå# R' R& ^# n: S" S( S2 v8 \9 Y+ J3 j6 |
#define MAX_LEGEND_LEVEL 1297 c3 j( v: O1 w |& R8 ]
#define MAX_MONSTER_LEVEL 1602 G% `( ~- }# H# Y$ b' r$ Z4 y
#else // 15Â÷ è÷¾î·Î ·1o§è®àå! y& S' e# d* y8 a M
#define MAX_LEGEND_LEVEL 121) ]& g8 Z: Q: ]0 K2 y* x5 h
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå . u% v" A3 \' A( t5 q" H
; P. B, a+ ^! `; p* Z0 A% `
: ~/ J& y, @$ _+ y6 C' J) p6 CRed: Player Max. Level0 L1 |+ Z- {* z: c u3 x o8 D
Green: Monster Max. Level9 M5 f O7 s+ }/ q1 U8 j0 ~
# e- F4 ~% d7 h( m' Q
These changes as simple as you want.
2 j2 I8 U# v4 l, \- w7 g' o7 q6 @8 ~3 @4 k v
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.) T( z7 H+ E8 @" P( j5 e9 i
2 ?9 P4 \3 |( C- s2 \4 W3 Y6 }
Part 1 of blocking CE ; u8 S: C5 Y3 G* j. R& }6 v
" Y* m8 M. \: G4 E: }: u
In this tutorial I will show you how to change the Head of Mark flyff.
" }) S5 W) u) d: |The current Head Mark is well known, 5E, which results as a string ('^').
5 n' o& u q T& n( Z$ e$ J( L6 G* j
7 C% q, ]3 e2 k' q9 b0 {. s. ^For this we go to the World (Project) and looking at the Buffer.h after thistext
) w% {. g- A$ u" m" wQuote:6 E$ p' S! f+ K6 i: e- S
# Define HEADER MARK '^' / / Normal messageheader
$ o: D; ]4 _6 I$ }# Define SYSHEADERMARK '%' / / System message header6 t- q2 |# T D$ Q
What the Sysheadmark is looking for is not even the top 5E.
; R, o1 H4 K* ?/ \$ {) [' l8 M3 OChange this and it makes the CE Not work on server.' v6 p: ?8 |# b
o- x- K9 i' h; n% _& V/ oThen Tom's anti-hack is no longer useful./ U) ?6 q/ c: ] v/ S6 y% P& P
% o9 {2 z- ?4 K7 I8 ULG Sedrika Part 2 of blocking CE
6 H# t2 f# v8 l# n; C( @
9 w2 ?- l7 \, K* V3 n* h5 RIn 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.
: M# z; r* _( c6 x' a2 gWhat does this have an advantage?
1 b) [$ k/ R" q/ ~7 AThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
, f) c0 ^4 ^& l% s- L2 p$ E x! f- H, Z! {5 P3 Q
9 J w2 \- I. {& Q% YFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.6 z) f: w- g, b
' u6 G( ^- _, g( V3 e5 W( }0 ?5 KThen search for the following content in HwOption.cpp 4 U$ Q$ x2 |4 ^/ c3 x; z+ A
: l6 y; y6 o6 V' r: x q5 j9 I M2 `! h* F0 X
if (scan.Token == _T ("ip"))0 |4 b: ?1 l+ s) M; g: {$ x5 Y t- D
{% e3 t5 Q4 l4 B
scan.GetTokenEx ();2 v: h! n% B0 {- c" p. L) A
strcpy (m_IPAddress scan.Token);
4 T+ ~& d: C k& p& u6 r}
5 p, p/ r O3 i# J5 K# C k% C N2 zand turn it into this:0 g7 b0 k/ d$ }0 H2 ?; C+ b/ T
Quote:: r3 K5 L U& b1 h! |5 |
if (scan.Token == _T ("ip"))
6 I5 z! ]6 B; M{* g2 n% _& {0 f' @3 Q( T
/ / Scan.GetTokenEx ();
Z% G" V; O8 P( }# P% S8 b/ / Strcpy (m_IPAddress, scan.Token);& E( R' W( ` p+ \
}
% F8 l# N% |" F4 N) IAnd you created the solution.
3 l# V/ Z [7 _: \( S
( L8 `: j* X' X- i+ }- f Z) u7 @
7 ~# K) b0 m. }* l2 q6 MThen read the Neuz not the IP from the INI anymore. even if put in it
3 S% B: D* K9 S; v
- M% B& f! ]' @; ^1 ?( Q8 w7 U E' X6 R
Max skill's l9 B9 y0 y/ B( C( t& W6 Z9 u
0 I+ S* e& @. @- ? IAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc
T/ M7 Z, R0 N Q4 B( }& i/ W) |$ i
With the TUT can provide the remedy it3 p+ P7 c0 [. d; O7 q& e9 m
# D4 C; ^7 F |, y7 }: W! c
# 1 opens the file SkillInfluence.h
/ O; X' o& W1 d% ~* v% g8 B8 J2 [& Q# 2 Search- H; F: Z7 \5 }! C
Code:
( |5 ~$ o/ k7 L
) M n u, R R% x9 Z7 f; v# Define MAX_SKILLBUFF_COUNT 14' J" Z% @2 C' Q* y+ m8 v, t
$ {5 N! P+ T* J4 Y; y. [# 3 Change the 14 to your number (eg 21) and save it from! K4 y; j0 k: h8 R3 X" {2 D
# 4 compilation and ready8 N3 [9 w# N9 M. A
; y- M3 Q2 [- ~8 E5 Z* J1 w5 d" G
! x5 F2 s$ t9 i4 o$ B) ?1 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:
" e3 R( W: o/ _- p& a, V. e0 u0 N1 Y, T. _/ [' ]0 c
dennisdra. E' Q3 [. { Y( |
.Crasy7 {8 X2 Y) |# L: M6 K
©ross
! }8 u* Y3 L2 `2 r% ESedrika; O7 s5 |( I8 \9 M) ]6 @
& ~; C) W- E6 keverything 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!
+ k7 p2 S: Y/ J
8 T8 b' Z. O$ R, N8 `. O3 I# lP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
U7 u' }* l+ N$ g' P
4 H5 z }# t( C( n9 x
+ Q) ^" n# s) e5 w9 nUpdate 1: how to turn off "Profiler" in worldserver.exe
; j7 ~! i" o5 |9 |+ u
- j* N7 v& |8 v' m( i2 U) l
, d5 Y. g/ J+ i/ S; g4 j6 O1 Yin VersionCommon.h of Worldserver Solution
& [3 V1 `& X2 A/ k3 {9 HLook for1 d4 N4 j+ S9 F, E
5 z q3 i g# T' l b! Y#define __PROFILE_RUN) _; i' c4 [1 P3 D; d/ t2 H* F
; y& M; B9 A; V6 Z
comment it or simply+ F7 _1 V7 B1 h/ u
5 s, C8 q, V; k; f. R. f) V
//#define __PROFILE_RUN
9 }$ t; P3 I0 |5 V0 w) l. z& i4 U& C# V- h, k3 Q. k
, p8 N m) t! c6 p$ g! E# Q' Wcredits 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投寄。谢谢。我添加更多的很快如果你有病加太
! |! o6 {# {3 s+ I4 w* |; I/ {3 u9 G5 J |