飞飞世界论坛
标题: 改变最大等级 [打印本页]
作者: 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 s9 U7 `- ^0 o- ^3 K, D6 [; U$ Mchange level without Rebirth( k: @, `: \* P! K3 @, {5 U3 R
% v/ ^' j# R P2 Z* Z7 H
Now, let us begin.# ~0 z7 t2 T/ U% U# @5 Y% Y- @
! o% O' w- k) }4 F
Requirements:
6 ]7 ?( i) h& \1 e7 O( A- f% `Source; B5 v5 |8 U; T+ z D s' M
Notepad / Editor
$ B- C5 b+ n( R* {1 p d- ?, m1 k- Y/ a* s: b6 r2 X' d$ x$ g2 p
/ / Tips by Sedrika5 L& e( G0 Y( C0 A
: _4 i' n! ?8 @0 A8 V
It is up to you how you do it ^ ^
1 j, r5 I3 r* z7 h5 y8 K" w1 l
* L0 i- z5 K# Y9 f" [$ }2 QGo into your source folder and open the definejob.h% B4 H( I7 w- p+ N
Search there for:" L8 G8 k* n/ v: T5 d% w3 V; e! G
$ H7 g$ _. c8 a7 s$ j#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå4 h$ J' J4 T8 P0 U, w% I, A5 @' m
#define MAX_LEGEND_LEVEL 129
' v, X S9 W$ Z* ]4 O/ [" i* ?5 y" m#define MAX_MONSTER_LEVEL 160
( _; V( q$ t, I) b1 }0 b#else // 15Â÷ è÷¾î·Î ·1o§è®àå3 j% w2 J; x* W! A6 d Y/ {: \
#define MAX_LEGEND_LEVEL 121
# C1 n9 T! \. g7 r4 W#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
- l7 s) e4 p+ S, ^6 N$ W5 @5 a) i0 w; n1 D" g
& }( ]/ f3 \# x. W; o( LRed: Player Max. Level
" T e5 d; e( M. H; `$ X! gGreen: Monster Max. Level
, ?( ?5 m+ J3 c! O6 P2 ]* X7 A. j" k0 _+ z; i! w
These changes as simple as you want.. s% t' C# E3 q% Z) H: p
7 g" m; b7 @2 `; [
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.% _4 z1 q; v& R: E) J
2 A7 Z- I" L ^
Part 1 of blocking CE
: U; T: n O' U4 x; _8 i+ Z1 Y: [
, d5 @5 f: l% [5 y( j iIn this tutorial I will show you how to change the Head of Mark flyff.
9 }3 Y5 k9 [1 P$ m; B7 M! eThe current Head Mark is well known, 5E, which results as a string ('^').2 B, X+ t' n \2 L: m
6 p+ q }; x" K# R: c3 v
For this we go to the World (Project) and looking at the Buffer.h after thistext) @/ Q( f1 @- }4 P* W
Quote:. N5 e7 l" |; k* C! d
# Define HEADER MARK '^' / / Normal messageheader. Y0 z: O' A8 W0 O4 R
# Define SYSHEADERMARK '%' / / System message header
9 ^& p4 Y, b7 o4 N5 iWhat the Sysheadmark is looking for is not even the top 5E.
) D2 b& f Z6 qChange this and it makes the CE Not work on server.( N$ A& d( c f5 e" w5 a
% A# X- B# D; S5 H3 V
Then Tom's anti-hack is no longer useful.3 T+ u& i6 ^7 a/ Z0 o) e
# {" h* I3 K8 U: g
LG Sedrika
Part 2 of blocking CE
) O0 V6 p( e" p5 X) H
/ p- L" a% y% m5 I: WIn 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.
8 D5 e3 _: l( LWhat does this have an advantage?% A5 C9 E$ R% m/ s0 W
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 4 L) b7 B' U0 }! n7 `' _
' @7 O! }( y; s6 {0 `5 u( x
+ H; Q' W; f$ QFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
& n- F" g, ^, d7 P5 M
: r( u4 _& K8 [5 `" e( yThen search for the following content in HwOption.cpp
4 P& }# J! l( f
# |5 T5 q$ \" k( R# t9 \5 o: b- B
5 `. G& m5 T# nif (scan.Token == _T ("ip"))
1 J# A1 Z8 ?$ E# M{# @+ T/ P$ `1 F6 s% k9 I
scan.GetTokenEx ();, d1 D8 t$ W% X; c n
strcpy (m_IPAddress scan.Token);: O( r2 P6 ~' j' G5 d$ N4 m* Q6 C
}7 \/ K* Z2 A2 v) w. {0 d
and turn it into this:% \- N2 U: F: o1 j
Quote:; G" ^/ k' e# e8 c! H
if (scan.Token == _T ("ip"))
* p g: z5 w$ Q/ P{
+ l% l8 f' d+ g. ^! a a5 @3 L/ / Scan.GetTokenEx ();
" r' w% F- |3 \8 C+ v B0 G/ / Strcpy (m_IPAddress, scan.Token);1 n; s4 {/ A0 l5 h. P
}5 p* b) V J" ~- J/ L; f
And you created the solution.# T6 g" D/ y- J' }" p, ~" K
' ?3 N3 H. P2 E% W6 W* C' @
) A) \% Z+ H7 V) Y" p$ N/ fThen read the Neuz not the IP from the INI anymore. even if put in it
; z* j, l1 _$ a
6 y! d& _( U- r. u$ g; |+ n
Max skill's
( P7 I, |: a) p
' D2 F6 }4 }% Z" v6 p
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
+ b7 N, v" |( k7 X# A( v: s( j" E/ m0 u. B# M& K
With the TUT can provide the remedy it. t/ N1 G+ t0 W/ D! }9 R: L# _. S
9 O) r; G7 ~( A: \& H8 M- m# 1 opens the file SkillInfluence.h" S3 N" w5 ]: r0 S4 r- j8 u- t9 ?/ Y \
# 2 Search
3 n, T- O4 H# O; q2 I$ z( TCode:
; d0 E. S8 l6 f, T K! u; x8 ]+ B6 Y& b8 Y- r" ?
# Define MAX_SKILLBUFF_COUNT 14
5 w) r3 g2 b. Z6 h: k- [" t$ O7 Z8 A+ S0 r3 b
# 3 Change the 14 to your number (eg 21) and save it from
2 i" X+ `& z4 x: _+ {& i' ]# 4 compilation and ready
I- Y7 ^' P2 [" t3 C. y+ r" o: i# n+ E2 |# v
( c! T1 x* A+ C7 A o4 M3 c4 `
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:
, n5 T6 U' S; J: L5 M& u1 `8 r
7 ?" G+ M" z$ a8 ?dennisdra0 M, |) z) t0 Q& L5 C
.Crasy
! {# K+ e$ G+ F: z©ross
m' d5 R6 @& z% l( |Sedrika5 v3 R9 I, {9 u! g, U
: Q; W1 c8 O( }, heverything 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! # V3 P, V0 c! u* }
3 w L* _( [% y6 U! [1 u1 AP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less! Y' Z6 q3 [5 B3 e+ W
4 G) I$ s& h n2 f$ Q- \3 [: C7 c7 _7 E
Update 1:
how to turn off "Profiler" in worldserver.exe
6 k2 P i8 u. H4 t& o
2 S3 r$ R ?" t' g/ o
) g. w( Y0 [3 m+ E: g6 W
in VersionCommon.h of Worldserver Solution4 `2 Z! i+ s$ q$ c" }
Look for9 ? r) x1 n7 X% w
3 N6 [8 b& Q7 V$ I#define __PROFILE_RUN
, G- r9 N4 ^* F. i# X+ s
+ Y- k" g* J$ { f2 H9 _& o" Ncomment it or simply" q& M5 u. w, Y: Z4 i0 t$ B/ K9 @: @
( h) t- X8 h2 z9 @( U' F+ X% f$ J) Y
//#define __PROFILE_RUN
! `: [1 p; C5 h+ _% D; Y& i# a1 T: g' A" z8 C3 c- E$ Y, C0 C) [
2 m, n! D" Q2 \2 L" |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投寄。谢谢。我添加更多的很快如果你有病加太
) m F2 }/ U2 B) ^3 N1 {
| 欢迎光临 飞飞世界论坛 (http://www.ffwold.com/) |
Powered by Discuz! X3.2 |