飞飞世界论坛
标题: 改变最大等级 [打印本页]
作者: 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
' C3 t; X ~8 Schange level without Rebirth6 N, Y+ s( F1 O H& b8 }
' H" u7 B2 b% X2 k6 f0 i
Now, let us begin.
. p! @2 A5 g1 N& L9 N' y
1 h1 X Z! K& v4 k. nRequirements:
0 r" e. H, Y3 }( I1 b& W2 ?8 fSource
. ]. g$ a7 x3 {6 U& PNotepad / Editor
* _ c/ m) ~$ I6 B- R) E+ k; J: K+ F' n7 H. q. u, F
/ / Tips by Sedrika
. t9 `( P. C' X* e9 C# y1 w
- D; Z* E3 F% V7 A; \- @It is up to you how you do it ^ ^
/ G4 z- `! f$ k: T) b) e# `$ U, h7 i. x$ }% S( F2 G" Y$ e
Go into your source folder and open the definejob.h+ ?/ z N) U6 t/ ^6 Y+ p
Search there for:* z$ F' l6 [# s
( N: W. T0 j3 [: _5 w/ U' N* V e#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
7 B) i# w# Q) j#define MAX_LEGEND_LEVEL 129 ]% q1 N/ f: m3 A
#define MAX_MONSTER_LEVEL 160
6 S& H# J& f3 W1 @/ h#else // 15Â÷ è÷¾î·Î ·1o§è®àå( D" |- L4 `( P. m2 a& n" m* l
#define MAX_LEGEND_LEVEL 1213 i7 p5 n& |2 f- s% [( _0 Z
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå - `; s4 s% o5 E5 I
! m( h7 M5 Q4 v: B3 ]
; n- h/ ]+ i/ Y/ ?4 b+ {3 VRed: Player Max. Level& w0 Y. Y6 f* _+ U% R2 ~/ H
Green: Monster Max. Level& c; d. N5 ]! v+ [5 ~( r3 I
& {9 m, Y& m' t k, Q7 ZThese changes as simple as you want.3 E1 F7 B8 U. r% P( x6 }
2 @; _# X% \* v+ i. \
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.: M7 E: n n) Z P* T1 R; G6 K
2 h: E$ n9 `( \: \9 @+ X
Part 1 of blocking CE
5 p \7 g/ q. e8 _9 u
) v9 H# Q3 z8 Z$ {6 y3 MIn this tutorial I will show you how to change the Head of Mark flyff.
: N0 u0 g$ ^. ]# X/ s/ W- u- a' OThe current Head Mark is well known, 5E, which results as a string ('^').# \ Q# N6 r' R) L8 o" e. @# X
- `1 E3 ?5 B- E" b% P
For this we go to the World (Project) and looking at the Buffer.h after thistext
; z/ b# J& ?# u6 sQuote:
$ _9 y& L" i5 v' P; w" o# Define HEADER MARK '^' / / Normal messageheader; X2 ]8 {' Q" n5 ^
# Define SYSHEADERMARK '%' / / System message header/ k# ^( Y1 L" {+ X8 r3 }0 E0 n
What the Sysheadmark is looking for is not even the top 5E.( s7 G }- r9 X9 X5 y$ u% ^
Change this and it makes the CE Not work on server.
/ n) L# ]9 F2 X, j! e0 V
8 ~2 R$ ], J! JThen Tom's anti-hack is no longer useful.% c- V9 h" O, X) e0 t3 h
5 k* J# L B" E! J% x# a; kLG Sedrika
Part 2 of blocking CE
9 o" Y3 q% I+ z
$ F. |: Q6 |" N& qIn 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. : t& r8 ^' a! |6 }' u4 ?
What does this have an advantage?
3 T9 f5 U: B: U8 O6 kThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
% O/ k$ E9 v% x/ q1 q% n/ s$ O' P5 b% U8 s4 ?
: {! B& L: l( n" w7 M
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( |+ V7 X( J) P9 H
& z0 D2 Y: L& [* C( p
Then search for the following content in HwOption.cpp ! G, E4 w9 t) i E# `$ ^0 n
: @; j1 V" N8 M6 G0 h
2 ?( P# |, D+ r t/ cif (scan.Token == _T ("ip"))
# S7 }8 f% }; O C" h$ O' u{
: w8 a- q6 j9 ?7 c$ y3 t# B3 kscan.GetTokenEx ();
" h; R* t. R+ k ~9 x$ @+ [! vstrcpy (m_IPAddress scan.Token);7 d8 x) [, M) C/ B: V E6 p
}
) G9 N3 ^6 O& sand turn it into this:
) c6 M5 _+ Z- l2 Y! _1 lQuote:
6 V! X) v* _ C2 ]if (scan.Token == _T ("ip"))
- _/ ?2 ~9 p: W- \{4 k/ j2 F1 Y; {* S$ Z* g. v
/ / Scan.GetTokenEx ();
* k/ S+ X1 W( D/ / Strcpy (m_IPAddress, scan.Token);
- {) n8 {) j& r! |}
" w( F4 |- W2 U: SAnd you created the solution.
2 ?0 F& R+ T: |0 M
. @; s9 Y- v8 v! E# g; r& J) ]: J+ Y$ _4 o" g5 [
Then read the Neuz not the IP from the INI anymore. even if put in it2 V& }) F6 s: ^' M; [9 @( ]
3 G7 f! i( Q5 @. p
Max skill's
, a( L9 f- C& x9 j* x' z5 F( }* J' \% I2 H, p' ~) n
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
/ a! S; |9 U/ u. C, X. S3 T" n( J9 o2 X/ _
With the TUT can provide the remedy it; p% ^% v6 {1 I! |2 D0 u
0 Q5 R, Z5 p3 `* M
# 1 opens the file SkillInfluence.h
9 O4 W6 P& V( V* n& p# 2 Search) m+ G) J' w3 E# ?2 O+ b' t4 i
Code:
0 O l: L8 G6 b
0 Z1 x' [# z1 w% O% @% p: F# Define MAX_SKILLBUFF_COUNT 14
; J4 Z% |8 ?: O6 q8 n* E: v: e. W. j. r% _( p* O4 _( c
# 3 Change the 14 to your number (eg 21) and save it from
7 I! G2 ?: ~( R! s# n# 4 compilation and ready3 U$ P$ w0 J9 w& f- G; _. H
; Z o6 D8 g. v3 Z6 v4 h, B l1 X$ n; Z# C$ Y, B9 V; }; \; K
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:
3 z1 _+ l( B' Q" z! N9 x( }( G' o s7 |' O& Z3 ^/ L! C
dennisdra
4 R6 ~3 X% \7 s# G5 t.Crasy
& w6 y+ e4 s/ s7 n, V& ]©ross
% {/ h t3 R( _" ~8 wSedrika
& B: X9 N% q% U7 s c2 A! X) n
5 U6 Y3 l& \- `, {" t( ^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! $ W. R: n* ` e, e4 O% _
2 y! e- h z7 X( ?9 f/ | \
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
, m" Q1 U( C( h |6 t, _' [
* t7 c6 |+ n+ q3 f
; ]5 R. K2 b" n6 ^% w6 R' \7 lUpdate 1:
how to turn off "Profiler" in worldserver.exe
' O! R" ~; v, Z% v% s/ B
L9 c* ^) _$ E
# u0 R+ y f5 h; B1 Y* N/ vin VersionCommon.h of Worldserver Solution ~: E0 N- L8 e1 R
Look for) D9 l. c3 ]$ u$ U u+ Z
. Y0 z, Y4 A; e& o, K, S
#define __PROFILE_RUN6 `* n5 R4 D/ C) c8 F) \( b
4 m% P% n M* v4 G% P- L
comment it or simply
. h( L! Q8 d* j
6 M- M+ j7 \" v& O; e# o//#define __PROFILE_RUN 2 ?% v! n3 r2 ~0 o
, p3 X& J4 h; I# N% S2 s; K% P
6 N/ l* _4 G+ Lcredits 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投寄。谢谢。我添加更多的很快如果你有病加太
+ e6 W" v) \0 H/ K
| 欢迎光临 飞飞世界论坛 (http://www.ffwold.com/) |
Powered by Discuz! X3.2 |