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
0 b3 X, l- Z4 ~, s! kchange level without Rebirth# q: D- i9 B8 k
1 W6 K# i$ G5 ]3 bNow, let us begin.4 y+ A8 ^0 Z- Y' u
( I# P: t( Q- HRequirements:# {9 s6 V1 P/ m5 E
Source( A% l8 l B% n9 n
Notepad / Editor
* E, f, {1 t+ B' n1 ]( n. g; g& [$ z& P* X
/ / Tips by Sedrika* I. `- ?; @' S( J& O X) m
( j+ r3 w$ D7 ]' V3 L$ B a
It is up to you how you do it ^ ^
* S2 F( O' d4 S9 y/ D. n0 W
% C( A [* W q4 KGo into your source folder and open the definejob.h! L8 I& T" W% g/ x! e1 |, l6 e8 q
Search there for:- C' H8 b4 y6 |. Y" {
# E% V0 f) P9 |" s) w3 ]#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
8 R4 e# N! C. ~#define MAX_LEGEND_LEVEL 129( @# G' {9 S2 G. n
#define MAX_MONSTER_LEVEL 160
7 `1 g6 N M D#else // 15Â÷ è÷¾î·Î ·1o§è®àå
# @3 q; I# O( k7 H8 @0 Y G#define MAX_LEGEND_LEVEL 121' |1 \/ k' w: x+ S" n+ K8 C% F2 \
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå & w5 ~' O- j8 r4 T2 O# t
% s: l9 {8 i! n& d+ j
: z7 X: Z) \0 Q, g% y, D) c, {2 zRed: Player Max. Level, d( K/ v$ b- _2 l3 s. i9 ?3 c" j
Green: Monster Max. Level& I8 ~: {; \* l/ H
+ K% l& j' X0 K' y$ ]3 YThese changes as simple as you want.
, V6 s3 y `( M- s: k/ L% B: V4 y9 t% Y
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
0 Y; P$ w9 T- x N. H- h3 n1 {% z/ Q8 h6 H. y, X
Part 1 of blocking CE 0 d6 c# j* l6 d0 C- G
+ o5 F ]# L1 m1 D/ O* aIn this tutorial I will show you how to change the Head of Mark flyff.# |, q' o+ p8 q5 C( B
The current Head Mark is well known, 5E, which results as a string ('^').% e; _& p# k y9 q. i
. l7 o" o6 F& S& rFor this we go to the World (Project) and looking at the Buffer.h after thistext
. P- _! D1 b2 G5 `" xQuote:8 J- C9 `) @4 L
# Define HEADER MARK '^' / / Normal messageheader
& H$ L8 k ~/ g# Define SYSHEADERMARK '%' / / System message header; t1 ]$ ?$ X1 }3 H, V2 y( c/ H
What the Sysheadmark is looking for is not even the top 5E.: n) |4 i8 l }. A
Change this and it makes the CE Not work on server.
- r* R/ a5 T: N5 ~# m S2 j, E0 y; D# w
Then Tom's anti-hack is no longer useful.: S0 ^ A, L- Z$ l/ s+ E/ ~
. ?8 J- r7 ?9 J# l4 f1 ~5 D4 z2 K4 K
LG Sedrika Part 2 of blocking CE 1 r5 _3 u5 P. i! s5 o
, }6 G& O5 b7 F z- m9 ~) \) f
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. ! H4 D9 d, }5 y' ?. d3 t) M3 a
What does this have an advantage?
: t% a/ B' `3 N5 w7 g% p; O/ @ r) v8 hThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 9 b' b5 J# I4 I) @- V S/ W
+ t5 O& ]. Q, i2 N: B- K
+ @) k$ h1 }# H3 }. n; y% KFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
* f3 ^" m, h& F
0 Z# e& M) u- }$ V/ {' xThen search for the following content in HwOption.cpp 6 {& L4 D) @( t: K8 r) i
, }' t! }. o3 i# m6 G- d
' F" g( J8 N. \if (scan.Token == _T ("ip")): `5 N+ y6 q$ W4 X( F
{" n# A$ e' k- I/ f
scan.GetTokenEx ();
1 h+ {3 x) z4 n! b* R H9 [+ Wstrcpy (m_IPAddress scan.Token);
# e: N5 d, R" P( a( i) B}" H* m* ?- \8 J. m; Z- h( u
and turn it into this:: l" B9 K& c T# `% S) ?
Quote:
5 R8 U- I: Z* `6 }6 H1 {! pif (scan.Token == _T ("ip"))* f' P: e) H" `, n7 Y; B/ m- y
{
! r% G) b- B; n8 c/ / Scan.GetTokenEx ();
& m+ Q, @$ o+ b) c1 g% h8 q/ / Strcpy (m_IPAddress, scan.Token); @9 i, I) j/ v1 \/ s+ ^9 c
}( ~+ H. N$ U5 b1 T
And you created the solution.
# \7 ~+ K; E4 N# U( Q% V4 m5 b
6 G1 x# ?' [- r+ L& V7 p* L7 x* ^% R! p+ b7 @
Then read the Neuz not the IP from the INI anymore. even if put in it
4 v L! A0 J) W2 j' m0 a
& A, u/ _0 d3 w8 `' T6 ? Max skill's
, L8 Q: b2 z f% A! y
3 e' I& I( k; p( h. o6 H9 g2 _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 " y( h! I7 r" q6 K5 O3 \
/ M* v% g' K/ g! n5 ~With the TUT can provide the remedy it
' F% d7 k; k0 k4 X+ _. Q0 ]& E, f1 U7 T2 ]" e) U
# 1 opens the file SkillInfluence.h
% O. r" b/ L" Y# D3 k, x# 2 Search# Q; w1 U1 u0 ^# Z+ I
Code:
3 O1 L& d& o1 z, b1 a" C( J
" w: B# R, K: r q: p# Define MAX_SKILLBUFF_COUNT 14( _' o( l1 Y/ ^2 R5 b! p
$ w( w8 O6 O3 D1 }* i& ]9 F
# 3 Change the 14 to your number (eg 21) and save it from$ L) r1 n% L4 G% W/ y9 W( W
# 4 compilation and ready
. Y6 O1 D0 ~6 S; ^0 c, s0 K3 S; l9 ]( g$ e5 k6 u
5 d' K! s E0 j8 H3 g$ a) R1 K" gI 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:. H5 E" \: A P
2 o2 b4 e) Q' B- }dennisdra
2 @# A: ?' p8 q* z; [- I* a.Crasy; w: @; @! u! Y5 \# F7 g7 w
©ross, t. h4 l- k3 O' M' m1 \7 Y3 x! h
Sedrika
+ K( k" E7 o( z$ u& e/ i/ A- p2 G0 A4 Y( D, R$ H( O* j
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! " r( j. R' T' G$ k3 q
p5 O3 P2 C3 M- b
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
3 q; C& L- X8 g1 \- C0 d% n! d
, U7 K( s5 _2 L" a8 d1 z# O- y4 i6 X ~ O
Update 1:
how to turn off "Profiler" in worldserver.exe
3 V; t' ~5 j# Q& }) [* F) g7 l
0 q( N1 i5 f4 V" ~
2 R' ~2 X% G, J7 r2 Yin VersionCommon.h of Worldserver Solution
- e5 w% j: y$ wLook for1 R+ S( o$ P. J
& ` t y8 P6 B6 ]* j4 Z6 j# d3 {
#define __PROFILE_RUN
9 d! D! f- i2 x, l. s: f; m8 [1 i: y, v$ a! m1 J
comment it or simply
0 m; C8 E |5 M; ~0 @5 g# v) ?2 S) j
//#define __PROFILE_RUN / r' M2 m2 x8 N9 x9 T& |: v/ Y
5 ^! V7 c- Z L) \1 G4 {# r3 U
3 \4 z; X/ T" T. Z2 t; ] icredits 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 s* t9 ^- B7 r8 S: c' X# c7 t
|