飞飞世界论坛
标题: 改变最大等级 [打印本页]
作者: 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
/ I: @1 h0 w' T2 j4 _
change level without Rebirth
j& k2 ~, N- I. m' p: B8 d1 x& _+ ~. s& P @1 V2 k# ^
Now, let us begin.2 j% {7 N2 j+ b& ?
! C+ h9 B4 w8 [. yRequirements:# j% e; u+ C4 S6 V& h
Source( b" K, S7 ? c: {( l/ H1 H% h& B
Notepad / Editor' P- L+ e( ]/ ] ^6 w
`! B' Z( ?; {8 V5 w) z/ / Tips by Sedrika
+ Y' }. R/ J8 D1 L
' @" N, z% z* G+ L6 }6 y5 yIt is up to you how you do it ^ ^
O. l5 V! A9 @6 M3 T( g# c4 {7 T' \ @, I
Go into your source folder and open the definejob.h; d7 j2 A6 Y; V. w- i' N
Search there for:
5 F/ b7 S# G5 X7 |: D
9 d6 h0 Z h# G) [9 v#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
d0 w1 w+ _% L* y' w: V7 i#define MAX_LEGEND_LEVEL 129! ]* ]5 N$ {( H* }9 b% Q) q9 A
#define MAX_MONSTER_LEVEL 160$ ]6 e/ L2 {1 N* @
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
8 } k# m7 E* [" X5 L, R# Y#define MAX_LEGEND_LEVEL 121
9 b" ?. v+ z7 |" p- l#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
0 L" Z& L- X& R/ A5 y8 B/ l7 {; d# m( m
- g% a3 d0 j4 q6 M6 k \Red: Player Max. Level
" M+ S6 C1 X2 hGreen: Monster Max. Level! p5 D9 P( ^4 a/ k0 ~& x
- O6 \7 ~: E% k/ a: E4 b ~
These changes as simple as you want.
3 s- g7 k2 T5 B' K. @& E6 R" e& C/ r1 E9 ?% H( G
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.2 R9 ?6 y' S1 u s. \" \
8 r; ~% k" V- ^% q& C# }
Part 1 of blocking CE
R7 X7 o. ~4 t5 j b6 R
3 A! F" ^$ S8 ]* u- Y; @0 o. @In this tutorial I will show you how to change the Head of Mark flyff.
& g; [" ]& h% E; ]4 c0 j* XThe current Head Mark is well known, 5E, which results as a string ('^').
* T9 a9 Q$ n3 S
$ J9 l8 d Q, o& E( NFor this we go to the World (Project) and looking at the Buffer.h after thistext
8 x7 `. I% s. `# UQuote:
% I6 a, r" _ e- @$ @' R# Define HEADER MARK '^' / / Normal messageheader
. z3 p- o) X) j& k# Define SYSHEADERMARK '%' / / System message header0 Q5 I0 {' ~2 P$ }; }4 b
What the Sysheadmark is looking for is not even the top 5E.0 n% d( R; g1 v# w" y, @+ `
Change this and it makes the CE Not work on server." c: L: Q: F. ~1 b5 e
) {# u* J" N; b* GThen Tom's anti-hack is no longer useful.6 o8 L% p5 E+ m7 ~7 y) m$ H9 f* Q& I
* f9 S3 M- f8 a2 ?LG Sedrika
Part 2 of blocking CE
3 z( i; z0 v$ F' E7 ~$ Y8 G
/ @" b; t1 h1 X: ~# J! _3 ^
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. , k" _3 t5 `; s1 [% z8 V7 l- ?
What does this have an advantage?
3 V. U( a; Q9 AThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 3 Z: S' R! J: }; A0 J
/ N1 B( K* h9 v! ^7 ]4 m+ u
: j* l8 r/ ]* a4 E0 O
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.2 J1 p0 [8 @# f: {
6 y0 N) }) g# S2 Z6 m: b) FThen search for the following content in HwOption.cpp . Y$ |. ]) X: |. q
! C# P7 v: @+ o3 p2 h
5 h6 L5 G0 T p! e x
if (scan.Token == _T ("ip"))& v9 H/ b" w A4 u0 v
{% {( \0 f0 @# u- n+ E8 @: `
scan.GetTokenEx ();2 A1 k. s p9 _& Z
strcpy (m_IPAddress scan.Token);' O: q0 V8 `8 ]# ]% h4 r
}" S( J/ v6 E1 H! n- U8 d
and turn it into this:: g4 w: `8 X5 W0 J; J
Quote:
$ t4 y, u- o: kif (scan.Token == _T ("ip"))+ y4 ^# U0 P3 z7 ~! P
{' m( C) x, @: L) z: L
/ / Scan.GetTokenEx ();, V# o$ W5 H- P; [- S u
/ / Strcpy (m_IPAddress, scan.Token);# _( S& a3 x: q$ _, k$ I6 V
}
' O- w, f* \# G$ @+ y5 E6 |1 cAnd you created the solution.: O- v; }, Y0 \+ l6 I; m
' D, l+ C% h3 i! T' k9 e$ b/ A/ j1 X4 c1 U+ o' i* s) ]+ p2 ~* r( i
Then read the Neuz not the IP from the INI anymore. even if put in it: E3 s. J9 n9 t' h3 h( K
! h" e7 p# Q1 Z
Max skill's
7 W9 i/ D0 G( l
9 H1 m7 t! z" Q6 x8 J- `& p, X; k
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
6 E! W: O `; E/ y; r. Y! q; {0 T8 ]# ^
With the TUT can provide the remedy it
( f0 O" x# l5 i- w' f+ o1 M4 }# x2 g% r& _
# 1 opens the file SkillInfluence.h* k& |8 O9 q* p W E. s A
# 2 Search3 _2 r: f* ? l9 n- f1 R! S6 M( y
Code:+ U# j+ K, i* v5 R9 W6 e6 q$ k/ Y
i# ~* Z9 H: K. D
# Define MAX_SKILLBUFF_COUNT 14
# g6 D3 P T* K1 A% N) g
5 Q" k/ O% m# l. ~; y0 \. o! t# 3 Change the 14 to your number (eg 21) and save it from
' h4 h# C/ P; |2 M* l4 O# o1 }# 4 compilation and ready+ p+ g4 O/ m0 E6 b
) X$ ^* }$ Y% n& c# m
* B% S: K7 C/ d/ W2 F* [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:
# \% n1 f; H% e M) N) ?
2 a% x/ a6 W4 F& x- e' v! B2 b; Pdennisdra$ m$ A1 X; z" y0 `2 i5 \8 e
.Crasy
9 e1 \- d+ t- y) E" Q4 |9 \©ross; `/ o9 W: x% a$ {
Sedrika. A6 w; D6 u2 O, Q4 e; F
5 Z6 x! }8 F8 b- ^- S' s
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!
' ^, S) l: _8 S* ^' P. [4 @. H U2 q- T% n
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less: @6 s# M/ @: N& }) d
. c) v. x( ^$ F9 V/ _' n+ N0 R0 D+ M0 C. }: O. [1 w
Update 1:
how to turn off "Profiler" in worldserver.exe
+ ~7 x: |& O3 g/ `! j1 ~
% p3 `6 t3 a% D. p& [7 N1 H
( m% \; I: y( o8 C+ ^0 b/ [6 win VersionCommon.h of Worldserver Solution
2 m9 k) r% b4 a# v$ P& c% s: J8 b$ DLook for! y: v6 W5 U1 j. i7 b: W
9 W. Z, ~) S# b/ v8 U* W7 ]7 h
#define __PROFILE_RUN
- z" k5 A( R; Z! R/ L+ Q- a3 i+ m& K$ [* G+ R. @
comment it or simply
1 s; N4 r0 a6 @: {/ r* c
% C: W- n# Z! g6 L8 Z: Y5 E. K2 ?//#define __PROFILE_RUN
+ Y5 T2 F' v! f0 E
3 L$ l& s2 E0 a. l2 c, f: j! z; U _) z7 @/ E" [ h
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投寄。谢谢。我添加更多的很快如果你有病加太
6 u& _7 |- M; I
| 欢迎光临 飞飞世界论坛 (http://www.ffwold.com/) |
Powered by Discuz! X3.2 |