飞飞世界论坛
标题: 改变最大等级 [打印本页]
作者: 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
3 g/ Y0 X, G) i# r7 [% Z
change level without Rebirth
, |3 g X- f8 Z+ F& T# A9 r- E: `: a
Now, let us begin.
9 X5 r( @3 {# A% O* F
! T. B/ |! W1 |! d6 c- s# BRequirements:
4 v& _$ r: x5 g! Z/ V: J& Z; c% WSource& H |0 y) C( `: U& C5 }$ |" O
Notepad / Editor. n7 H4 S5 }; j$ A
, V6 B" j/ N4 e5 i- i/ / Tips by Sedrika& I: {7 S) J0 R2 g! V& k
! `( H8 c: ]9 u. W) q* R( D! _ C8 j5 F
It is up to you how you do it ^ ^5 t1 P: |- e$ ]
- C. G+ Q2 |0 \9 vGo into your source folder and open the definejob.h
* q- g# n' c- |# y1 |! B. vSearch there for:
: G5 u- P2 [8 D1 x
) k; x% t3 C! |4 Z$ ^$ `#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå' b( ^4 y" Q D2 W; } B
#define MAX_LEGEND_LEVEL 129
0 i. W k2 N5 a2 j( F; @% N; V#define MAX_MONSTER_LEVEL 160
5 m0 v; e5 f( g, D5 Z- G2 d- W- s0 j#else // 15Â÷ è÷¾î·Î ·1o§è®àå/ e) u3 v# X( L$ X7 |
#define MAX_LEGEND_LEVEL 121
9 l1 P3 l2 M1 U& P#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
d' Q: b" V r0 q0 o: e+ o& L5 h$ ?2 k7 q( f
4 {( [6 P6 h5 ^* a' x4 ARed: Player Max. Level" E+ t0 U# j8 ~+ l2 Z: {
Green: Monster Max. Level5 ^7 ]' }/ f3 b. X
1 N& C5 A' c1 E' Q2 xThese changes as simple as you want.8 y- j* E7 A" ]0 y# a, S
" D3 f& n% k7 X m5 n2 GThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
; a% U3 Y. h; O+ |
+ ]7 V5 r2 H* ]/ ?! P
Part 1 of blocking CE
9 _: k8 K0 v# z* y
@5 d( u2 G8 E8 xIn this tutorial I will show you how to change the Head of Mark flyff.4 ^! H2 a @$ p
The current Head Mark is well known, 5E, which results as a string ('^').
% h/ g' c# J( l; C
) y, ?9 G- q" U& R+ k# Y! IFor this we go to the World (Project) and looking at the Buffer.h after thistext( x- l5 ^8 U. d B
Quote:+ t# F3 L, N$ Y+ F$ \( o5 [
# Define HEADER MARK '^' / / Normal messageheader4 A" `1 R, K P) s! I% e7 `3 G4 a0 {
# Define SYSHEADERMARK '%' / / System message header6 \; I# v% n0 M- I+ ]
What the Sysheadmark is looking for is not even the top 5E.9 P' X( k9 v+ D
Change this and it makes the CE Not work on server.
$ K4 L; Q9 [3 n3 K4 b7 `7 x; H8 H- v. a% g" q! ?2 U
Then Tom's anti-hack is no longer useful.) Z' |/ ~" i4 c9 h
" l" n5 D! u2 C. K1 S
LG Sedrika
Part 2 of blocking CE
. d7 I. w( t7 O& O0 ~, ~( s3 y& @" N
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.
4 N6 Z, a0 R6 f- O, bWhat does this have an advantage?7 J5 c) N6 t' ^' B. n
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
% I: c# [& h0 O/ ~ t' }9 }9 e! S7 j+ q8 R+ \# H. i
6 \# c% q6 Q, a* S! A9 e. H+ \
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.% A: r$ L ^- U
/ u7 }4 s$ d, f% P( e
Then search for the following content in HwOption.cpp
; y- {0 O4 S/ d, m, t
% c" Z1 Y6 m6 R6 I* m$ L( |0 v7 F; k3 k
if (scan.Token == _T ("ip"))
$ J& z% w' V1 i- z- D/ n: p3 Y{
, g. V9 {. g, W6 a a( Lscan.GetTokenEx ();. a: u' h" |2 M2 }! z
strcpy (m_IPAddress scan.Token);
Y$ o6 l+ c3 k4 c; _. d' ^}) g( T6 H$ T4 b% e# P
and turn it into this:4 ^- j- L8 |5 }
Quote:
4 K9 z4 \6 Z# {" ~# Z4 ], eif (scan.Token == _T ("ip")); }7 d! W" b, e6 r. a* ^- o' i* x
{
Q3 Q3 p0 n; z/ / Scan.GetTokenEx ();3 I8 i0 o9 Y- t3 B
/ / Strcpy (m_IPAddress, scan.Token);( B# e2 w4 H2 p. o+ i' o
}9 E% q2 Z4 q. S) W0 V% K
And you created the solution.
- P: M5 G6 A, ^% M5 I/ l( g- G1 L8 N
. S8 ?# a1 M- R& K
Then read the Neuz not the IP from the INI anymore. even if put in it
2 h# Y6 m$ Z! O8 L. }2 @* @* `
; G: H$ U3 x6 A; |
Max skill's
/ @" m8 T- L6 k& k
% x4 g. ]; l8 ]$ ]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
; x) e6 ~- c8 e; k j4 |
2 d- Q9 X: K6 ?" ] WWith the TUT can provide the remedy it
% B2 C# j1 ]) u* b' U- [: A1 I7 x. Y d5 b
# 1 opens the file SkillInfluence.h
; [* y$ J: ^8 V% W2 O8 ^: I# 2 Search8 d( \( G) N; h& i! S6 u
Code:8 {5 p, ?! N) a. z* J5 F
) o( Y) u) W2 M. X2 R; s$ u4 V' _0 ^
# Define MAX_SKILLBUFF_COUNT 14$ `8 P. ^# B. ^3 h6 _. t$ Y
V, \- R- g, }* q+ }5 x8 x4 p3 a; u# 3 Change the 14 to your number (eg 21) and save it from
7 A- l [6 O' c# 4 compilation and ready
4 d3 E# J0 A! ]' S4 F3 p
$ m5 _/ b6 b8 ~# W" Q3 Y6 `2 b$ {0 l8 z8 | V- u
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:# i9 N1 q9 L/ ?% P, I& O
* Z0 y+ F$ |5 g- u6 w6 J
dennisdra
" Q$ k+ R: V& c4 E2 E.Crasy
; ~& L$ K# E1 e) S- e5 N! X©ross
, v% [6 L, ]; s. _- OSedrika* h3 Z) u' \1 a9 Z/ J
5 x6 z3 q! F' H1 N+ R G7 b8 M- ]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! / P, s# q0 t b+ @. [( [+ X5 _8 {
9 G& I9 R% N0 n: sP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
" ?/ r: Y* ?, {
" ^" F; ~6 W& i* f: y, W
9 J3 B/ }2 @% \7 b4 ~Update 1:
how to turn off "Profiler" in worldserver.exe
6 k: X4 o6 v/ S8 u& P) ~/ V
+ g, v2 Y! N% `6 [% E
. K W/ a3 b0 u5 g L7 jin VersionCommon.h of Worldserver Solution
8 o) v- m- S5 e3 \Look for
1 H3 X; j3 ]$ _+ H _ ^$ y' Z# T- I4 _8 U% M3 F
#define __PROFILE_RUN
/ A. s8 ^. W5 y4 S8 H) T
& c x& P9 ]0 }+ n7 X+ [comment it or simply q) x( l! l3 Z7 X
: r+ h% K, c/ q5 O, _- d/ H/ \* E
//#define __PROFILE_RUN + C) j6 v& m6 u. g/ _. A. u5 S
+ O( y$ B8 R6 o/ I3 Q6 }3 l* a4 J# v2 N
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投寄。谢谢。我添加更多的很快如果你有病加太
. {7 y0 P4 a+ B: I5 X
| 欢迎光临 飞飞世界论坛 (http://www.ffwold.com/) |
Powered by Discuz! X3.2 |