飞飞世界论坛
标题: 改变最大等级 [打印本页]
作者: 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 u3 f" b9 ]1 ~0 }$ o, r
change level without Rebirth
1 q3 o6 Q( {$ ?& ?2 d# ]' ^7 n* U( O' r
5 [2 Y+ J( O- @1 u2 w2 c6 ^Now, let us begin.
2 h$ [6 X$ p' ~+ {: M% a( e
- Y, R5 q/ x3 [1 g* k# [Requirements:: { E# t/ M% k% V
Source3 i" Z& y+ a/ G3 [
Notepad / Editor0 p' J3 p$ G- ^, s* u2 w; ?
5 _. }, D. ]' e( O2 O: U$ [ D/ / Tips by Sedrika
: b# F9 T2 E* j0 F% U* j3 ^% n3 u# W0 d- J; B( d
It is up to you how you do it ^ ^
6 O1 ?5 ^' H$ t3 x J. i0 n
& Y7 @1 c4 Q5 B( _$ N+ HGo into your source folder and open the definejob.h6 j. W1 s& I; s# X( ~- q2 e
Search there for:+ k' s# b* M+ \# J
5 q# ?( Q: Y& |# q! m( h
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå/ r: t0 N, V. z9 x& X0 H6 ^! R9 ?
#define MAX_LEGEND_LEVEL 129
* U" z }4 p x5 j5 Y0 F#define MAX_MONSTER_LEVEL 1607 y& F2 x5 z9 B7 C% L7 a
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
5 W8 \7 e- I( u8 c( q; ?#define MAX_LEGEND_LEVEL 121
% E) z+ w z; T2 S" K#endif // 15Â÷ è÷¾î·Î ·1o§è®àå & O4 a7 x( f* r* k6 q: F1 ?- @# \
2 N' Z6 i: F L! \- T) p
) N+ ]: `; u* M7 N9 O7 j& t ARed: Player Max. Level
7 s1 Z' Q2 H: z: u5 ~% }/ _2 QGreen: Monster Max. Level5 t; z; B9 T `4 \( l$ A$ M' k9 {0 q
+ C3 `) B( F0 b1 c# v g9 N
These changes as simple as you want.6 u5 N4 s, E3 q* w! H* x: f4 W
8 V# v& V' C G0 l: }Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
5 H3 y9 `, O- G9 K5 O& h
, c0 q- L/ h' N. C1 G
Part 1 of blocking CE
- G R. o# Q' G& N& P
9 ^# @& X" I% g3 P
In this tutorial I will show you how to change the Head of Mark flyff." |5 {& k/ Z, u9 U
The current Head Mark is well known, 5E, which results as a string ('^').# o& G( r# e) l* ^
2 o/ p w; F) E
For this we go to the World (Project) and looking at the Buffer.h after thistext# _( @/ a: U3 J$ d2 H+ R3 l
Quote:& a" o4 s7 r% v
# Define HEADER MARK '^' / / Normal messageheader, R3 E0 ?2 I3 p% y
# Define SYSHEADERMARK '%' / / System message header
4 k, R: z' j# V# K% }What the Sysheadmark is looking for is not even the top 5E.
0 G4 U% a; F% NChange this and it makes the CE Not work on server.
9 m9 l1 i: k8 F5 e+ n( z
: O4 U' }1 ~- OThen Tom's anti-hack is no longer useful.
9 ^) u, n$ ]6 ^ T7 _ A. ~$ r9 [
0 f2 a1 V! K& J/ c+ _LG Sedrika
Part 2 of blocking CE
+ Z1 o( A1 X: b
+ K# l( I8 I% P, ?$ iIn 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.
( C9 K. ^6 L, Z# Y, @6 B: |6 kWhat does this have an advantage?
' j2 S5 h' Q' x3 g jThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself : ]& a5 z) x- t, _; W
n# G3 p9 M! }2 F0 l) l8 h- I
* {9 n& z$ w: g2 }# c8 K% @% dFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz./ S3 t6 d& [; f6 k. D
' Q7 [. W0 \' h' _+ J; g6 [ t
Then search for the following content in HwOption.cpp
8 A8 y- q& K5 j
$ h$ p [5 M" X1 E& D# I; S- ]: k+ g6 [+ E$ ]' r; y
if (scan.Token == _T ("ip"))
$ ?- [) j) X2 j; `; e{9 H; k) O/ ]0 j+ P9 y3 o1 u5 F$ T. e6 h
scan.GetTokenEx ();
' `& L6 F, m% y) D- D% ~' Pstrcpy (m_IPAddress scan.Token);
9 Z( q/ k. o# s} n2 |* X9 i6 U
and turn it into this:
' h w" R: q2 ]- z/ y* J4 X) |& QQuote:
+ k% P% B" m% G w+ Tif (scan.Token == _T ("ip"))
+ b2 y) ]! a1 a' r{) x9 h" S' K' b" J" R
/ / Scan.GetTokenEx ();3 O9 Q, g f" }0 J: c3 L( K
/ / Strcpy (m_IPAddress, scan.Token);
) p- u" C! Z! X}
$ p; v5 x# b2 r% K& oAnd you created the solution.5 A$ q8 z- M' q) r. D
( U, I& |* s+ D _& _1 ^
: Z- R7 l( J* \$ L
Then read the Neuz not the IP from the INI anymore. even if put in it) g2 r* z) U: b( z9 o! R
- \& P# Z- v7 I
Max skill's
2 w) @9 N1 H/ |6 v: E% D
' i5 J1 p$ J, A: |) S0 ?6 aAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc - c N. G) a' a% G+ {
+ ~% a/ ^4 n. P3 z- X
With the TUT can provide the remedy it. h6 z% Z2 \4 D& f
. ^, P5 k! i' M, Y4 c9 V3 h
# 1 opens the file SkillInfluence.h
) }6 j$ _ Y$ z% Z5 i5 R" t# 2 Search
1 F6 x ^" `8 i0 {Code:
; W8 \- v. r0 X' _4 B7 c# A) ~2 @ m6 G* D" n
# Define MAX_SKILLBUFF_COUNT 14
' f, s0 u8 d! [. C# z
4 V8 M" U4 H: Q$ J% B+ o& ^# 3 Change the 14 to your number (eg 21) and save it from
" X' [; |' F. P3 F- w, i* |5 u# 4 compilation and ready2 D/ k7 |, C- t7 a% Q
! o1 ?5 e* F3 E A+ G% b3 U3 K v
, p1 i6 H1 `" e$ x& t1 d! G- A
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:
- ]% a/ o8 s+ p# R6 O) Q
* \; s6 B2 b9 r6 i+ Bdennisdra
1 f* i3 F0 W3 C) L2 m.Crasy
! U( B/ w$ K! m- ]' P9 G©ross7 Z' Q0 r. g+ T* f/ \6 O
Sedrika
# e) W8 h+ ]# H3 X, F/ C+ w0 ?: ^$ x; p& i" C& S0 |. @
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& _6 d" ^8 l" F* z% C0 c4 }
, ]3 `: W' a+ m* F0 b1 _ L
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
k9 q ]1 }4 X ^5 `* h
% I+ h& k/ V E' |+ P! z' ?
! x0 [ u+ w' [& \" ~Update 1:
how to turn off "Profiler" in worldserver.exe
, x7 Q* k$ s$ o. s1 i7 X8 E: ^
$ C2 ? z5 d6 D- C/ L
) L+ G0 J3 v, B2 ?" Yin VersionCommon.h of Worldserver Solution; R. Q! b- x* @! O
Look for/ n) K% |* R* Z5 e. b7 [
. X2 {4 I% f6 k# ]! S
#define __PROFILE_RUN ]( H) _0 N- P& H/ N" y" S% z3 m8 P0 N
6 }. O" a5 p4 b6 Ccomment it or simply
- A: E7 [# a) X8 Y" Z0 e' d g* `2 R9 `
//#define __PROFILE_RUN 7 F" S7 U8 j- D: A: J& R
8 Q" w! O% k* U; p
! F: ?! i7 d2 ^6 A* |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投寄。谢谢。我添加更多的很快如果你有病加太
/ Z4 ]' m6 i/ `0 ?3 z
| 欢迎光临 飞飞世界论坛 (http://www.ffwold.com/) |
Powered by Discuz! X3.2 |