飞飞世界论坛

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

作者: 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

" U& C6 F. M( j$ i. y0 nchange level without Rebirth4 X# p/ p; o! b7 l1 _
5 `& b  e0 A" x
Now, let us begin.
! I' r- \* a* i' V9 Z' D# C2 {% E) V* e* H/ A4 @: m0 X: o* v
Requirements:  n% ], @& ^  `! x  G7 y8 [
Source- w1 P5 x% w9 J, @5 b- d* K2 Y
Notepad / Editor* z  ^+ G7 y0 n# R
1 h- q1 R. P- M- |3 Z, A* p
/ / Tips by Sedrika
2 k+ _- H$ Q7 \- S% J) q4 P" ^1 m) o3 z- y, D
It is up to you how you do it ^ ^
& k0 h1 u! I7 E6 d; `7 P' @9 l/ A
Go into your source folder and open the definejob.h2 J; Z/ g. f: Q( b( u) T, i
Search there for:; e+ C: x' T: q1 y' c/ h) a
8 b4 E* T( v! `# M3 e
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå% u/ U; U- L1 R; _$ d
#define MAX_LEGEND_LEVEL 129; l6 J( v% o1 u  |" F
#define MAX_MONSTER_LEVEL 160% U: E% e* n9 z( X" M) c
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
; C3 ^' u0 {& n. N- [#define MAX_LEGEND_LEVEL 121
$ |2 Z8 T9 ~4 [* l/ K' V#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
% X3 ^* K. b) M$ B7 ~- r7 y# r9 x# ]* g. R0 I# ]* M; a9 _  p1 x$ Y! a

" }- F" G0 q4 u" u6 HRed: Player Max. Level" R/ F3 K2 K, Y5 S" I
Green: Monster Max. Level$ D2 D; T9 t3 H( `0 m  y
) N$ h. L! L& b- k3 J( n' o
These changes as simple as you want.. m  }2 e5 U3 Q

. t4 u; r* N4 |- Q1 d6 W8 @0 ^Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
5 J# A/ @) A7 }; L! L2 x. }+ g
3 ]6 S' }/ T- U( j. f7 o$ @' U. V
Part 1 of blocking CE

3 u' L4 L$ L: _; S
: D: Q2 B8 j9 l/ EIn this tutorial I will show you how to change the Head of Mark flyff.
7 K1 S+ q9 A! m) CThe current Head Mark is well known, 5E, which results as a string ('^')., ^; I+ y& h* B; o3 F- F

$ f+ n. X2 ]- m/ Y: t+ @For this we go to the World (Project) and looking at the Buffer.h after thistext
2 ]1 g& u  Q- ^5 `Quote:
3 Q' T3 V$ F) w  l# Define HEADER MARK '^' / / Normal messageheader% q# H5 g/ K7 V& ~5 B; N2 A" w
# Define SYSHEADERMARK '%' / / System message header
' |0 H0 D+ n* q2 S' F" [7 n; NWhat the Sysheadmark is looking for is not even the top 5E.' h+ S  _+ _3 {7 g" j
Change this and it makes the CE Not work on server.  m4 E# [1 `+ q3 X: ~9 A
2 n9 e% \6 c  X7 q0 S0 |$ J. x
Then Tom's anti-hack is no longer useful.5 o: W, W) t3 Q& n/ j3 T
3 m' a9 Q+ F3 c7 I
LG Sedrika
Part 2 of blocking CE

$ @. Q" a1 \% f- S+ n) ]) D0 E. M! N3 Y$ A3 }+ d0 ?8 y
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. ! }- X# S" M" a) w! n
What does this have an advantage?
. j4 [2 E! b$ |The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
, L3 ]6 l8 l  Z. p# @6 i9 ?" j, P

5 a% B! o7 @) H% ^$ l' c+ ^First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
& X) N  W$ O; I  o0 M1 |) P' N3 e+ m+ |- G
Then search for the following content in HwOption.cpp 6 M3 i  y% k1 K; i* o' ~' g8 p" s
3 ?6 i, ~: ^& M9 e, ?. X, f

