|
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
- X8 Z8 Y% d* ~1 E) p! c+ B& O) mchange level without Rebirth7 G# ]6 `( f! o6 a4 |* q/ ?1 {& [
H7 y$ F, B) Z9 t% j4 xNow, let us begin.
$ I( F4 i6 V( r) v; \
' g) P! l0 ~3 p$ y! t7 c- V8 YRequirements:
. u" V" F) Q; C; t5 K, {Source: h H# E1 y. f! J. B; N* E% l4 l
Notepad / Editor. e$ y; A s, A+ ^ H, B' c
; ` A+ C" o8 F* r$ s$ Y/ / Tips by Sedrika
, Z4 D4 C, K! B( @! M5 b+ H9 `9 \& L, K; F( f4 z
It is up to you how you do it ^ ^6 G3 A2 ]5 ~* v. s# V ?7 k
; W6 W- z+ y: v x1 J& u
Go into your source folder and open the definejob.h
_) q: n9 y4 g7 ZSearch there for:2 L2 J8 V: k* N$ ^ v) W8 N. d
2 t# e3 c; I& t" W% M
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
; T0 e: D, K3 ]- p! n" L#define MAX_LEGEND_LEVEL 129
) u9 ]9 ~" H/ i4 J5 R1 p1 D ~#define MAX_MONSTER_LEVEL 1603 A9 r1 q0 l7 u8 D( b& t
#else // 15Â÷ è÷¾î·Î ·1o§è®àå' T5 C( _( D3 Q# H6 f
#define MAX_LEGEND_LEVEL 121
+ y/ f! s9 o) U8 x' {4 v5 F#endif // 15Â÷ è÷¾î·Î ·1o§è®àå 7 R* {, M2 q5 N, ~9 r
* |7 S7 Z! d* L+ v7 k$ M$ K
0 v5 y' }8 f! T! K2 L$ v4 i9 }2 iRed: Player Max. Level
' @4 K3 U5 }' @5 t! X3 c! |Green: Monster Max. Level
5 x+ }5 ~+ L( |9 I2 D+ ~$ K, \% A; d! ?" M
These changes as simple as you want.
& h" Y. q8 U( b* t
* M W' I4 A3 CThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
; N/ `# D4 Q: |, @0 g: \9 b( R# C! z5 u9 v, T9 R- w# ]
Part 1 of blocking CE \6 R; h" h6 K- r: O' ^
( A7 X2 k: o; `& d; n; r5 u
In this tutorial I will show you how to change the Head of Mark flyff.
0 j/ A/ R3 ]7 s: FThe current Head Mark is well known, 5E, which results as a string ('^')., n3 m$ Q! O" w: j" O, t
) i6 {$ W! `2 i( uFor this we go to the World (Project) and looking at the Buffer.h after thistext
% t; _! ?0 F3 L+ F6 g1 H9 k lQuote:9 D. I: j4 E9 J1 ]# W
# Define HEADER MARK '^' / / Normal messageheader
8 w. U/ V* F' }( x) h# Define SYSHEADERMARK '%' / / System message header
, [* j- i4 o+ X1 C2 d8 eWhat the Sysheadmark is looking for is not even the top 5E.
5 {7 S! i, ?, v* H9 X1 PChange this and it makes the CE Not work on server.
: W) s0 r( O2 Q$ H l& C& R) V* @# w; q
Then Tom's anti-hack is no longer useful.0 N, k ^ c1 q( i
0 C/ r5 J; w- u3 bLG Sedrika Part 2 of blocking CE
2 W: ~7 u/ P# E, q6 X! `- j8 G# t1 C$ {
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.
I8 W" }" t/ m+ wWhat does this have an advantage?
+ X8 }5 [4 ~* t8 vThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself : P7 E: T# j0 R
' e9 ~8 j7 w/ u
1 n6 G2 l4 ?! _0 g7 }- YFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.# U" a: R/ P2 l+ w
" ^! O& k5 p( ]) f3 H4 `
Then search for the following content in HwOption.cpp
$ A' |; S* U* x( B0 j+ s
, G" o4 i7 J& d+ m! N# V! n) d: y+ k# n+ X1 U% [
if (scan.Token == _T ("ip"))- o, @7 A, c, \: L9 }) ^" K
{7 E) l' T t7 k
scan.GetTokenEx ();! B: f( t0 W- i
strcpy (m_IPAddress scan.Token);9 H6 H5 [1 j, n$ s
}& q8 A- z# p1 {/ K$ W: A" W
and turn it into this:5 _" H! z- E* `, A7 U
Quote:" Y% @; r8 j1 O% N
if (scan.Token == _T ("ip"))
- B7 W, z" x8 a/ f) O" o/ k{
5 r5 z( M4 W% D1 [, x& J2 T/ / Scan.GetTokenEx ();
8 D+ b6 ]& t& r& I9 c) [8 Z/ / Strcpy (m_IPAddress, scan.Token); G& ?( }- k. g* `) A t& m( H1 k
}
! w( W/ `* T) I) IAnd you created the solution.
! R* ~$ I C, j3 u3 l; X& w; x1 j
* ?# ?2 G+ Z2 D( P) v% ^5 U, i0 T7 ?8 B0 B+ Q+ ^' K
Then read the Neuz not the IP from the INI anymore. even if put in it
* c( l$ m/ s: u1 z$ K7 h( ]
) [) B& N) |" Q3 T7 R" w
Max skill's
4 `% u0 P/ E0 Z
2 @/ [9 W" s7 V9 _1 l# [5 }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 3 `. n, r, ` g! f# f# X" C
, C b4 m/ U, ~With the TUT can provide the remedy it# B2 ^+ ?) x+ S& M9 R; @( v
! ^- e) m) f3 F, T' s2 D" j7 H# 1 opens the file SkillInfluence.h6 s5 ~+ X% m+ @# b3 f/ ]* H/ i2 f3 w
# 2 Search" S: b2 v! t8 W
Code:
! p# j9 u) N: f& S% j, z5 ^" }# u1 r5 d/ G' e) G
# Define MAX_SKILLBUFF_COUNT 14
+ m' d# w1 P. g( [" J3 y
6 B' u) p: ]$ n; o$ D' D+ h# 3 Change the 14 to your number (eg 21) and save it from
& c! P( b9 f1 I8 [# 4 compilation and ready3 P, N2 [# a& V* ~. c4 z4 P# N
; c: X3 z; q" p* T+ `! b- j# Q, i
7 E. F- X' h- z7 o7 e1 W
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 a4 z9 b: x d6 d# p2 K
; N% T9 ~9 I( K( wdennisdra6 F3 a9 \8 U# Z
.Crasy; b9 Z% @3 ]- @ a' h* n
©ross. n& u! q! ?9 |4 T' C
Sedrika
+ w9 t r/ x( z6 D: w( x7 R
8 j: Q. N3 d Teverything 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! 8 C9 J- o0 ?* Q' E3 e o7 X8 u
% [8 F0 f4 B( C" RP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
* c2 w7 @3 z# ~. V8 n7 }- Y
6 E6 L8 k5 i. Y7 ~8 X: G7 i( L! I. i% l% T- L
Update 1:
how to turn off "Profiler" in worldserver.exe & A( g3 T8 O- O+ S0 Y0 D
# ^2 i9 m5 P& q& ^ O% T! l* t
% r- h0 R9 L R% E! `8 kin VersionCommon.h of Worldserver Solution
* E# h5 Q& P$ E& p$ t+ T* VLook for
' g [% s9 n- `; _1 _. R8 z- h2 O6 t4 i) o. M1 S
#define __PROFILE_RUN4 q% `& n. R0 d/ k1 N6 m
& A/ Q! j9 }- T6 `) _comment it or simply5 p$ C7 R5 U- j9 C" Y+ ~5 o
4 |/ i; N- @+ o8 p) j) ^) U; x1 y//#define __PROFILE_RUN
8 [3 J" D' I( n' O& ^# _$ I3 T9 W1 D6 b* z
0 H7 K0 `2 B% z; Z9 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投寄。谢谢。我添加更多的很快如果你有病加太
6 Z6 q9 k' W, N1 K6 g |