飞飞世界论坛

标题: 改变最大等级 [打印本页]

作者: 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 Z( ?- D$ ]% R0 l' B
change level without Rebirth7 F! y% i; f$ e4 V4 o' o

- Z0 X5 X" [, R/ ]8 u3 INow, let us begin.5 A! |! s" _. z1 Q: a7 i# ^
- j' B( Z; z) j2 r
Requirements:
" ?) U, k+ t0 M! O/ S  V3 a4 U6 ZSource+ C. U  `9 X+ M1 L2 P6 r
Notepad / Editor
" a" [9 A* G  O! t% C5 S9 d' _5 a% n
/ / Tips by Sedrika! Z3 n- k# N( S$ [  B& M( R
0 V+ G! Z- M. m$ V
It is up to you how you do it ^ ^
( E( ~8 L- j! _8 `2 r0 c
' Z3 {$ ^' {3 v4 ]( HGo into your source folder and open the definejob.h5 q) v) k* h0 ^& g+ I$ h
Search there for:4 d- r' a3 k' @- y* @5 i8 X
! j! k6 |; ]0 P/ p" @' M
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå' ~6 K$ m2 w! ]& s6 Y8 x
#define MAX_LEGEND_LEVEL 129
9 j4 g2 [; H7 x7 @: Q0 q#define MAX_MONSTER_LEVEL 160& l# [0 F8 q7 {5 f
#else // 15Â÷ è÷¾î·Î ·1o§è®àå7 T% t: F1 q$ X
#define MAX_LEGEND_LEVEL 1211 C% s1 y  |# r" a* D( a
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
- M8 r) J" ~0 w* v& p4 c. a
- {' z% M( F' c/ _; l6 Z5 v0 n3 l: J7 v( |6 F; Q8 H7 w! s
Red: Player Max. Level8 f: p3 r- p6 D( U
Green: Monster Max. Level
( V3 z2 `- Y* f' V. e
0 ~2 u2 c2 m9 hThese changes as simple as you want.5 j) A4 Y# @1 l! Z! e( U
1 Z+ u6 B$ j& t$ Z
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
' r& h7 s& |, ~) M( N* N. B4 l2 Y* a( E5 W+ R; n4 A
Part 1 of blocking CE
0 G8 ^; `7 [9 W% K8 F8 K

2 P  @7 g' o" @+ b! M% n6 PIn this tutorial I will show you how to change the Head of Mark flyff.
3 n9 f9 J: a" YThe current Head Mark is well known, 5E, which results as a string ('^').
9 w# s& S5 `5 ^- W
0 _0 m' ~2 o7 bFor this we go to the World (Project) and looking at the Buffer.h after thistext' T+ T0 f2 d9 Q  V( U0 D1 {
Quote:
, I, E. H- q/ B' @9 @; A$ e# Define HEADER MARK '^' / / Normal messageheader5 Q' ~- z7 p% m  ?
# Define SYSHEADERMARK '%' / / System message header  ?  R+ v6 o3 H' q/ e, {
What the Sysheadmark is looking for is not even the top 5E.( ]3 I2 Z+ u' z: Z3 [/ W- q4 H
Change this and it makes the CE Not work on server.; {) s# Q' S: K! `  d

! V; N% Y5 w$ |" P) AThen Tom's anti-hack is no longer useful.
- N( V/ z8 k: L7 a8 L7 r- q' D" d& F7 d4 e8 x6 ?
LG Sedrika
Part 2 of blocking CE

6 M" p  V6 k" y- J, [
7 H  s, S: j1 O( xIn 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. 9 t" G. N- {3 |. {# r( E
What does this have an advantage?
2 g! h( x0 W# r2 D5 o; U8 ]The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself * ^1 D4 s, z; W: S" Y5 ]
, N' e' v: S! O* v4 R- S, u

, Z* D$ [: {/ ?: ^First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
/ j  d; r: J7 O) ^, D2 }$ E- b# p- D3 ^& b
Then search for the following content in HwOption.cpp
7 m% y; Q' o* U% ^; T" m1 v( c5 o- S

0 H' p. `0 F& Wif (scan.Token == _T ("ip"))
5 {* U: K- c# G( J: c  W& `{
# r" j, x. X2 D) @scan.GetTokenEx ();
3 A! ~8 a* x% e6 \9 n, dstrcpy (m_IPAddress scan.Token);5 D* r2 y, [0 k- X! F- J* C) {7 F
}
. c" H  `4 A2 ]" e! `3 P% hand turn it into this:' l/ c% E8 [' g# F! @* P
Quote:. ^' D9 u7 o6 }4 A: Z/ y$ [
if (scan.Token == _T ("ip"))
5 ~/ u- p8 I, K+ y{& d5 j8 M6 K2 r! O
/ / Scan.GetTokenEx ();4 M& c; n9 c5 }7 X
/ / Strcpy (m_IPAddress, scan.Token);/ u8 S4 a. ^$ J  X/ T2 B9 o
}0 O6 G" \4 V( X% D4 D
And you created the solution.
. \( G0 }2 J6 y. Y8 E0 Y8 [$ |- F/ k' R1 p% F# \
! {$ q2 y/ @  C$ B( ^: W
Then read the Neuz not the IP from the INI anymore. even if put in it5 o) H, E% s# `' [

6 R; o. r" X5 j0 z8 y* n
Max skill's
& J8 i& S2 V6 l& g
4 R8 a0 v" G& Y, h
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 4 a7 B+ C, @; ?9 J' t' r
( `8 g$ A) Q. o  x0 V* Y# Y( B; T
With the TUT can provide the remedy it: d6 d5 Q- T7 W# Y
; W0 T% ^+ _5 u; D
# 1 opens the file SkillInfluence.h
+ p& ~0 ?8 a1 E, r8 r# 2 Search
% i9 u8 j" ]3 R8 Q5 r2 p5 V# OCode:
- r! T9 u# j9 F
. b- M. L2 g( H* h2 V0 \* x; m# Define MAX_SKILLBUFF_COUNT 14
% q6 G" O: b" H3 B, e4 f' w7 K( k1 ~3 \7 d5 q) G5 E: X
# 3 Change the 14 to your number (eg 21) and save it from
, ]! g$ Q8 q5 `' p! ]& ]; A% f. T# 4 compilation and ready: p' [" l1 n) F5 Y3 v  J% x

; N5 q- K6 o1 H: F  l( l: i( W* {# y. X! i
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:
6 ^( x8 ?0 t3 x$ i' `
7 e# F5 S! S, C3 Adennisdra8 [1 }& Q( P! Z
.Crasy! I! l; V; A. _4 |
©ross! o/ \) }9 H: ]! K
Sedrika7 S% A; G$ j6 i! N/ ^

4 F% _7 _7 v5 Z- beverything 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! + e( i) ]. ?2 r& H/ n+ F' A

& ^3 b5 E9 X) P5 k: }P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
4 A5 z! k7 x$ t* [
3 h; ~+ ^- `" w$ c. A$ g; t  T8 I; `) z' m7 v) s/ ?& _: t+ h$ I
Update 1:
how to turn off "Profiler" in worldserver.exe
" i3 Z+ l; E! |* F( Z9 m+ z7 P
; W. v3 r+ n  p3 }" Y0 v

/ @0 |) Q& I2 I& g* Din VersionCommon.h of Worldserver Solution2 s# r3 [7 w5 \7 @: t2 w
Look for
$ T/ l- I# O* `( k) d* I) |5 ]7 X1 b$ W
#define __PROFILE_RUN
- O& d4 R. c1 o: _; |( i9 |5 o( {" ~/ [8 {9 Z
comment it or simply
$ l' p8 o5 v4 r) i1 k( x
# C1 v8 s/ {* N8 O5 b//#define __PROFILE_RUN ! G) Q: g: K7 J4 |

3 {# z, S# ^6 P. D. R- k  {* y! R2 X, U  N0 ]" I5 k0 b% Z
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投寄。谢谢。我添加更多的很快如果你有病加太

( y4 X, Y( L( |9 S/ V




欢迎光临 飞飞世界论坛 (http://www.ffwold.com/) Powered by Discuz! X3.2