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
3 R( s8 E% f3 T! X: {. wchange level without Rebirth. m8 F8 X( K: A0 f B
" I* r4 x [8 l3 C2 kNow, let us begin.
8 e1 |+ r9 V5 m( i# g& w" `1 `3 Q" g# A+ _+ Q4 [& k
Requirements:* r% ^9 o8 x/ l( i! }/ u+ e8 Z
Source% e8 ?+ R: P# Z$ W' ?. X7 V ]4 O3 d
Notepad / Editor& \/ J' c; r+ g5 q# W
+ ~4 y, k* E! k. f6 v, S% ~
/ / Tips by Sedrika
* t; L( R& p: K% {9 z2 D9 G- z7 E l! x' K M0 f
It is up to you how you do it ^ ^
7 J" g& ~# v9 @* o: ?8 ?, C' V$ r
& }: R& s) ^$ M; o4 iGo into your source folder and open the definejob.h
1 X l" ~1 }; K! |( @: m0 WSearch there for:
3 M1 c0 s: z$ H2 @7 z$ A! L1 Q3 H0 [' X0 J$ t+ y) a5 j) a4 H
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
+ X7 l% s" L$ B#define MAX_LEGEND_LEVEL 129: K+ Z& n0 L4 v) ?
#define MAX_MONSTER_LEVEL 1601 |0 r- F* {- r% c" ?( r
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
) e' w) k1 b/ Z) C( v7 ~; h4 l5 }#define MAX_LEGEND_LEVEL 1218 F+ J" D ]& m- s( a
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
: |4 i8 n. _4 z+ y% L1 a8 ~* R7 i& r( U/ ?) J2 m
( G1 \4 R, |( W7 F q
Red: Player Max. Level
- x) h5 l( X/ _Green: Monster Max. Level
9 ]! J, J4 y- b# n) X: ~
% c- o+ D* c+ K8 VThese changes as simple as you want.
; e# T( ~( b. C& }; @& P6 b" {+ |9 z6 ]3 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.- N4 z. ~3 O$ s0 Z3 N4 r
7 q4 @( E% K/ `* |% t
Part 1 of blocking CE
/ r- Y7 N( t. b+ R# U3 A$ w! o. b& V0 S/ g
In this tutorial I will show you how to change the Head of Mark flyff.: E7 k$ K- F- R1 X! a! V
The current Head Mark is well known, 5E, which results as a string ('^').# Z- r( q5 G4 T0 b1 c
0 W" b) z' c+ W7 h, X! U! g+ H
For this we go to the World (Project) and looking at the Buffer.h after thistext
2 n! p: g. {/ }4 CQuote:
: ]0 t4 X. m) {6 r7 V& ^ ~# Define HEADER MARK '^' / / Normal messageheader
( }6 v! z: X: g$ l9 F F1 R2 r# Define SYSHEADERMARK '%' / / System message header- ], E! |. X% Z
What the Sysheadmark is looking for is not even the top 5E.0 j s. D9 e- m7 ] d! n! M
Change this and it makes the CE Not work on server.6 V! E% t' m" h9 M8 O$ g
n* h. U+ b8 G8 H1 V4 U
Then Tom's anti-hack is no longer useful.5 k; |* u3 i" Z9 P+ I; z
% n# h2 ^# A0 H8 z0 A$ y! u8 m# J2 p* m
LG Sedrika
Part 2 of blocking CE
3 E& S2 Y6 R4 z5 p) q* B$ n* E! L: V+ i9 i" Q7 `& Y
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.
* q( x8 M! ^" p" _. l3 H+ Y2 eWhat does this have an advantage?
, [+ E( {. {% e' N$ @$ W) ]The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself $ z7 a9 P+ o( o5 m. E9 H
5 k) U! s* u% G$ J# \) s6 \( r. n" w; j. q
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.) R" i R) w! Y
8 m7 g- Z* ]/ S" D8 W" v* I9 o% WThen search for the following content in HwOption.cpp ! |( d4 J9 U9 ?0 Y
, |, L6 F$ E8 O# x- G
( P% B/ }) l2 B/ X9 Q+ Z
if (scan.Token == _T ("ip"))4 X9 M( t4 O# A9 F% G: w- K" @
{
! y. B& v5 A! i8 u; l+ Q( g; |0 gscan.GetTokenEx ();
9 G9 ]6 P# X3 @+ L% @1 fstrcpy (m_IPAddress scan.Token);6 E3 Z: C" w7 ~8 I6 _6 C
}
2 w M, i7 U. e1 z4 ^" Pand turn it into this:% X- V2 p% B/ ?& W
Quote:
5 ^. v Q$ k+ D8 w. s8 i! t' xif (scan.Token == _T ("ip"))
* t0 f4 z; ?) g* F) J{
- } M9 o$ ^( j7 X! A' b/ / Scan.GetTokenEx ();, n* q9 k+ G. N; p% d% x
/ / Strcpy (m_IPAddress, scan.Token);
; z N& k: L4 c- n- S: m; l}5 R# y8 g% g/ @9 z' ?! ~8 ]! U
And you created the solution.' D7 T& ?5 H3 y0 x& ^# s0 T
9 @, A, ? l" G8 z. Y7 W* Q; p
* V3 U0 |1 t# Q; i _Then read the Neuz not the IP from the INI anymore. even if put in it& C0 ], L# X8 m2 Q
' @5 U& E. g' H% f+ b k/ \: B! H
Max skill's
3 F/ |/ O+ o& \1 x+ p3 [$ w4 Z2 [5 P) P3 H, V d& J, U, o3 L
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 T9 j/ ~9 B* k6 ?2 f( K. U
p" [) ^7 }5 N
With the TUT can provide the remedy it K5 ~' u! v- L, }% [
8 }6 z" [+ Q1 [5 k* h. r1 d$ r# 1 opens the file SkillInfluence.h& e7 } ~0 y6 [) z, f
# 2 Search
; G+ h( X% Y: [/ K2 g7 h# T7 WCode:
. ~2 u2 K/ K* ]% I
' u0 f7 n3 f* |/ A0 n# Define MAX_SKILLBUFF_COUNT 14
6 J1 K j9 ?' Z- N+ B2 H* _' U# Y: r7 V/ w( @& z; S& @
# 3 Change the 14 to your number (eg 21) and save it from
1 e- J6 Y% `7 q# 4 compilation and ready
: ^* s& u: t4 }8 J7 Y: A% q; b2 _5 y
# w, G* W I# L6 X+ s0 t/ T$ }9 D/ K
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:
& T, A* w: G9 F# _: ~+ P+ H9 S- a$ e4 k$ p0 M
dennisdra
0 Q7 `( G* Q9 z4 e! V* ~9 v& P) b.Crasy
& f' |0 T& w; P/ i: E©ross3 i h( h7 X8 N+ u
Sedrika
+ ]6 T! {# G& M! c; q) ?4 `( `0 R) f' c+ m+ o
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!
8 x; T6 ^5 j" s/ w+ |# u# U; J! N3 O t
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
# E3 Y0 n4 I. x8 V" d
: r: f" N+ J( T# H/ t7 W6 Q; u5 f5 U! Y
Update 1:
how to turn off "Profiler" in worldserver.exe , b6 a6 ?/ |! G, @/ B
' |8 d& z5 I( n" K( ^; ?+ y/ Q' o
' f y$ j, E+ @- V; I- O
in VersionCommon.h of Worldserver Solution
! N2 S8 ^% d3 Z% }$ KLook for( Y$ i4 k. M `& S1 _5 T! z
6 p/ D! n; ]3 W9 X: ]
#define __PROFILE_RUN
% L# O! n- z+ o. u' q' C2 x3 L9 L/ ]. m" c5 q5 i
comment it or simply; q" d1 ^, R% Z2 t/ `
8 B8 k% k" }. X( [- w//#define __PROFILE_RUN ( ]/ X; Z' ~) I* q8 q! |
. | n. G6 f' G' n9 ?) D
: g, v5 Z: ^6 Y' [1 i7 a$ Z- 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 ~5 A/ i/ n! h+ `& @
|