飞飞世界论坛
标题: 改变最大等级 [打印本页]
作者: 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
2 Y' X, V( j' P: l
change level without Rebirth3 Y+ c* Y/ a; K R; s* Z
& _4 n, t3 B0 t8 w6 I4 W
Now, let us begin.9 `7 \ f) C) s2 ~/ [2 |
0 Y( g. r* K, U/ {Requirements:
V* _9 h; ?9 \Source" B$ U; Y; y* S& h5 V2 \1 Z
Notepad / Editor3 h6 u0 j5 `8 w; `4 T* n6 Y+ J
! \+ b& v& v% e! K
/ / Tips by Sedrika
* O) q* B0 H S# ~; M7 B" k L$ O1 d2 L4 |7 x: a
It is up to you how you do it ^ ^- x* q( M" a' A
; I! r: G1 i- c! o
Go into your source folder and open the definejob.h( `; L+ [4 _2 w; d8 n: Z
Search there for:; X2 N9 `) K) L1 g% W
8 V l' h0 g9 |3 O& |9 t
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
' [6 g6 a8 k* ~#define MAX_LEGEND_LEVEL 129! a$ z. w4 G8 R( O* m# @! u9 \: x
#define MAX_MONSTER_LEVEL 160
) ^6 }1 A8 D; J& _. G#else // 15Â÷ è÷¾î·Î ·1o§è®àå
4 a( F( }- s0 L1 F: R' R#define MAX_LEGEND_LEVEL 121
% G4 l* I+ d) W0 u* c* x9 j#endif // 15Â÷ è÷¾î·Î ·1o§è®àå 0 ^0 n: T- _0 t3 Q) x8 a
* I) \0 R4 r: g8 n
) k+ m' U2 t8 k1 f: v' @* Q
Red: Player Max. Level
3 T: v5 u/ L ^$ Z4 Y3 pGreen: Monster Max. Level% q& G, _0 n: f) U h
7 C$ D; { J4 O& NThese changes as simple as you want.( j5 \* @9 z, ?( Y
& ^8 Q, U# l6 S% V+ r; n# ?7 V
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
: }, D3 J/ m/ _
6 k5 T1 d( @9 P7 _) ]/ J
Part 1 of blocking CE
6 N, ]4 S2 w5 c
( y! m, l) i7 l! r: \" kIn this tutorial I will show you how to change the Head of Mark flyff.
$ S' }$ Y9 n/ [% R/ e3 |' FThe current Head Mark is well known, 5E, which results as a string ('^').
1 O2 p y) T% ~: Z# Y7 q5 x0 s+ Y1 ]8 d( Z1 D1 y V
For this we go to the World (Project) and looking at the Buffer.h after thistext% |+ |5 d1 f- `. w2 E8 R
Quote:
' U8 ~% W+ |" z( ~/ Q! ]7 Q! w# Define HEADER MARK '^' / / Normal messageheader$ Z& W1 G, T8 P# X; V* T
# Define SYSHEADERMARK '%' / / System message header
+ j4 ^# |$ { y8 ~& Z1 rWhat the Sysheadmark is looking for is not even the top 5E. K) e/ {5 ^: Y
Change this and it makes the CE Not work on server.
+ F+ ^; [! k3 P. i
6 I& Y1 |5 p- q PThen Tom's anti-hack is no longer useful.
- i6 D6 d( B& p1 T& w: k; \% D2 O) u
LG Sedrika
Part 2 of blocking CE
" L8 Q+ V4 v* ^! Y
! L" m! h. h8 I1 D! pIn 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. % Z$ @& X/ l; {/ w/ L; k
What does this have an advantage?
* r% B$ O2 l1 V3 H( `/ [& u5 b" e' _The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself + d6 K5 p9 ^1 q# q; z( D# @+ K
) s4 S. w- U, u2 }1 P1 V
% p1 t6 T A8 F4 R' }6 k+ b
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.4 L T! ?3 s$ S# V+ w- A
9 ?( ^9 p9 @, Y5 Z+ V& Y8 S
Then search for the following content in HwOption.cpp * c# g+ S1 }; L2 L2 x- Y6 Q
. V% U4 r, u. S5 s" A
# i+ z1 ` @; v* Y7 S. _if (scan.Token == _T ("ip"))
! J5 E2 F1 ~& q* V9 D% V, [; D{
) E: |3 w& o) A5 s: l5 K5 ]# C6 \scan.GetTokenEx ();
6 Y$ u+ W2 F+ L: Y) ostrcpy (m_IPAddress scan.Token);
_* Y: \2 k4 d8 A4 B+ @6 W9 v( Q# j} o' O' b1 H$ h: j+ Q% O$ G* r7 Q+ W
and turn it into this:
+ z" |7 r* G8 e- jQuote:
$ @$ { I1 ^" N0 h8 iif (scan.Token == _T ("ip"))
$ q9 m% T; y4 ~3 d' l{4 e2 B* z% M" y. y) q! x/ L
/ / Scan.GetTokenEx ();
" c( J ~ }5 ^( X, ~5 y/ / Strcpy (m_IPAddress, scan.Token);
9 K" P) r n6 L: n( C4 p- z% A}4 g0 }6 L' l5 e. O$ z2 L: L' f1 z8 D0 a
And you created the solution.
6 K0 R2 ?9 ~; i! \& V: v0 H+ {0 V3 Z4 ?
$ F4 D% f2 E8 t% `- b, _Then read the Neuz not the IP from the INI anymore. even if put in it
+ A$ V+ W6 H# X( G0 u6 V2 L
, i# E* A- M" K2 q6 a# x2 {5 m& p; d
Max skill's
+ `) D% r @2 Y5 b& f ^
3 x3 {, O% [# n: V+ D
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
1 Y) [7 B. H- q5 Q2 D, `. Z% R3 Y0 f
With the TUT can provide the remedy it
4 r1 A8 V* _9 | O) I' E7 ? W# Z7 t% C- D2 R$ s C" S ]# @" T
# 1 opens the file SkillInfluence.h* K% V( s: K: ^; p
# 2 Search
; _+ x/ K' V. h9 T( G9 Y) @Code:
9 t! [; i* F/ |% {' j* T: o4 k" |) c( a! U
# Define MAX_SKILLBUFF_COUNT 140 L$ I+ @ ~2 @5 P( n5 q8 i7 ], j
8 Z0 X# c$ R$ c7 c
# 3 Change the 14 to your number (eg 21) and save it from
8 U' h, U i9 p5 U( a* z6 t- j) O# 4 compilation and ready
2 ~: z7 I! y' G- B0 S
+ f; U% B' C7 k7 u$ z/ X+ u5 v/ j. @$ X0 S4 ?/ O D$ w
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:
- \8 f3 d, P2 D" ]: \* I' [
7 D* k6 V2 \! n5 ]% r, vdennisdra, ^, h- G. y4 q5 w( ]/ t1 V
.Crasy6 \' h4 {: T4 p: l& X% B
©ross
1 T% v& L) }/ V" u0 u7 B# tSedrika
- \- ?. i3 `3 z1 H! F
( ]7 z- U4 j: P" W5 severything 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!
/ N& z9 |0 V" c1 P& R& f9 G( Z+ Y0 P3 Q# T* w0 x
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
6 h) @/ q4 a+ G4 l
- B% |2 F0 H2 \
" }, W6 c- U% D& T& @% P% Y/ x7 KUpdate 1:
how to turn off "Profiler" in worldserver.exe
n* m4 z% y0 ]% l. _& v$ Q
! v5 G# r) G; L( y
( M. \ L" B0 e+ K- I. N4 Gin VersionCommon.h of Worldserver Solution+ D( ^; S& M2 K1 A
Look for4 V7 O2 y# _+ Q
7 [! L5 @0 O5 i* V5 d
#define __PROFILE_RUN
" z: S s; ~( B% F- F( s9 _1 f
( P0 o' l! B" u1 dcomment it or simply3 m- x, a! P1 t4 E% }1 n3 S2 H3 @) W
8 P3 l" j1 `, V
//#define __PROFILE_RUN
9 d4 Y& e; ^- c4 Y1 }) C0 E' S; p
2 ]5 l! ^! g' M
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投寄。谢谢。我添加更多的很快如果你有病加太
4 o5 L8 M6 I7 G( l8 h% C! N: g# \
| 欢迎光临 飞飞世界论坛 (http://www.ffwold.com/) |
Powered by Discuz! X3.2 |