飞飞世界论坛
标题: 改变最大等级 [打印本页]
作者: 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
9 e3 E* @* Q! Y7 f. W3 ^
change level without Rebirth! J: ~, d" l- J# G" E$ a( q }
, A4 R6 ]% G F
Now, let us begin.
- `2 A" M* B/ }% Z0 k( v, `+ u2 u6 U: R1 i, Q2 U* \5 c
Requirements:! d3 ]# u* Z) D" F
Source
! v4 W/ a5 k* S/ O& A. nNotepad / Editor: x; K% t' k7 _% i
7 k( o5 n1 N/ O; w1 ]& s7 b/ / Tips by Sedrika0 }4 h9 | I6 j; F# _1 Y/ R$ B& C) {
: S, ^# ?6 K1 B" _+ q2 `
It is up to you how you do it ^ ^2 P0 U$ d, y" ^- [) ^ |4 m
% {: Q6 |% Y9 |% e: E
Go into your source folder and open the definejob.h
" O1 _! p8 X- s: [7 |8 t& X4 D5 mSearch there for:
% S i& B5 J. C% H1 R3 p) c
3 e6 H' R6 m: c+ C6 U' W#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå! B/ M/ |- R; N! A' _0 D
#define MAX_LEGEND_LEVEL 129
1 m/ @' l. S2 \#define MAX_MONSTER_LEVEL 160, q) y' X, E( E2 s6 }# t
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
1 @ V! I2 |3 l0 R9 P, J2 G5 Z#define MAX_LEGEND_LEVEL 1213 P/ ~4 T& ~' d' `
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå ' P+ K& c. Y; n/ O: x3 i/ n
1 f5 F! u& `6 S4 ^. H/ s
; n1 [' V2 Q& ARed: Player Max. Level
- v$ i: W; J* m, _. AGreen: Monster Max. Level% U3 d6 V5 F) v, N9 v( d
; h. ^' g; Q) |5 y+ r0 ~. c% m5 FThese changes as simple as you want.
8 x+ m) U6 J0 k
2 F v. P. L4 m A- e& Z0 a. W5 IThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
7 M5 y" r" Y- w) `9 a6 R' ?% L, ^. e
Part 1 of blocking CE
9 n0 g1 Q, ~% s K* d9 g# q; o" G0 J6 E) W- S0 q. E2 Z7 e& i
In this tutorial I will show you how to change the Head of Mark flyff.: c6 O4 q) m, J% k: R
The current Head Mark is well known, 5E, which results as a string ('^').
. s) F$ e8 \% u7 @7 V
7 W) b6 Z0 @9 |2 a, p, r! nFor this we go to the World (Project) and looking at the Buffer.h after thistext7 R$ p1 v V) E6 |
Quote:; e- S5 S- z3 Z, B/ {
# Define HEADER MARK '^' / / Normal messageheader& k3 W# J7 Q1 Q- x5 Q# \- ]3 o Y
# Define SYSHEADERMARK '%' / / System message header
! y5 I/ n1 K3 K" s+ `What the Sysheadmark is looking for is not even the top 5E.
- _# M, f. F, x. V: R$ _& u: qChange this and it makes the CE Not work on server.
& t( J. ^! P/ m9 [- T% e2 E5 {' V6 U
Then Tom's anti-hack is no longer useful.
9 `; M6 K7 l) T
, v6 d, Q- I/ \' a& c2 kLG Sedrika
Part 2 of blocking CE
* L6 a; D7 ~; K* [; y" R) l' @
n2 R* ?+ S" p* g$ zIn 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.
) x5 v% C4 {3 a' J! D6 }0 ~What does this have an advantage?2 \* b3 @6 o: ?; S1 S" }
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself % E3 e- P* T4 \
& ?' R& o- h" V9 G$ r! O4 N
* _5 F7 ^ @) v5 S2 bFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
- G4 }$ I: V# ]: x# K2 c
7 a9 w% t6 i N! B& xThen search for the following content in HwOption.cpp
1 k: L; m; e9 d9 a: ?
' ~# B6 S4 {0 U W& _' D8 P/ _0 h4 l8 P, g7 A3 X( T1 T* R
if (scan.Token == _T ("ip"))
( u; I: T4 f8 d \{' ^% @6 Z# s& U3 R
scan.GetTokenEx ();
( Q w5 }0 s! ^- fstrcpy (m_IPAddress scan.Token);
5 d* o" z8 Z0 a: w3 b}
4 a! W, G1 R( m( xand turn it into this:9 `3 @6 e$ H# A
Quote:7 ]& x8 x6 m; u& J% r8 C* j7 s; @) A
if (scan.Token == _T ("ip"))
3 H A! ?% K* ^2 X8 _ v{. c- B: F1 B+ j/ H# z
/ / Scan.GetTokenEx ();" v ^) Q7 }% V" g g7 q$ ?" ?: a
/ / Strcpy (m_IPAddress, scan.Token); U, Z E+ y* w
}% E7 Z8 J f9 H$ ^6 V. {
And you created the solution.
/ c: x9 b: S* n; c! ~- _* W* `; k( }
- S2 {0 o u; [! y/ U/ p* C- }
Then read the Neuz not the IP from the INI anymore. even if put in it" [, O4 u9 ~, X9 u) k) z, C( B6 ^$ U
5 h$ }- Z1 Y( @& ?2 @3 t/ W
Max skill's
. ~( S1 J7 e: ^8 K! Y& U# G7 x4 R5 ~9 Z( d4 G: I- b$ W8 o6 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 0 r, E; r; o y. t, d0 w; }
* I% m5 m: ?/ e( w) B- R" uWith the TUT can provide the remedy it- \7 F3 K1 m) T; F6 F( i+ t
2 D$ ~. I# u3 z- T4 T$ I$ N* a
# 1 opens the file SkillInfluence.h
3 w. @/ E4 x9 o8 o4 C, q# 2 Search
3 H- p& M* ?9 p& k- [+ J9 zCode:
# |0 N8 c# N! h/ ^) ?0 R
# z. |1 P( Y% I& G! J% S# Define MAX_SKILLBUFF_COUNT 14
2 A) \( z8 o( l K: l T' J0 B7 { |6 E& E$ N
# 3 Change the 14 to your number (eg 21) and save it from- s' G2 ?8 k& a) C# ~* T9 _
# 4 compilation and ready+ Q" Y0 b; t1 E1 Q
, b& T9 {4 M; {0 |) q/ x
9 w! r9 m- ]/ [* ?1 M
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:4 I0 i& x; D/ Y; o. ?6 z5 S
8 u( h8 r) P+ z/ k9 odennisdra/ E0 \7 P0 o2 o1 O/ D: u6 H
.Crasy% r# @/ {: D6 {7 i; k
©ross, v+ |/ f2 ]( Q4 J5 A9 N% E F
Sedrika+ g7 ~+ |3 N2 V H
6 [1 u0 t8 r" [2 y5 o+ }6 ]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" Y9 l& R+ C- P! u! W1 d& h* u
2 K/ p! h* C# A& k3 E6 C& pP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
% T# u% x$ a/ y7 W5 {, Y8 l$ ?/ M/ x/ A( J
2 d# g8 H; i3 w* F6 Y% B
Update 1:
how to turn off "Profiler" in worldserver.exe
2 `, @& i2 ~+ H: ^8 u' Q5 |9 I; P2 f' p1 J8 |. u
6 H* s# Y9 j2 g+ x8 V; m8 q
in VersionCommon.h of Worldserver Solution
! N3 P$ s6 Z" oLook for: I& ?0 o/ ~! Y @) |) a8 M' o7 Q
7 i; e% U8 ]8 V3 C+ S% P#define __PROFILE_RUN3 W& K+ l: `" F; t ]
, T, @* \9 v$ N9 x7 v
comment it or simply
% c' s% M8 r9 L, B/ m1 q) t( y1 ?. \' w9 p: A% T
//#define __PROFILE_RUN % x1 ~. C! n# B: W; H
: p7 p2 K. q9 g6 K
7 v- t2 i2 F; g, |
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投寄。谢谢。我添加更多的很快如果你有病加太
: H' k" D) a( H$ H( g
| 欢迎光临 飞飞世界论坛 (http://www.ffwold.com/) |
Powered by Discuz! X3.2 |