飞飞世界论坛
标题: 改变最大等级 [打印本页]
作者: 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
7 B9 ], n+ M) i
change level without Rebirth5 Q7 a( k6 ?, Q) V
8 n% @; y# E7 z: V/ E8 ~
Now, let us begin.
% z/ `$ I5 q7 o7 W4 M0 l" q" i. t. l/ Z( ~6 F/ Z. h8 |. r/ O
Requirements:0 t; Y0 f' r U, N/ E- Z
Source3 R6 B& |/ K0 c
Notepad / Editor6 C9 A- L2 ]& V3 d
2 c1 ~& g4 [( ^% W
/ / Tips by Sedrika
8 r$ H3 |0 N3 k/ V1 J
; i' m- ]& g `" d4 IIt is up to you how you do it ^ ^; K% @9 K( M6 w, ^1 V
% @: {& `( x5 r8 U0 Q# z3 A% y
Go into your source folder and open the definejob.h
; i) P+ S/ H, ^- kSearch there for: j! Q( A w" T" x
7 J" @$ J. X8 y& r7 o#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå& o' D. K1 l- B" J6 J6 s
#define MAX_LEGEND_LEVEL 129
9 K" F' ]: e, w5 y#define MAX_MONSTER_LEVEL 1602 Y% W. I7 ^; E! N; y% `( y
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
, z' \0 p9 `' o& Y#define MAX_LEGEND_LEVEL 1211 @5 p; i9 d( ~( s; V9 C
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
5 K& r- b, G" I0 y
/ O3 n6 E* a) G- u
3 L* N* [2 I! ^4 uRed: Player Max. Level
, @, m/ D: h% i9 mGreen: Monster Max. Level
! w- i; ?5 M4 q: s# L) K! t" c! D& f* B# l
These changes as simple as you want.
* E0 N. X+ ], v) H+ z& g. y3 [, t9 E) ~6 P/ E" K* ~/ a
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.+ U( j2 ~7 j, l% d
* _! n6 ?3 _1 `& {9 y
Part 1 of blocking CE
1 j& T/ t3 X" p! A5 J
3 x. W4 m$ s5 bIn this tutorial I will show you how to change the Head of Mark flyff.% l7 F4 K; b0 q2 K8 C
The current Head Mark is well known, 5E, which results as a string ('^').
6 B8 ^) `4 O7 Z$ T4 c' P8 M8 V* t
( |) N. D p) W3 {+ }: ]3 y( KFor this we go to the World (Project) and looking at the Buffer.h after thistext- j/ C' s- ?6 b0 P. }& D& K
Quote:
8 l$ ]- E0 P$ R! O% I( e, p# Define HEADER MARK '^' / / Normal messageheader% `/ b2 d- S. i7 U" `3 E q
# Define SYSHEADERMARK '%' / / System message header K7 {2 a* }9 Q! n
What the Sysheadmark is looking for is not even the top 5E.
% W% g. g" i+ O" s& b& ?% oChange this and it makes the CE Not work on server." t2 Z. P; J9 B
; Z$ V8 S& t4 X9 Q6 {1 e) i/ L. S' x4 Q2 ZThen Tom's anti-hack is no longer useful.: B1 X, e* D- z9 {
. c: v* u0 {; y$ ^3 z
LG Sedrika
Part 2 of blocking CE
) L% N! }* R; w) p! p2 Y$ S4 A: [! |! p$ m: f- j
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.
/ R- x6 ?( b- i* ^What does this have an advantage?7 v5 p5 [9 A! @/ i2 M
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
/ S" h- l9 V6 g: V! d
1 J2 G) ^& G m" B: T$ c9 [% a/ K. o: P
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
) `! O( Z" m4 k' b2 n F# [- u
1 L, H( ]% M0 N% i" V1 tThen search for the following content in HwOption.cpp " H3 D* x1 C$ s. j0 M
4 b+ a4 ]# w# w) X; c% L, q
- R) d. Y+ y. B8 Fif (scan.Token == _T ("ip"))
# _& L$ s; K: Q. l( Q/ @{/ L/ f5 X* ]) i9 t
scan.GetTokenEx ();* z2 ^) @ A* V8 P
strcpy (m_IPAddress scan.Token);# A- S, c4 W+ g% ^0 {& e6 L8 _5 n1 K
}
+ C% X+ f+ n: [0 aand turn it into this:9 t8 ^ K) {9 x% _ O5 R4 o, w
Quote:
# Q5 o' `$ } V1 u t" R; y) M, H- zif (scan.Token == _T ("ip"))3 v) x9 Q- y8 X2 m
{
; B2 `9 j% l6 T6 h/ / Scan.GetTokenEx ();
+ p3 C& ^: Q0 }, I/ / Strcpy (m_IPAddress, scan.Token);0 t$ L' ]: n+ y, e F
}! V8 w2 g( m5 _- \/ {- \
And you created the solution.. G2 x# ]$ L2 Q3 H$ |
9 L4 A7 v, \, F. I5 u, P H
& `0 S- l0 R; O" T4 `4 LThen read the Neuz not the IP from the INI anymore. even if put in it* ]. u" Q( F, n& E
5 {* j% b2 o9 v# B1 H0 [
Max skill's
9 q' @* ^+ K% N+ Z9 t7 a+ h+ ~( _0 G
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 : w; _3 ^3 l7 o, r) S6 X
5 ]* A/ h0 C5 C0 u2 H5 D( WWith the TUT can provide the remedy it8 o& k' Q/ Y( F. K" \
; p% B& u. F0 y2 A* d
# 1 opens the file SkillInfluence.h5 x% g: i& O& F* g
# 2 Search, H5 N! A5 ^, |/ o8 T# A+ {
Code:$ r2 |/ I% \) _0 Q
5 A3 Q! p; w2 L" N+ \6 G# Define MAX_SKILLBUFF_COUNT 14$ R/ w) X7 y9 `) O
4 Z; r- s# j- w" v
# 3 Change the 14 to your number (eg 21) and save it from% T( _" s; q9 G1 A. U, ^! M ^
# 4 compilation and ready0 J, e; C8 S, A- P9 v. e
& }# E \0 C8 o8 w a: Y! `
" e+ ]" k- x$ {0 ^& y9 z
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:' I l9 u/ Q7 T. @, R1 p9 [
$ Y. d: m1 o) d: f5 }0 J
dennisdra
% Y7 L; ]2 ~! j: E1 m.Crasy
2 Q( H: ]1 i, L" l% G' a©ross
& M0 E- `* k1 V0 Y6 I) H8 D+ CSedrika
, \% o* b& G1 d& c% c
! p, j8 B$ S& R2 X8 g4 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! , B( V. X6 U% S. F5 J
( D& X: G& ~: }) {2 ^: IP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less- U- `- H" h4 ]! O: Z1 }0 Y
/ s: p) m; i) `) V: X& @
6 n% Z% k& L9 N( e! q- }
Update 1:
how to turn off "Profiler" in worldserver.exe
4 y6 j7 ?9 O9 N& G; ]" Z$ D
( r/ J. [- L* @; V+ J5 ]- n3 \( A! a3 B+ v- @
in VersionCommon.h of Worldserver Solution2 N9 T, @1 ?" q2 {
Look for) @. m# Z+ w2 L$ y
2 t6 r$ M& P k& I5 r, \" v
#define __PROFILE_RUN
m0 n. @+ f' l r& r: j- \
/ s8 ]5 u, ]& ]! C, ocomment it or simply3 I" l5 u4 ?8 G+ Y$ h6 M5 C
7 _9 ?4 z9 M5 i& Y: w3 g9 Y//#define __PROFILE_RUN & V) |+ p/ j a5 M" H: E' V- y# a
& n3 z( \; J1 v
/ q5 ^ B9 H. j1 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投寄。谢谢。我添加更多的很快如果你有病加太
% t, x0 n( K/ H4 e* G
| 欢迎光临 飞飞世界论坛 (http://www.ffwold.com/) |
Powered by Discuz! X3.2 |