飞飞世界论坛
标题: 改变最大等级 [打印本页]
作者: 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
, t" r4 t* T8 j
change level without Rebirth+ L# y4 \3 K! n& Y9 e
& n/ }' ? q) D* D; hNow, let us begin.& ~3 U0 }2 Y8 }
2 J I* _- O, z
Requirements:
8 G' w4 W! |; Y% SSource% l. L R4 J5 l. J) W
Notepad / Editor
- Z; y( x8 S# m. O6 @
9 V7 o) @! K9 ]# g( W8 W/ / Tips by Sedrika
+ H5 a2 b: z$ k2 O; A: ~$ m( u' C6 ]+ Q: Y
It is up to you how you do it ^ ^) {, T6 L* L w3 Y+ z
9 z# q2 ~3 Y; \- v
Go into your source folder and open the definejob.h% q3 `8 B: p( a, P& d
Search there for:
7 S8 f% T7 U5 n8 n
- y% J) E$ m( M+ e% e+ ?#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
1 M. m# a6 p' g; M4 B/ n2 H#define MAX_LEGEND_LEVEL 129
8 }; k2 B- O$ y* l$ J" t#define MAX_MONSTER_LEVEL 160
. i0 O: x; {' X0 K) S7 Z#else // 15Â÷ è÷¾î·Î ·1o§è®àå( a9 @ s% R$ n' i/ D
#define MAX_LEGEND_LEVEL 1215 Z$ @: z& c1 Y" U7 [ l
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
. \9 @: }$ Y6 T' T3 \% m
S7 @2 \0 n2 W$ g1 X% N% d. `5 m6 S5 M2 y( r0 D
Red: Player Max. Level1 B3 Z1 O, P& V# z5 a L+ y
Green: Monster Max. Level6 `2 H* o6 H8 f- \- r5 z4 O
9 R7 N% _4 _* r$ v; {0 |3 _+ I
These changes as simple as you want.* ]: h7 K% N8 u! t, E/ d$ ]
) {% G( j/ n: O8 ~3 d
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.) `9 Y1 ?5 Y8 r8 N! q. ^7 ~6 C
2 A6 B% w, f% {8 N1 Y
Part 1 of blocking CE
8 j$ t" z z8 t7 P* K/ `: n
2 v) b6 S6 }# D8 CIn this tutorial I will show you how to change the Head of Mark flyff.0 H6 v l$ ]4 w; n2 \/ Q0 @
The current Head Mark is well known, 5E, which results as a string ('^').
, S. f9 z. s5 Z' \4 R, \
% g0 c' O& i8 m8 K% v8 cFor this we go to the World (Project) and looking at the Buffer.h after thistext
/ H; V7 ~2 U9 o/ ~Quote:- ^ t" w" n) _1 S
# Define HEADER MARK '^' / / Normal messageheader' }! }+ t" H( \1 w
# Define SYSHEADERMARK '%' / / System message header: p/ ]0 D0 Y4 G+ R0 l
What the Sysheadmark is looking for is not even the top 5E.
( c: i) S, Q( U% ZChange this and it makes the CE Not work on server.
; |/ z4 C# a. J4 F+ i$ H. [6 ?2 I; J6 S: J& y
Then Tom's anti-hack is no longer useful.
& e" _8 h3 y" K# N& ]( ^1 K
6 m/ W7 |6 p, \+ rLG Sedrika
Part 2 of blocking CE
/ w. X* |3 {8 k
" N* G' a, U$ |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.
- Y# m$ i \ f" V: C' {$ y7 H! cWhat does this have an advantage?
7 N5 |: W4 \2 V# `( B$ DThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
/ S4 b6 k9 e5 q4 K' R
, [8 F) {. @" B2 Q8 c) `" B% c( m8 I) _ q5 g& ?
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.8 n, k- w. _) n) K8 f7 }( j6 E
' G4 d7 k% E4 Z; U
Then search for the following content in HwOption.cpp ; E8 y. g1 R) |2 o h
9 P7 L4 d: X7 N; B; w
- g* k( u0 X5 s9 n+ `7 m Pif (scan.Token == _T ("ip"))
9 a' d) F7 e; J8 n: a- g6 u{5 ]" J! T3 N0 I: r& `6 {
scan.GetTokenEx ();
( {7 ^: u y" Ystrcpy (m_IPAddress scan.Token);6 I* R# n9 R& c+ v/ R( @, x+ g
}
& |# |/ R$ |4 `" f7 nand turn it into this:6 n4 g8 R1 @1 t; N
Quote:
: s8 I) X% g- A2 V8 q9 P" J7 a' Qif (scan.Token == _T ("ip"))
0 l, u4 A2 A) e* E/ m- Q{5 j0 B" }6 J2 Z8 a O( \' T
/ / Scan.GetTokenEx ();
* W. ]# ^0 Q7 h6 c" i- J0 q+ x3 L/ / Strcpy (m_IPAddress, scan.Token);
, ?0 Y V' l( `/ p! u8 b6 V}
; F! y7 T" {8 B. L: d- FAnd you created the solution., |: y" I1 F( y* q$ s3 N. u
* O% Z; `* G+ u/ n3 u9 K( P
/ Q9 f2 Y5 c+ c0 E( J: Q- GThen read the Neuz not the IP from the INI anymore. even if put in it
* [( ^- Q; m# n- N6 d) @1 ^- H* Y- W [# s: x+ q* e# g" q) N9 n
Max skill's
- N, p- @- @1 Q$ m) D1 N: j0 q; ], 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
# o. {; d# q: X# j7 _4 q, E9 ~. {) t
With the TUT can provide the remedy it
6 C7 i" ^5 ?0 Y/ S8 ^: Z( j. Q& W
, P6 D9 k4 H$ G6 r# 1 opens the file SkillInfluence.h% W0 L3 g% a; I! n. H
# 2 Search
' G1 n# C- o# ~ P$ ZCode:
- |3 |# A7 m$ t! y2 z# y6 D! X/ m# |$ B% Z3 c" `4 O- {; I2 Q
# Define MAX_SKILLBUFF_COUNT 14
% e; X. b. z4 T' ?* w$ ^# m; [4 v
# X" T5 N: a- Z" l" d& k6 O- E# 3 Change the 14 to your number (eg 21) and save it from
, C2 A( K6 W3 c2 Z# 4 compilation and ready
1 x# W- [' R8 Y% s4 }* C) n, I. w$ e$ H0 o- m
8 u' E% y3 ^, @* G- ^' OI 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:
: L( q0 Z0 a# }+ e, y6 a, G- F. ?1 L! x
dennisdra
' x: U+ R, x' U- T: w, N.Crasy
/ G, J6 i6 a( \& g5 ~+ s- F3 q©ross- z+ c/ ]6 R" c: p* X
Sedrika
2 A0 X- b/ R& G
5 E. q4 [& k+ 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!
6 z6 u, A7 ~! h# c) j4 s5 R8 N6 Y) a0 e2 D) t0 ~" x
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less" w6 f0 S( Y# O' T& P$ d0 P2 A
$ o! q8 I! p. N! W, O
$ b1 t, j7 a: X5 Z# l ]! Y& B* sUpdate 1:
how to turn off "Profiler" in worldserver.exe
D) p+ a( X2 i6 P! V7 k
% ^( ?) d% Q& U K+ H6 O
^5 G5 c" ?' u1 S# B+ cin VersionCommon.h of Worldserver Solution
* t a: \! k0 v* B3 D- l [Look for* X. p: h7 C( a( B* ?- F
/ K& ^2 @ b9 K$ o2 V- n5 c
#define __PROFILE_RUN
; X: m( [) z5 Q7 {0 C8 w
x* v c! c0 U/ w/ Tcomment it or simply
( i0 ~' w% G7 w6 o1 t4 K- p
. ]3 q0 h1 c+ O3 v9 w5 w( r% A//#define __PROFILE_RUN
^3 U/ W& M* N: R; H& H0 o) M$ b U# D- F
0 C+ A2 Z4 ? N9 [ O' c
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投寄。谢谢。我添加更多的很快如果你有病加太
; k! ?: k; E" a! s' f% W
欢迎光临 飞飞世界论坛 (http://ffwold.com/) |
Powered by Discuz! X3.2 |