|
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
, C! a' r) i2 ^; Schange level without Rebirth
8 A7 R8 d& R, @4 Y+ z/ V+ Y/ N2 x! d' [0 u; L1 H
Now, let us begin.
' w) M# g; ~0 O% ^+ d0 E$ _/ R/ {9 o+ l
Requirements:
& v E+ S+ L b3 S' SSource) Q. M( ?5 Y! v, Z
Notepad / Editor! T1 y+ k8 B0 f6 s; ?( e3 C2 d
) U+ e& z7 F% @% j2 r6 l8 p- ?" Q7 c/ / Tips by Sedrika% `# W) p6 m2 g6 e
- E4 q' j0 I" C7 ]1 U; V6 B) ?It is up to you how you do it ^ ^9 ^5 J! b& P- R* T! P' |; {" g! p
- W; d, s' u9 M* x4 E# X
Go into your source folder and open the definejob.h
; s/ n, @3 w7 ESearch there for:
4 O, G m7 E9 U! F* W
. _7 Y3 Q2 \8 ~#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
3 ]3 {; e% P2 a+ I( C9 y#define MAX_LEGEND_LEVEL 129
+ I# }, }0 `; T4 m#define MAX_MONSTER_LEVEL 160* r2 m: r a) O: C6 ?, N
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
# `1 L6 A3 M$ u* \3 ~; ?2 \#define MAX_LEGEND_LEVEL 121
1 Q# C/ { v3 N, O( Y/ R2 o J#endif // 15Â÷ è÷¾î·Î ·1o§è®àå 4 [( c. Q* g+ h4 h2 x
$ \: Z3 {* [5 b
6 X( n+ |/ s- ~. A, HRed: Player Max. Level
2 G7 A- `( U! e; l, nGreen: Monster Max. Level
: t* T M a% j+ N' |/ U; B+ {8 G! Z- M! {* G3 D; _2 [
These changes as simple as you want.1 m+ P/ B( t: n. T- ?( ^) ]2 H+ g4 ]
3 w' Q/ O1 D: U% y# C
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
8 A2 t. |. x4 k% b& S
5 F- X4 Z5 n m5 f3 q. ]
Part 1 of blocking CE
w( _6 B& H( C' X% u& D. a
/ s9 [. I, z" l, i0 _5 Y* h2 v' ^In this tutorial I will show you how to change the Head of Mark flyff.
8 e7 e) Q: b0 V! E/ r7 a: fThe current Head Mark is well known, 5E, which results as a string ('^').; v# i; w5 `/ n" [$ m% f, p3 w
" ~' M" c: [3 h+ U. F! ~For this we go to the World (Project) and looking at the Buffer.h after thistext
+ \. p3 {, p: o; cQuote:
% {( p+ ^/ k& U" r9 R9 d3 e# Define HEADER MARK '^' / / Normal messageheader
5 q. {% E. E( V2 t3 Q# Define SYSHEADERMARK '%' / / System message header' J J4 ~9 a+ ?* ]: O2 V& O U
What the Sysheadmark is looking for is not even the top 5E.
6 a4 X$ D, i S3 k3 k$ X$ \Change this and it makes the CE Not work on server.
1 f& L g4 w* y6 y$ S. t6 F. n; @" J b6 j* G% ]
Then Tom's anti-hack is no longer useful.
g; C6 l- f- A4 W% W' ~, a) `& r8 k) e- e9 }- K) Y
LG Sedrika
Part 2 of blocking CE
3 y5 @+ R2 ^% p4 \( [
/ b; c/ Y5 D) \2 c) a1 LIn 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.
# [' ~2 n3 `" C' vWhat does this have an advantage?) D+ |2 f1 j. Q/ ]; `5 a' B
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself * U5 Y" ?1 A* p5 v
* S# p6 @6 ~& Z9 Z6 Y1 M) ]
% d9 S( R/ @3 P; i+ G: BFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
" ^4 v4 {8 H5 l4 ?! o- w. \3 }4 i7 z1 H# g! ]" i$ S3 Y3 @1 ]" t
Then search for the following content in HwOption.cpp ; k. A, t" P( m; d. C! K1 I
3 \" }; ^1 m0 c! l! N2 V' D
, w2 H/ y G) V+ K A2 ^% M& Uif (scan.Token == _T ("ip"))% C% i0 ]- `: d: N8 z# e3 m% R
{3 g, c; |( ?; X
scan.GetTokenEx ();* ~3 R0 f# @$ R
strcpy (m_IPAddress scan.Token);/ ^4 n* e- Z3 a6 I L8 B W ~
}
+ c" s, j( N; h* S5 R k7 B4 d. uand turn it into this:! M! ^* N0 B% A9 B. t
Quote:
b' N. b# F8 [$ ^' L# yif (scan.Token == _T ("ip"))9 `5 X4 l" O1 x
{$ y1 [2 P% @/ H3 ?3 i; X; P# y2 j
/ / Scan.GetTokenEx ();: T* w: ?6 M2 J% I5 v
/ / Strcpy (m_IPAddress, scan.Token);" J- X' b6 h# z9 q6 U8 n7 S
}
+ y, f: q9 ^7 m9 A8 r. E5 cAnd you created the solution.
+ p N9 p; p2 h& M# K5 b
7 ^1 U9 h; G1 x) w) n* U9 ?4 a% ~: b, a: N" h7 _, {8 O
Then read the Neuz not the IP from the INI anymore. even if put in it
@# a! d8 L* s
4 m& C; [! d1 Z; j" U
Max skill's * n! }5 ^& r5 _" V
; K9 C9 `8 q1 t% p) X8 Y
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
5 G2 g0 \2 x2 J- K0 `" x/ A
) |" y. T! W. ?/ @3 `4 ] oWith the TUT can provide the remedy it
' j" K, C% J8 F: E
2 [: n7 D& Z$ H& d) s; N# 1 opens the file SkillInfluence.h
. v/ o( V2 r* E2 h5 H+ h+ p8 | `# 2 Search) l# F' }( g2 S/ q9 y
Code:
' D- F, `$ t' O) y& z
# U7 T4 [( ~! X% F2 n# Define MAX_SKILLBUFF_COUNT 14
* H% N# P1 _7 L1 ?# F K {- s% y# {2 p, R' C; j4 g6 e
# 3 Change the 14 to your number (eg 21) and save it from6 p, J% Q2 |- ^. B/ Y# z3 z
# 4 compilation and ready h! o# B) J# r& V9 A
/ v3 U' o$ F) W' L+ `
; w6 H( N4 o; V" {# k: Q" c
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:
* J) n: z g* N: D. f
7 X+ e5 D$ u5 A& L* y! Rdennisdra
9 r+ F! x B% }, G7 k.Crasy
, O' p0 X, ] Z©ross! H/ ^. S0 L, r k0 C9 r. g( S& ^
Sedrika( L3 _, X6 Z5 M8 p. {3 u9 P# b
5 @; j# p" I$ @4 @6 _$ C
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! & d; k6 {. I- L$ n: @. j3 m# W6 q- a
- C) L% }! B& l8 s
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
& W! H' C! c! J# B4 Z- W+ ?: Y: X4 e/ J! b. H5 k2 g/ i
" {( k/ s4 Y. VUpdate 1: how to turn off "Profiler" in worldserver.exe ! w0 d2 _$ y4 B: P5 I- S0 i
0 R( I) ^/ n( q# u- Z. Q) r8 i# r& U9 V7 c
in VersionCommon.h of Worldserver Solution
' X0 E5 Q H" {5 KLook for$ _ p: w4 M. w' n% K
8 S! q/ s: n+ F( a! r- S A
#define __PROFILE_RUN y0 I! t, _5 u2 U" b2 D
2 ?+ W* X+ k" U4 F% hcomment it or simply+ P5 q) M. C2 F* U) d& i0 l
% y6 a; f$ d: I2 O& K+ U+ i//#define __PROFILE_RUN
0 @% m c* n7 f2 [1 s, _+ O4 D& A/ ^2 S0 z$ C8 X' j2 _9 X
: d2 _. W; N! Fcredits 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投寄。谢谢。我添加更多的很快如果你有病加太
9 }: ]* v0 M0 Z |