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 6 L1 u, @9 b n9 h! h [3 r
change level without Rebirth
9 N% W3 m0 x' l! Y
7 s. l' |. |% X ?8 ENow, let us begin.2 v1 P% X# j$ g. s5 H
# J# N) [+ h" ~6 f
Requirements:6 @* g; u, e s9 g2 G0 N d
Source0 z2 Y5 r6 X; I" z
Notepad / Editor
# F4 k7 N- s7 t3 v7 y) Z) m. z2 h9 e0 e' {/ r
/ / Tips by Sedrika2 I6 h: H* c; S& f! ^" S& u" u/ F
5 r0 s8 [2 W1 I3 l$ Z: Y
It is up to you how you do it ^ ^6 g0 V5 o6 u: ^4 h* @# D5 T
! A5 \- [4 V7 K6 y# z6 I
Go into your source folder and open the definejob.h% {4 y% s- P7 w2 p7 C9 P
Search there for:" G4 h! L v% D4 N- b+ c( H
$ d3 X2 D$ @" ^2 U4 M1 U) Y' T( h
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
& {, s- X# n9 E3 Z- J' k4 m#define MAX_LEGEND_LEVEL 129
% u4 ?+ Y6 q; l% W6 e* w- u. u#define MAX_MONSTER_LEVEL 160
5 @/ x- S4 ?4 T0 S9 |#else // 15Â÷ è÷¾î·Î ·1o§è®àå. h( f& w6 l) V6 u( {
#define MAX_LEGEND_LEVEL 121
% q; n2 v# P/ g+ t0 A* w- M& U#endif // 15Â÷ è÷¾î·Î ·1o§è®àå # u K7 X! M: A+ C5 L9 N G/ F
s+ {( N' p9 z* A& y# I! L: m/ _+ \8 U6 H2 O/ b: S) f
Red: Player Max. Level
t2 r7 _! a, h0 XGreen: Monster Max. Level0 F. x4 e# B. d5 [2 i
$ p- \& p4 k9 EThese changes as simple as you want.
; l% G x3 v4 e* n0 d3 r ?- E' B9 S9 }9 p0 _: W
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.% {3 `' C. s8 U' a6 v( x
* V9 k( r7 @' a( I7 |: A% @) g/ `/ i
Part 1 of blocking CE # C1 A" C% H1 ^
! Y1 U# `" W- R! i* y2 SIn this tutorial I will show you how to change the Head of Mark flyff.
8 p; O. x9 _( s8 T& \, {0 eThe current Head Mark is well known, 5E, which results as a string ('^').0 L( C# Y6 \1 K* f
; t9 y* h: y$ \1 S2 JFor this we go to the World (Project) and looking at the Buffer.h after thistext, H6 v/ u4 r+ f5 a. M. z: c
Quote:0 Z6 l6 ^# r* d- a
# Define HEADER MARK '^' / / Normal messageheader3 B# ]9 J# A- m) F' [0 W
# Define SYSHEADERMARK '%' / / System message header1 ]5 ?: d" Y6 s+ W
What the Sysheadmark is looking for is not even the top 5E.
9 n# s' d5 B! T5 r! E9 f3 WChange this and it makes the CE Not work on server.
3 |" S0 p. y) x% T
" I$ k: L9 ]. { W$ `6 `Then Tom's anti-hack is no longer useful.) P1 l2 @5 i* x8 P6 u+ t1 U6 y
! p1 g1 a+ ]# L, Q. P3 m3 a/ E
LG Sedrika Part 2 of blocking CE 9 e! l+ b' F2 B; J
& C# [/ E2 v }- m# d; Y/ ^8 \
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. 5 x ?% @. D0 B9 m8 c ]0 M0 o! n
What does this have an advantage?. p! `/ d' a0 r$ l' c
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
3 k. r* c! O2 l8 r
2 [) {4 p M6 ` r/ S7 ~8 n1 P; r" v) v1 z4 A5 ?
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.5 P# r, \" o/ F) w% F& u4 W' w
* y. w" _9 d4 F' J7 b' R$ P1 }Then search for the following content in HwOption.cpp
. c8 b/ f0 ^. _# C% `' ~0 c5 J
0 O4 D* W8 W# a$ i9 V8 V& F0 q8 m5 _
5 z2 }& ^4 j& o' s* Aif (scan.Token == _T ("ip"))
1 q+ \) Y/ \9 r/ k0 `{
x; [$ u. }: l* P; T3 Q% ^scan.GetTokenEx ();
( F- d& U# L/ ^9 b! w7 D, }strcpy (m_IPAddress scan.Token);4 @+ ]! M/ }0 B3 ^9 d
}( M, Q8 w6 ~, [8 b, h9 g6 S
and turn it into this:7 T1 O4 t1 _6 z! F; s: H. n' O
Quote:
0 z7 b' ^5 p( {& }- h5 dif (scan.Token == _T ("ip"))0 Y& y, t0 N! S" A( e8 G! ?
{
. e* e+ N% f: ]5 G1 ^/ / Scan.GetTokenEx ();% H x* T' C+ q9 t4 B% L
/ / Strcpy (m_IPAddress, scan.Token);' ?4 o$ ^% ^3 t0 \$ I4 |7 i
}5 [$ Z3 j2 n9 i3 S$ |/ p$ N* p
And you created the solution.* x# z/ g8 Q3 l
2 J N1 k l: ?/ |- }3 ^
% l; P- f! n/ q$ a) l
Then read the Neuz not the IP from the INI anymore. even if put in it) s1 C8 d* }1 C# a& v0 Z( X+ h6 F
" A: e3 ]. L# | s0 r Max skill's
5 b4 l9 O& S b) r& T! n* M
8 I# ]2 p& q* ^3 j" d3 y, vAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc ) W6 l- k0 D' S9 X4 `, g* o" Y
( d7 M. H0 g ^8 ~With the TUT can provide the remedy it1 S _& k7 [) p3 n4 j# y
7 ~+ e% H0 R% S4 _2 C$ ]# 1 opens the file SkillInfluence.h
6 g9 Y1 k4 S4 ?# 2 Search# O- s* h6 z+ ^4 v, o
Code:
( s6 S" O8 }" y' R" w( e( Y+ U% v# V) x+ z) }* X
# Define MAX_SKILLBUFF_COUNT 14
" ~" y* D- }' K3 C# v0 R* M3 W( l4 \: d% G/ D
# 3 Change the 14 to your number (eg 21) and save it from1 L/ Z+ g3 s! F5 y7 w& D
# 4 compilation and ready
" A% {* [% b) D( M. m' H1 T$ T5 { T D0 |% S* d
- T5 t6 s8 ]( UI 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:4 g" t% r5 c* c- b, |' f
) K7 b2 i3 G2 L% b$ W1 S1 |1 Sdennisdra
9 V& N4 M' b+ O1 H- G.Crasy$ i0 g& n1 ~! k) ^/ k) Y% S' u
©ross
; z2 b: L+ Q; P. DSedrika
) j1 T( t+ Q5 [+ a: Z
' n8 ]* V3 t" O. U; j+ Veverything 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!
- e$ P3 E8 ]6 n: v% U- g+ Y9 V! S/ B' R; Z/ ^3 W8 ]* r
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less( s: j3 b: V4 a# o, E5 r
/ F( G5 q! L7 ]! ], j1 n
( e- o3 |* ?2 K1 \2 bUpdate 1:
how to turn off "Profiler" in worldserver.exe 7 r, Q& N3 I d4 N9 z/ ^4 v
+ F1 J i& A. q4 N: j5 Q; X$ c5 {% ^
! P, k' i% b" R: M B7 j5 o5 Rin VersionCommon.h of Worldserver Solution9 S+ I7 ` M- e, z; V4 ^
Look for
. D# f1 \; g% V3 U) n, g
# ^, y' s3 K8 d+ m& K#define __PROFILE_RUN9 d2 Z1 l2 t- @$ N3 [
: U( }6 O' x5 P
comment it or simply
' O( W* Y. h- x5 x+ T' k# ^
+ G- s, y' F. k- g. ? n$ o//#define __PROFILE_RUN
: N9 A. ]5 n* R' s" s5 m
$ {$ p1 r: T4 j0 Q& q3 j0 x x1 Z, T2 v4 w8 A
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投寄。谢谢。我添加更多的很快如果你有病加太 ! v5 S2 G! q& s8 ^; A6 |4 d
|