% o7 \, j" _+ i$ b, uif (scan.Token == _T ("ip"))" O  S: l; i* t' x  ~: w. }6 E0 ^
{
( }# L2 g2 j; j1 f/ z! B6 Dscan.GetTokenEx ();
- D/ s7 ^( @$ i# P: Rstrcpy (m_IPAddress scan.Token);
& x6 s2 ?" u  k}) v* U, ]# I  O' z" z
and turn it into this:
1 n6 Y: K- I2 }' i- d9 RQuote:/ S! R8 x& u! u7 T2 c7 J) `
if (scan.Token == _T ("ip"))! \+ o0 t5 ^- O0 X- _9 T
{
6 V& R; t2 f( F7 q7 x: b* P/ / Scan.GetTokenEx ();
5 ?' k! b5 W7 L( d" ]2 b/ / Strcpy (m_IPAddress, scan.Token);, s7 e' Z. T% u# l2 U: U
}
! P5 k" Y8 [: O* XAnd you created the solution.
0 N3 o% B0 [$ q3 H; @, P
) X5 ]8 G, }0 s* ]0 ^' O2 E5 L- u  x# X2 }3 i, S$ i8 O# s
Then read the Neuz not the IP from the INI anymore. even if put in it+ A4 `0 c  x4 R- L! o4 h
6 m0 m2 L0 Q) Z" q0 e1 ]/ {
Max skill's

4 M7 _& \9 S0 ?1 Y; H8 V
- P5 F7 s1 \8 x$ G& V" ^, EAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc
! R% z2 ?3 z* F6 C
" V7 c* [3 `0 w5 ^With the TUT can provide the remedy it
) s+ w9 f4 p! @4 `
4 x- j% ^: }; r+ p# 1 opens the file SkillInfluence.h4 W6 f+ D; H8 w5 [4 g
# 2 Search
- l3 O  I0 E: C" k* v' K8 tCode:
, J) s; K+ t1 t& \+ s9 ]: j. g! |- Q5 G$ _
# Define MAX_SKILLBUFF_COUNT 14
& a, Y. ~$ J) J0 S; O6 c' r2 e  {) S& C1 X
# 3 Change the 14 to your number (eg 21) and save it from; W2 v  F* n$ Y+ ]9 f' ?# h
# 4 compilation and ready0 }2 m% y, t2 I

, ?  f+ g; s5 R/ f5 k+ [3 @$ n! b1 T. ]2 n
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:) Q/ w# {8 Y( D) H9 Q) _/ V

" H( n8 I0 Q; E% o$ p# @dennisdra, e' O, b  m- X, q
.Crasy
! [4 _& S8 {. r0 W/ o; B* a©ross- P; b( j* T' R- L3 Y! I7 M0 ]6 q
Sedrika  Y7 _1 z+ G1 ?5 m% s
) N0 r% F# j0 \9 q
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!
; A6 M* v! {$ Z
; S/ U; q( n0 f/ D& v" mP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
7 d$ i7 ~# Y. W" Z7 j7 q: n, K( Z  v0 b2 Q5 B# t8 i0 v

+ y5 A4 T% `6 P. b: @Update 1:
how to turn off "Profiler" in worldserver.exe
: e$ L( K3 P1 X3 e9 @
8 u! k! P3 r+ o& e
% y% X+ {5 Q' d$ b9 [; N; k
in VersionCommon.h of Worldserver Solution
2 F- p  h+ @4 v2 n0 xLook for
/ @$ E9 U- k9 v& @4 V! S7 p$ s8 s4 r( u1 S& n& N( |  O  P7 z# {. c0 z
#define __PROFILE_RUN
! m' [# t  h: I
0 Z+ u9 V# [- `. acomment it or simply
& i* j# F9 G- O( I7 T7 a* C3 i- H' T7 s
//#define __PROFILE_RUN - K4 B8 G$ I' p5 H( t1 K5 k

/ T0 Q- M" k: ?: p5 h. m5 F/ ^1 `/ f/ `- U
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投寄。谢谢。我添加更多的很快如果你有病加太

0 o  E1 g" \+ g+ P& P




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