|
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
4 x, f+ r% K7 Ochange level without Rebirth
" m/ k! l# L @! }9 T/ V& I2 _" k* {+ @ \3 _8 g4 o4 L
Now, let us begin.
, y1 d6 G( b, ^8 F( Q R
0 x" |# z! \8 L# [9 mRequirements:
7 V% \4 o) T5 L( X$ `& h) e, Q" dSource
0 p$ E4 U) m7 J, y- k+ S* F9 f! ]. kNotepad / Editor) H+ |. j, C1 {% M8 L" D4 \; s# ^# {
3 |( b/ ^- l& {( t/ / Tips by Sedrika
. L4 Y, \6 s! a3 F* i9 R# ]
9 l; B3 c; }& M8 L4 eIt is up to you how you do it ^ ^& o( L, C; g! w
5 v6 _; b8 H, S" t2 \$ B
Go into your source folder and open the definejob.h
+ I& Z& S1 U c0 T) V- x0 D, b% r. fSearch there for:& c; L- j- j4 T+ ~
: a$ B7 Y. r& x, ?3 j5 ^
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå: ]; m6 b5 h/ c; Q4 N% I1 L2 U
#define MAX_LEGEND_LEVEL 129" P0 ~( S n$ |" h( b& h% T
#define MAX_MONSTER_LEVEL 160$ K% N. _. J7 [% c4 ?
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
0 D p% Q$ y. c: A$ o c#define MAX_LEGEND_LEVEL 121' X+ W( e t9 ^" ?
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
8 ?6 ~5 d! D: J' l
( q9 B2 ?3 {% k0 t# ]$ z
0 N# d: c# d# b0 j% l" h# K" ERed: Player Max. Level
, C9 E2 Q6 @/ j9 U* NGreen: Monster Max. Level% O4 W, d7 S4 H/ ]. W6 {1 H
* v% b/ y, V6 I1 Z, fThese changes as simple as you want., X& e$ S3 Q& R
) C/ B i% v* T; V) m5 y5 Y6 X
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source./ w# e. g# g* n; J( ` P
! }+ p1 A( l8 T4 V" j# v
Part 1 of blocking CE
8 j& u/ o) H9 u, |9 u# C, K
1 L. k% f* x% u- U9 JIn this tutorial I will show you how to change the Head of Mark flyff.
. g. Z5 h3 O+ v3 \1 L, LThe current Head Mark is well known, 5E, which results as a string ('^').3 u4 V3 Q3 f, ?0 u" Y7 h2 p
7 b3 |+ Z" N# X7 B: R3 @2 s* ?& IFor this we go to the World (Project) and looking at the Buffer.h after thistext
5 _- r5 n) N% UQuote:3 a: u" I. |* p
# Define HEADER MARK '^' / / Normal messageheader
3 I' v2 ~' y; I; A \9 m# Define SYSHEADERMARK '%' / / System message header
9 X! Z5 Y) j( F H5 v/ [1 _* a( ]What the Sysheadmark is looking for is not even the top 5E.
2 X* V# j7 W9 b: B2 Y0 }2 a* j) H3 i( }Change this and it makes the CE Not work on server.
9 V8 x8 z. t, q/ m) U9 y4 b0 s8 @4 Y* r% H0 Z
Then Tom's anti-hack is no longer useful.# ]- q# _" {2 P- M' Q# r
/ g r# N8 E; @# z4 a2 A
LG Sedrika
Part 2 of blocking CE
8 Y5 _4 r; ?9 W& x1 ?6 R( Y% Y' [- D
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.
" E# p4 a1 K! ~What does this have an advantage?6 x2 w, X; Q; ~: p
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
6 R& F+ X1 ]9 t) E' O- n* c
7 {4 E0 [% |) o% k
. y( d3 J: d6 y2 CFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
: M2 s, v* ]% H+ g
0 g% h- _0 j5 L- r: e& ?' @6 }; CThen search for the following content in HwOption.cpp , {: M3 q4 s* r9 t7 Q- |1 p
; b' M" D7 V2 ?& J3 y% `0 t/ y
5 ^4 Y: r1 G8 }: J. V' f7 eif (scan.Token == _T ("ip"))
5 L/ `. r. q& h( N) q{! g, v7 v; t! i
scan.GetTokenEx ();
7 |0 e& V8 s3 Z& J) ` \/ rstrcpy (m_IPAddress scan.Token);6 r7 J7 a4 G- P# q6 U9 V: ^
}! M- d" F! t; r' ]4 Q
and turn it into this:* @9 h0 A, ^& C9 p; o5 y2 e
Quote:
0 B6 a b& e% q, }2 @if (scan.Token == _T ("ip"))$ O, k- d Q" n3 N
{+ Z: j" k& g' J8 G
/ / Scan.GetTokenEx ();+ d( ~: p; G0 U; M
/ / Strcpy (m_IPAddress, scan.Token);# U: G& A. B5 t) _$ v
}
$ Y, i7 ?1 m# s% o" z; [And you created the solution.6 c) p# Z" _0 T: u2 }
7 t* D: a: ^& U$ s5 J3 J! ?# s" @
8 I7 D/ I. D+ A% H4 }4 P
Then read the Neuz not the IP from the INI anymore. even if put in it
. w* m2 I1 n% [& Y5 d d2 X+ ~" W7 `! d% I3 Z7 A/ t
Max skill's
" V9 w) D( S7 D$ ^+ Q
" [6 G6 Z# Y' n, tAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc 7 `$ O6 A* d% ]0 k8 G; P7 a; v
: M1 Q* n* e" J5 ~% a8 m; ]
With the TUT can provide the remedy it
8 V. y0 a) ^' u' n% a
/ c0 ^4 f! }: r# 1 opens the file SkillInfluence.h
& B' C0 e0 ~0 Z# C: J% e* P7 h# 2 Search
$ l0 M' _7 u# \Code:- V4 L1 i& i" ?* I4 X
. o0 I( |- ]" S* n5 l# Define MAX_SKILLBUFF_COUNT 14' A( e9 r% F H, ]: K; u6 L+ u8 R$ F3 G
! ^& p1 P- e8 T+ ?! M9 P# 3 Change the 14 to your number (eg 21) and save it from3 Q+ a2 i$ u+ _6 f3 w+ B
# 4 compilation and ready
' @3 {0 R2 t7 k5 N% f9 `- R0 U+ P7 M) E$ v
2 l6 Q$ \% T9 N* g2 o
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:8 }% U( `, b2 c# ]+ x
! M1 T$ e; l5 k7 e3 G
dennisdra5 K! y$ @( y' y3 d* j, ]
.Crasy
1 |: |1 l7 i/ b( Z/ b©ross5 w5 G s* p5 d2 y& T
Sedrika
! ]' y, @% c- y
5 L5 t2 Y& [$ C( y: G& Yeverything 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! : a3 Z, @( H5 j! D, J& q
0 `$ E8 X& h Q# W" R; ?
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
2 O6 |8 v' {$ a- B" \5 _ I' O: j6 r$ e5 ^ a, ]1 L
' s4 |4 @0 |# f- ~5 W# CUpdate 1:
how to turn off "Profiler" in worldserver.exe
5 P/ X6 A: b2 i# \9 L( c0 K% W# ]3 j- E0 P F# o2 ]) \
9 o6 ?; a s8 b3 k3 {in VersionCommon.h of Worldserver Solution
2 n- {- X/ O8 a$ x* u+ Q9 l' zLook for
( g6 c! `1 x9 @ w
( S& z& Q" \6 D6 P9 o" v6 z) \#define __PROFILE_RUN
, s! n! L0 Y" Z
; ^+ e( g% ~' M* Icomment it or simply9 t0 D( j1 x5 g9 C; p$ s
4 @/ R' m/ `& r+ W& v7 i! z//#define __PROFILE_RUN 2 ]3 N8 b7 D1 j( g
! h# `" p: z* ^$ L3 Z8 i% B" D
4 _2 F$ i* ^$ P7 E# b! U* h/ ?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投寄。谢谢。我添加更多的很快如果你有病加太
/ {$ t n/ ^) I3 O! _" Q, {% W2 m$ n |