|
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
" a6 s" d, J! A* Echange level without Rebirth* a3 `7 v2 C- z5 M
3 ^! K6 M9 G [9 }# gNow, let us begin.
3 Y: y% r- }) x6 G% D% h4 J' Z, D7 s/ o$ J4 s# A7 ^
Requirements:
7 v9 T9 V4 x- b8 S2 s; ^/ ]Source R5 b8 y+ o) O$ M+ k; B. j
Notepad / Editor
0 ]$ x& @0 i( s0 i% o4 e. @6 j
$ O) i. m9 _; g) H* W8 p2 u/ / Tips by Sedrika
4 U0 G! ~- S/ L6 q; s0 ^" L. \; K+ U# a+ I2 c9 G
It is up to you how you do it ^ ^0 g* Y. o( ~3 W/ K
& B* L' M i9 z# ] V$ p! ]; J0 |Go into your source folder and open the definejob.h
3 \' F* g) O# O( Y# USearch there for: z$ q! C% W& v2 H7 ]0 j, w' I) Q
. A4 D0 d, e* @6 f" b; u7 m# m7 j; \
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
" `. \, P# ], Z/ I6 i* V#define MAX_LEGEND_LEVEL 129
, h* h* C- W7 o2 T0 L6 w; H#define MAX_MONSTER_LEVEL 160; G/ C, N1 s2 d
#else // 15Â÷ è÷¾î·Î ·1o§è®àå( j" I$ F4 r2 B# e, s
#define MAX_LEGEND_LEVEL 121
' Z- x( ^4 @' K' x: l#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
2 m5 y. ^4 ?- b' s' P% ^/ D8 Z
4 f9 _3 ~! {( U: Q( |. [! W1 K8 `6 y) l/ y5 D9 ~1 w
Red: Player Max. Level
* w: j u/ s$ ` @* b! XGreen: Monster Max. Level
6 ?; i0 E7 o/ Y) ]$ C: {( R: F8 B% F
1 X/ l$ f) R* e9 k$ uThese changes as simple as you want.* H! @0 U0 X. P4 T1 r5 ?9 m" K: n
( ^# ?% j* G0 B
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
6 Z5 p2 @% @# |. L7 F& r
& q# _; S# G8 {% u, n, w# l! t! q2 }
Part 1 of blocking CE ' _( L8 v! Z' ?7 L8 f' I) G
) E$ t$ h" I& I! m
In this tutorial I will show you how to change the Head of Mark flyff.% n" T" f3 a) g- j+ f, {* O
The current Head Mark is well known, 5E, which results as a string ('^').
+ J8 }; A2 B. P c$ b8 S# Y; k& V2 k' e' T
For this we go to the World (Project) and looking at the Buffer.h after thistext. V) \# n4 y; i: x1 ^
Quote:
/ b% v3 a, ]" I+ X9 V5 I# Define HEADER MARK '^' / / Normal messageheader
; K# @0 O) C9 A" u* y0 q# Define SYSHEADERMARK '%' / / System message header9 R) y3 O9 f/ o; a% I! N S
What the Sysheadmark is looking for is not even the top 5E.6 [7 @/ B* Q/ S# r2 j
Change this and it makes the CE Not work on server.. H [4 t, c9 P
0 D' ?: z- |9 IThen Tom's anti-hack is no longer useful.
q4 i8 Y/ t. Y' [- N) g- B( J( R% m; H
LG Sedrika Part 2 of blocking CE + v6 T; [( K) A+ f: r5 W7 A
I* Z4 ^" D* W% a5 rIn 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.
2 n7 z8 ], e. S5 T# P! SWhat does this have an advantage?
5 {9 {' ~ s+ ?6 Y+ \0 oThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself ' o- v2 \/ W" [- C, R: y3 M
+ w& F6 [- r0 X) {4 Y/ |3 f. {
5 D% K3 o& Y+ i3 @) r3 L+ X2 ]2 N
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
" E6 p( J- e2 U( K
& X4 X4 ^- x3 E' AThen search for the following content in HwOption.cpp 3 A# ]9 ?5 A: Q
( b; R6 ~, n7 ]5 K' B
2 L9 w& k- N1 j6 n, h! |
if (scan.Token == _T ("ip"))* T0 m& w* d# ^4 Y, ?; _
{0 u/ e% @6 c& \6 k8 s$ S
scan.GetTokenEx ();
. y* L) o% r Lstrcpy (m_IPAddress scan.Token);( J1 O3 @* f3 G- v6 @; K
}; u8 F0 d. P b( E, N5 |1 m2 X
and turn it into this:
* j8 l. U' F% K* WQuote:
2 k( h- _0 m, ?' iif (scan.Token == _T ("ip"))
, J7 s/ K5 y8 a( K5 \8 l* s{
$ Q4 E) D7 |! ~! J+ Q& x/ / Scan.GetTokenEx ();6 y _' U' q/ ^3 F2 ^+ W( p
/ / Strcpy (m_IPAddress, scan.Token);/ Q) ?& x; u# e
}
# c* L. }) x' z- ZAnd you created the solution.
. c# k: C" C- Z' E& a' W9 b. o0 [1 k$ v* U& t( q, V
. g/ T: u8 B' m) m- ^) V* }% O
Then read the Neuz not the IP from the INI anymore. even if put in it
- t3 n H6 _' @! s5 ?
9 ~( C& d! h+ Q( u" A' E% W Max skill's - K) ?$ m8 {0 w( x9 k2 D
* z" P! p2 n8 K; n
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
4 b! {/ d$ \" U1 |+ y1 z
( v9 o7 i( v" _* n/ NWith the TUT can provide the remedy it) G" A! q1 v4 i+ Y
2 g2 W+ \7 a* f6 F# n1 Z& [2 O7 B
# 1 opens the file SkillInfluence.h$ l5 F. S, X* A9 J
# 2 Search
# L' \! t) T! aCode:
9 L. q/ h8 m K$ I* _3 ~* `3 F5 _( D4 G9 H2 D
# Define MAX_SKILLBUFF_COUNT 14
% ^( d( S' g0 L B( D, ]4 S/ ?- L$ P$ O
# 3 Change the 14 to your number (eg 21) and save it from" I* V) g( F. S
# 4 compilation and ready# \7 c3 t0 p( m8 I
9 _+ @, G; z) E; t7 Q" r- d2 K
+ X$ d& @! V* N: S8 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:
' e9 c& T& v3 j& g# s0 W$ S- z9 k) {
dennisdra1 N; a6 v$ j0 q$ z' [3 h+ }
.Crasy n& I, ^4 d k* Q# |( ~& K5 w
©ross
# p; C: L/ A3 Q/ mSedrika
% U% J' }/ Z% e" F$ _* b D6 c0 v& l7 m0 r, n
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!
3 u N- r, j9 R! y8 K1 q/ n1 k7 K! @
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less0 \: R, i5 p0 f$ X& o6 ?; V! U+ A
. H4 Q- P# Z& f
% \" ]4 P1 C% g5 H4 a' x( _Update 1: how to turn off "Profiler" in worldserver.exe * S) `' g' O2 `: h; V
9 Q. w. L1 [- N' p8 X- f% H+ v$ s
- h; G0 E9 b* [* i( \in VersionCommon.h of Worldserver Solution
5 Z4 z$ Q* s* E0 GLook for
' W) r X# Q# d9 K$ S1 S6 t1 n' B8 F. H& ~7 I& u8 c' v: ~
#define __PROFILE_RUN; K" ^& B' \! T" C% o, O
) X8 X0 x1 R. \: w2 E
comment it or simply. H% b# M4 Q# U. `
+ L& j4 {1 b7 |' f [4 @8 s
//#define __PROFILE_RUN ' `3 q' r/ v; N, c# D
# w1 h9 m2 u# l5 }+ i: V8 E- w. F: k( J' Q
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投寄。谢谢。我添加更多的很快如果你有病加太 ( D( L9 p. t( R
|