|
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 * p2 J8 o: F, I) M" y( w- T
change level without Rebirth k5 w( i9 N( i E1 M; X+ ?
3 W3 K4 V" x( n; O- U) I8 \Now, let us begin.$ \4 C) _# U, Y6 H1 N0 K) h; s
. ~; \& @0 G+ w/ a- S
Requirements:
) u! p" [6 s1 Y( i R, n0 `- ?Source
* |) }4 i+ y9 C, l0 ANotepad / Editor
# z/ F6 Y1 w$ X) G: D5 i/ g* h! d9 w q1 \/ _! r* L/ @
/ / Tips by Sedrika
6 n1 ]7 `4 G9 x& U/ y) j8 i, z7 Q4 B8 ]$ o+ e/ n
It is up to you how you do it ^ ^
* M1 C" ^( t7 w7 d8 B+ ]9 {5 D. V# B$ l' F) ~3 q- a4 V5 f, U
Go into your source folder and open the definejob.h- Y( N9 ]$ Z& M. E; E& ^9 S2 i- X9 ?
Search there for:& m8 i% C! a1 l& [1 M
8 F6 u8 I% z' B#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
, {1 I# D& c, M5 R0 z( S4 J2 }, l: h#define MAX_LEGEND_LEVEL 129
3 [1 L b3 `) u, B7 N! X: p! c#define MAX_MONSTER_LEVEL 160
i3 `+ ? s1 `2 b1 _) L#else // 15Â÷ è÷¾î·Î ·1o§è®àå
1 j8 b4 {' O. u; D8 t" W( K#define MAX_LEGEND_LEVEL 121; T; D# R( K1 H# l2 ^' S5 ^
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
+ ~( k$ v, b d) T/ y7 w$ d) `* q5 S! V
" l2 B- B* N8 d- _( f% o, S4 mRed: Player Max. Level* s3 G1 r$ R, O1 p0 E' {
Green: Monster Max. Level$ `' x0 T0 ]. y0 m- O+ T
$ Q( `- x; g2 ?& EThese changes as simple as you want.
7 P8 A* x/ R, g, K5 r4 S
# g9 [7 j4 k/ C' V; X! X2 X- XThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.4 i' ?" ?3 b4 q9 }1 p
& r1 b% D4 z+ P* q; P Part 1 of blocking CE
7 T0 U9 W8 j/ b1 g- D& E
% E. R3 ^7 _9 s. N7 H4 ~9 A/ YIn this tutorial I will show you how to change the Head of Mark flyff.$ h) G' L, e) U- |
The current Head Mark is well known, 5E, which results as a string ('^').( }/ b. j5 l) k; y3 G7 x% {0 [7 U
5 ^8 @) J$ I/ t" A) S$ I2 OFor this we go to the World (Project) and looking at the Buffer.h after thistext
& ~! |3 P6 L' ~6 |Quote:
) r1 V7 C* N7 K; a' h" W9 j7 `# Define HEADER MARK '^' / / Normal messageheader1 x& A5 ^- z1 J$ G+ \0 F
# Define SYSHEADERMARK '%' / / System message header
1 k6 H) ^# w+ P; L, M$ T8 h' XWhat the Sysheadmark is looking for is not even the top 5E.
1 o- d; x7 p5 p# G) E$ nChange this and it makes the CE Not work on server.- W: S& ~( k- \; W. A
: @* U7 G! C" yThen Tom's anti-hack is no longer useful.% J* a7 ]- l$ l" g9 g
+ m; E% }, @6 u7 a6 L( SLG Sedrika
Part 2 of blocking CE
9 x/ o, d$ q- }! f3 {* _) R* D; E2 S; V$ r' X8 t4 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.
: c) W7 C" D' Y: L' m* d' MWhat does this have an advantage?
: b7 @" l& W J! u: J8 EThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself , d- d' `4 c) g( q) _1 p! S
2 m: i, ~) S" j2 S) H5 m8 W1 U
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.& ` g" |4 e6 |. O/ h
* y G- e2 f! ?: x% G/ dThen search for the following content in HwOption.cpp * w1 i3 M- v' S3 F8 k7 z
+ H' G& H T+ f" W h1 o. D
6 j8 b: z4 [! }$ ^
if (scan.Token == _T ("ip"))0 j% r/ p. A6 p5 n$ y7 R& ~) _( _
{: x2 d8 e, q. }, s2 I" L
scan.GetTokenEx ();
! C! X4 P4 B* W3 m$ lstrcpy (m_IPAddress scan.Token);1 j0 I$ T |' V0 g
}+ X3 b8 f. H/ P5 v0 O
and turn it into this:' h# c, R. B' U3 W( h
Quote:
4 c: `) Q( a# d2 Z) e' nif (scan.Token == _T ("ip"))8 P! q; Z6 R/ |' u7 t( o; k2 ?5 j0 ?
{ A. o0 T& ]8 Q8 w, V
/ / Scan.GetTokenEx ();
- T; W( q: \( z, F W. O/ / Strcpy (m_IPAddress, scan.Token);* T6 r; i+ Q3 V( g- M
}3 A5 B U9 x' l7 c; h& L9 o
And you created the solution.
0 m1 s8 b' }5 i4 d# N
% f- P e: Y( |$ _9 h) }) E) ?# w* d6 P2 \
Then read the Neuz not the IP from the INI anymore. even if put in it
( a- a. W2 `" P- f5 j$ d# E
- H' C; C* n! H1 h6 G0 X( s1 O( A" r
Max skill's
) R+ j6 L X8 @. ]1 R9 p h/ ~1 D" y- ]8 H
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
# ~6 E( Q5 [/ Y9 } {: M) A4 C& s8 U5 Q' E# m& F }
With the TUT can provide the remedy it
, A2 |( E T: t" Q1 O6 D
* V* y2 x5 g) Y& h7 i# 1 opens the file SkillInfluence.h
& Q, C( N4 t- i# 2 Search! e. i$ [; {6 s3 ^
Code:
( d9 K4 J! n$ m5 s. w
( S5 _* k) J. N' R# Define MAX_SKILLBUFF_COUNT 145 O, L, u' a+ H% c/ m
& N: r' s$ L5 `) ?
# 3 Change the 14 to your number (eg 21) and save it from
$ P& F9 w; g3 C' E T# 4 compilation and ready& F; q+ x' B! F# z4 o) S
( ?9 d3 b6 e! e! O
# y2 Q5 f3 v- ]4 W- {7 ^( y4 pI 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:& I; [6 `0 n. ~
' T3 n! n0 i z5 ~
dennisdra
) {8 C3 w5 {& Y, _5 r" x2 R.Crasy$ g, M0 ?- [. r' Q
©ross* w9 P9 V' ?. K# L, G" O+ E
Sedrika
/ X/ O$ O) @& }7 @7 C7 g% q, ^$ B; u x8 Z! ]
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! ) W# a" x1 C% J/ \1 X5 g
: U6 w. ]1 s, Y* M) ]0 A) u: F5 p! e
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
, |+ l) x$ k6 `# w# X' q/ n- Y+ C9 t6 [+ T9 o1 T, t6 j3 J/ F3 {
: G! p$ o- ?$ ^0 Y) o' `' o/ rUpdate 1:
how to turn off "Profiler" in worldserver.exe
3 @+ ]/ }6 f+ `* _$ M
8 x/ h' j" k0 ~( O4 B" z# K# B. z1 J. l
in VersionCommon.h of Worldserver Solution N! \# I7 @# o# Z
Look for
% U3 `7 I4 Y( o7 R3 t
* ]: C6 s9 G& A: N#define __PROFILE_RUN
: ^# P4 c+ `0 `6 q2 a0 _5 H8 t7 n! h; @7 p; a& Y
comment it or simply
1 a# k) K6 K! x5 |3 _
2 D% T- f7 G5 L! Q2 T# U/ w4 D//#define __PROFILE_RUN T) s1 f. W, j3 W- y4 W) k$ Z
: J; u1 F8 p! \0 C+ h' f/ w
2 N: F3 g( x4 J% y! e/ _- e
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投寄。谢谢。我添加更多的很快如果你有病加太 5 L6 t3 g8 O' `9 L6 \; x# N
|