飞飞世界论坛
标题: 改变最大等级 [打印本页]
作者: admin 时间: 2016-1-10 03:22
标题: 改变最大等级
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
. b6 Y( [1 @8 z. a. k4 cchange level without Rebirth7 A/ ~% }. B% T/ S& C- e
* H3 ]: w1 S$ H$ b9 M
Now, let us begin.3 A% e) u- A) Z) J: g: ^; |
+ p& t$ A) g9 {# ]
Requirements:3 K- `( N- O9 L( q: g6 k
Source
, g1 o# x& u* C% j0 g' vNotepad / Editor; j4 P2 Q: s y, m4 f( Q
2 Z, ]% N: k V, p: T# A0 n; Q
/ / Tips by Sedrika
4 Y6 @8 u& i; ]# l& l% D( u4 z* P; D! r9 H
It is up to you how you do it ^ ^
5 n8 r* u! H8 S1 e* ^8 V1 |7 z
% I& m- E1 e4 j3 nGo into your source folder and open the definejob.h
! }# z# H b0 V0 y% }Search there for:
) ~8 U: s; L6 j
7 u1 E+ U2 A: N7 M/ E$ q#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
% @1 N) V' I& E F ?#define MAX_LEGEND_LEVEL 129
2 E) |$ w& F* O0 k! ^# d; P6 k#define MAX_MONSTER_LEVEL 160
3 B+ Y, X) I, j- L#else // 15Â÷ è÷¾î·Î ·1o§è®àå1 l* B4 E% l; V1 R0 m# L" V
#define MAX_LEGEND_LEVEL 121
4 w5 _; u7 i3 Y: m& O; o; Y1 J#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
+ K _7 s) i8 h8 J. R1 P' l3 D( H+ P3 M6 [
3 l0 o; q# i% B1 X
Red: Player Max. Level
# O& q f7 g3 P9 CGreen: Monster Max. Level5 Y: M/ Z: y0 K) X6 \1 p& ]
. C8 a" v7 v* @0 N5 g
These changes as simple as you want.' W8 a5 L. k8 v+ L, [
2 D3 S$ B& U: D+ g9 s7 hThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
& C: {! X- k4 {& c) H+ T
# E. `2 z1 f- |, N U
Part 1 of blocking CE
7 D) U. `1 r4 C: H6 n7 c) O2 u
2 ^+ j! C" n: n* _In this tutorial I will show you how to change the Head of Mark flyff.
9 R; K- b& X+ T, I$ ^The current Head Mark is well known, 5E, which results as a string ('^').% h9 m( E; N, s2 k* m) F
O& ~2 F& b% O! v( l3 f7 f3 A
For this we go to the World (Project) and looking at the Buffer.h after thistext( K4 M1 U- S, J
Quote:3 u6 p- ?, W. r0 ^0 J/ S' w
# Define HEADER MARK '^' / / Normal messageheader
: H! y n- h2 d- b# Define SYSHEADERMARK '%' / / System message header. `5 z' Z6 a- b, }9 f1 n& n" I7 e
What the Sysheadmark is looking for is not even the top 5E.# _1 {( l6 L1 @/ z( N
Change this and it makes the CE Not work on server.5 x/ e! U: I* v9 v; _) u
9 L* H* [- Q7 W. z0 [9 w
Then Tom's anti-hack is no longer useful.: m2 U" @% C) V; C9 F+ B
: @. S1 L5 n- } ?LG Sedrika
Part 2 of blocking CE
0 b! u6 u$ Q& W9 M. Y
0 L* W0 J* O$ 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. . O' R$ n0 w) x. f. W0 h0 a' X
What does this have an advantage?9 S- V0 C; K% M* g5 j4 K
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 6 F* ?% k- z/ g& H1 V- \
) j" q! ~2 ~! I
# [& Z/ [4 J! U3 l, BFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
" I6 f) N- \3 h* @+ r
% E& j5 G( S" gThen search for the following content in HwOption.cpp
' B& o0 l+ n3 ^
8 v6 ` p: a! ~9 o" L( u& q3 i1 V H5 l" d
if (scan.Token == _T ("ip"))1 \ A% Y E; L& c
{0 i( _; T7 X/ ?* m" r
scan.GetTokenEx ();
2 \8 C+ }& Q; I: O l4 X F$ |3 S( \strcpy (m_IPAddress scan.Token); @9 e4 b2 G! T
}; i' |. Z' x, A2 W3 |8 ?; R1 I' O8 ~9 m
and turn it into this:' H4 I1 m1 b; T+ y# s9 z1 g1 Y
Quote: F2 g, B5 H v$ ]
if (scan.Token == _T ("ip"))/ Q1 n2 `5 W9 j
{" W- b# `; f8 \: Z
/ / Scan.GetTokenEx ();
7 @1 O5 L4 a, f0 l# b6 g/ / Strcpy (m_IPAddress, scan.Token);
- r$ l8 O/ t. l/ R}
- i6 Y, w4 N% e5 i+ q3 p aAnd you created the solution.
7 f2 I4 h. l, n$ { `
: T+ E! N7 u K
7 _- h" F6 G6 ^! S: b: o9 }Then read the Neuz not the IP from the INI anymore. even if put in it
: J2 k9 s" E( R5 v7 T: ]: u0 H! ^. \" T. t; j' n9 J* |
Max skill's
# O3 P( n) \* z5 r/ B0 ?& m9 Z3 P3 W* i2 v
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 + T* C8 t/ n$ g4 F& l# b
, l9 @) z5 G0 n- ]9 ^
With the TUT can provide the remedy it
! O z3 e# [1 t1 Z3 v& V. j$ c' b0 H1 X0 L" G
# 1 opens the file SkillInfluence.h9 b7 `( O+ {7 @ y9 c$ S7 X3 [
# 2 Search
; J2 \/ c! X1 h9 W! m, D" s7 yCode:
$ m. g5 ` `# ^$ P& G; f) V: k! j- |# [/ M. p2 }# ~2 e( J
# Define MAX_SKILLBUFF_COUNT 14" P6 m Q6 F5 O! E- l$ [: b+ @
! U" P9 C( |1 c4 h. ~2 U% h# 3 Change the 14 to your number (eg 21) and save it from
! W+ S+ g& u6 V8 a$ C% Q" w9 u# C# 4 compilation and ready
$ ^" w1 |4 w9 G5 Q/ K/ ?6 Y& u# P0 z' @- p" S, \
9 x* N$ h" C$ ~- U) o' P- Q; 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:# T/ [" n$ e, w. ~0 w
; b, X$ Y n+ c6 W5 z* Tdennisdra
. M3 h- s5 f- g+ O$ q.Crasy
- o9 y' Z& E* a©ross" J- x( {$ Z1 S L9 W$ o2 d" C
Sedrika
6 M' ]' E. E. e: c7 k$ z( Z# ~& a8 m3 a1 F5 f
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!
: d" V3 ?% X5 v+ D! ~/ T0 I. b; s8 p, I! r A5 E
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
( X7 U: G8 v$ z
* g+ [4 h: L: y" t+ p+ A! p
, p3 I e& c3 `6 A aUpdate 1:
how to turn off "Profiler" in worldserver.exe
2 T6 V* U- l( Q* [% q
! D6 n, u4 X$ r8 ]" n
F% ^* e/ {: {
in VersionCommon.h of Worldserver Solution. M( B* _8 O' g4 B1 _* a8 _ s+ T" }
Look for
5 T7 g% X, A& I0 X/ l6 {
3 l7 x7 b& C& L J- B, [#define __PROFILE_RUN6 F, Z7 r' Q- F* \* `1 G$ D: e# D/ x( G
5 a/ j8 k* T9 dcomment it or simply, B6 W! l, Q6 h2 `& M% K4 }
' G, _# a9 c, ~2 O
//#define __PROFILE_RUN / E; m* N9 m/ ~6 Y3 O
# w) g6 P# ?( U$ Q
2 ]8 C+ G. h8 g' ^ T' J0 z
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投寄。谢谢。我添加更多的很快如果你有病加太
( \* Z" V: n9 h8 ~
欢迎光临 飞飞世界论坛 (http://ffwold.com/) |
Powered by Discuz! X3.2 |