飞飞世界论坛

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

作者: 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
" q4 ?% ]2 h1 K; @" t
change level without Rebirth
* n6 u+ b8 g. ~+ k: ~' l8 x- [1 A( a% [+ ~. D  ?- A
Now, let us begin.( Z/ k+ f, e* M: C% ~
! @& P( ^. F' {! N/ }( }7 \
Requirements:5 _0 d7 r: @% d. E$ U/ i
Source
) q" j( h0 u' s- g6 ^( k' p: PNotepad / Editor
0 A9 K) N# q/ r  k# F
# @: Z' ?9 }5 H4 h0 G/ / Tips by Sedrika
; d7 V& {; ?/ `4 x0 U# ^
' i) G1 T/ |5 H% n0 NIt is up to you how you do it ^ ^) t) I, x' n% ^6 I- _
1 `# h+ h2 Q& c$ I
Go into your source folder and open the definejob.h
: f1 v/ B4 X: q1 }2 T( f7 l/ cSearch there for:
" g& `( Y8 J& _% y& x) u# f  i9 k8 C9 a* u
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
$ [; M# [& H# ]* V#define MAX_LEGEND_LEVEL 1291 P! m/ m% y* H2 a7 ]
#define MAX_MONSTER_LEVEL 160
! T" `4 b2 W/ O5 Q#else // 15Â÷ è÷¾î·Î ·1o§è®àå( a& W: ?6 u9 S2 ]5 t6 r% E
#define MAX_LEGEND_LEVEL 1211 @* L+ {# c. v! F
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
8 E4 ~1 E2 K/ f# e; A0 m- _, e$ [% x+ m

5 k$ m% T$ K" C# VRed: Player Max. Level
# Z$ }" a5 L& d5 D& yGreen: Monster Max. Level
8 K8 |% S9 N  ~% L: X- k# ~, m3 d! u# U9 b. J8 q: z* ]
These changes as simple as you want.
, t. G& Q; d6 o' c( B8 b1 \2 Q
- g* {$ V* c+ I. T! p4 b+ \Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
/ c& [! l9 S) ^9 K' X, x9 Z7 i  S* i, ?1 L# T$ W$ O4 O
Part 1 of blocking CE

, Y3 L4 {; q& x& @, H4 r9 I* }
6 n6 T8 G, y) H; B5 L2 B" OIn this tutorial I will show you how to change the Head of Mark flyff.9 s+ F- n8 o" w/ X% N$ w
The current Head Mark is well known, 5E, which results as a string ('^').  S+ x* T; n& t

" o1 _: D! Q! V2 b6 r0 jFor this we go to the World (Project) and looking at the Buffer.h after thistext3 E% @+ I7 |0 g
Quote:: K8 s8 U5 I  f, n4 {3 f
# Define HEADER MARK '^' / / Normal messageheader
% u! E8 G( B/ n' `% U$ }4 Q% f# Define SYSHEADERMARK '%' / / System message header5 C! O+ n+ X* {+ @! M3 A
What the Sysheadmark is looking for is not even the top 5E.* J$ A2 ]! v9 z7 x
Change this and it makes the CE Not work on server.8 @! Q3 m! g! p

- g& y9 {5 c6 e* g2 R) i" `* ~  EThen Tom's anti-hack is no longer useful.
: n7 c( U7 [/ o: I: v9 C
( e, K$ Y! s4 ^( }( BLG Sedrika
Part 2 of blocking CE

  k5 _! r; V! M' P! d( g( z4 n1 ?# ~4 s
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. : B4 e1 a: g& l( U0 A$ v
What does this have an advantage?
' k3 o. _! f4 U) ^$ w. W2 V* cThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself , I: p0 s0 g0 }; k

5 G; `  v5 S# z/ P4 [4 O( t: [8 N$ p, h& b
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
( Y! P- a/ ]& Y2 A, C$ ^
# E0 S+ o. V6 p. v) M5 ~Then search for the following content in HwOption.cpp
/ u* ~9 A" I# v0 C% ~+ D
0 a, s  `, L1 a7 Q4 z# C2 C5 W0 O6 u0 `7 _
if (scan.Token == _T ("ip"))
, M3 f- P, r  Q) \{
2 D: F$ b" k# ~" o0 uscan.GetTokenEx ();6 X+ `6 r9 }1 U, @! t4 u& c+ B
strcpy (m_IPAddress scan.Token);% _2 }7 ^) |, x/ [; u9 A3 b  N7 G
}4 b6 I0 T3 y  \* ]- P9 |
and turn it into this:$ R2 m9 x1 f6 I0 F; {7 K0 }: q, f* f
Quote:
4 }5 A0 R, {9 e4 y5 tif (scan.Token == _T ("ip"))1 |- c* T! p% |, y; I
{- I' r7 N" ~3 ~" E
/ / Scan.GetTokenEx ();
/ F3 r2 F) a! ^  J+ D, Y  r5 Y/ / Strcpy (m_IPAddress, scan.Token);( w+ g: G4 d4 Y6 g- L
}) X: w8 y8 K$ Q
And you created the solution.
& y: J+ h7 @1 w. x
$ z+ P0 s9 N9 V  i2 M
1 Q/ }4 K- J* Q% G# s/ n1 }Then read the Neuz not the IP from the INI anymore. even if put in it" T5 Z# Q1 b$ }
& \7 }  m) {7 x( Z8 w1 G4 @
Max skill's

' z* f( i; a- e, y9 v" p4 b) q- v" h( m% s
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 2 H! {* Y6 \1 D7 \
# q+ q9 d0 g, I3 w6 U) r
With the TUT can provide the remedy it- K4 E" E, L" d2 t+ w5 z

' k" }1 Q0 W7 U. U5 U/ ~3 p# 1 opens the file SkillInfluence.h* P9 X" j" R, k3 {0 v9 j
# 2 Search
  ~: ]# Z% d( K& x' pCode:& u7 V( c  k/ g1 h, U" U- I0 o! i: j+ T
$ j/ _* v" j4 [
# Define MAX_SKILLBUFF_COUNT 14% _" v8 H- T0 \- {' \/ C

$ |. v5 D* K. ~8 y* `' _  z# 3 Change the 14 to your number (eg 21) and save it from
8 P1 ^+ c2 c2 }9 ]2 n# j- L: ^$ W# 4 compilation and ready
; `" |, T, d  f9 o
7 Z$ H# b" x8 Y+ g5 `( N( F/ _. L% `! 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:
+ k( b. c: \, k; c) p- F) h9 v+ Y' Q8 Q  o* s
dennisdra
* {* ?' j1 u0 k, f* Z! n3 w.Crasy
( ?8 s# W# o# r9 w& ^# S1 c% M©ross
) Y" ~$ H3 ^; A, K. ~0 USedrika
6 y% I% s* A5 k  c- N$ k; A' Q
0 A: X1 K* [; L/ oeverything 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!
- c1 K" S0 j. S$ ^# Q6 O8 ~5 ~8 l1 L5 g6 Z! Q; E# [
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less. f3 I$ v" b" X' z8 B

$ p; D3 r: n/ A+ p4 I7 G/ ?- F9 Q
% C- C4 K. }" I2 k. rUpdate 1:
how to turn off "Profiler" in worldserver.exe
! F9 F1 |! p" ~7 M" W0 z  }/ l- Q
' E+ t' ?- C+ G  `5 b
# k1 P5 I' Y3 k8 G8 p
in VersionCommon.h of Worldserver Solution5 I5 p% t2 P4 Z+ O& E
Look for' Z4 |8 |, y( B  X2 v

/ U. u0 c* N6 W: ]; n7 \#define __PROFILE_RUN9 ?- n& E7 b3 ]2 o# Z( C8 n$ X

, z: R5 ?5 w0 t3 d8 rcomment it or simply, \' |7 G7 V- o$ `. L0 _9 W
* [( ^& \% H4 R. |8 k1 U
//#define __PROFILE_RUN
+ g7 k. `: B" N. V2 y4 e# C; v
1 O; E: Q8 A. U! t- ]; `2 h
+ ?6 v, J6 b, U  u9 Acredits 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投寄。谢谢。我添加更多的很快如果你有病加太

1 }! ]' U1 R# O5 }7 K7 E' @




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