飞飞世界论坛

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

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

& X. {; \! u* ochange level without Rebirth
  F* Y* q6 ^; p; I! M" Q& O
( y" r" Q7 t8 y) j( ZNow, let us begin.
) ]% u5 g  I9 R+ @, x
$ _/ g8 ?; @2 ~5 n9 x7 N  J0 uRequirements:
* O( Q" Y1 |1 sSource
7 U+ s% ~5 S5 e  X/ h% p4 }9 ZNotepad / Editor
/ c1 Z. X' Q/ E, ]2 [
- `+ ~0 r- `& S$ s8 j/ / Tips by Sedrika/ Q# l8 f; j$ e
8 z5 [  L% k. ]* d
It is up to you how you do it ^ ^
: s! z# l& r4 f' N( `' p7 P! L
, m1 x% O: u) t+ Y) n% dGo into your source folder and open the definejob.h
; I& R+ t+ |; iSearch there for:  R) r$ @' g: K9 ^

2 `5 D9 X& ], g& M' W( H; C#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå! P" Q  n4 s7 |1 t3 T( i
#define MAX_LEGEND_LEVEL 1299 s) g4 V0 [) R
#define MAX_MONSTER_LEVEL 160
$ d5 e2 S* T. b+ i9 V#else // 15Â÷ è÷¾î·Î ·1o§è®àå
- }# K! j( \" `" |& C9 e) Z#define MAX_LEGEND_LEVEL 121
% [) y, ?7 u- Y#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
! G2 P# g, G# D" @0 j/ d) P0 W! |$ ?: W* I# v2 o
; x0 z3 d1 T8 A1 ?+ W
Red: Player Max. Level
7 e# j; x( J5 gGreen: Monster Max. Level' n; s2 j9 n! X( p
: Z0 [6 y( Z7 n& {/ ]6 L
These changes as simple as you want.
; ^' G# f6 C' L, X4 E5 o
7 {- h/ M+ X- oThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.* j6 y2 L  {/ t1 e
$ F. X: j3 y; D
Part 1 of blocking CE
7 U! ]4 `6 f. \0 @. r
# c- s6 W1 O0 t$ C5 }
In this tutorial I will show you how to change the Head of Mark flyff.8 `, ~* w  b& A* z" ]- j
The current Head Mark is well known, 5E, which results as a string ('^').5 W3 \$ H& y/ V, P

. M- r; k4 B* t# B  ^For this we go to the World (Project) and looking at the Buffer.h after thistext: Q  I+ e1 u# t  Y1 r+ L1 r
Quote:
  X9 ]/ [& S, L5 t# Define HEADER MARK '^' / / Normal messageheader. Q" Y# z. C" p2 w, l* q
# Define SYSHEADERMARK '%' / / System message header
" w5 S/ V$ [, v0 n- MWhat the Sysheadmark is looking for is not even the top 5E.
- f: F, O/ @$ {Change this and it makes the CE Not work on server.* A5 o9 G7 r& d- w
; @# X6 h# M/ p! ?
Then Tom's anti-hack is no longer useful.
, Z: w( B* ]# w' ?6 V) u( l
5 W" F) u# K& fLG Sedrika
Part 2 of blocking CE
9 B& X" Z7 f2 K; Z

% a$ C9 z& B) o" }% |( HIn 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. & l. Q; n% K; g
What does this have an advantage?
: n& f4 _  _  |( cThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
& e/ Z9 F7 B% M0 k+ w
9 B) X7 w" a4 |5 H* t( Q! c' R, W* i/ Y" P  P0 P1 c$ Y. A  O
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
7 e. j$ z4 N( P5 b
: @+ }9 k  C0 ~% I0 k4 y* d9 QThen search for the following content in HwOption.cpp
2 ~# m/ _2 `( O( p. l
  m5 E/ \* I8 j2 i7 n* K
( r! }, ]8 h: w7 J0 W) v# |if (scan.Token == _T ("ip"))$ @0 b6 s/ f9 g3 G+ C) c
{! V( V- ?# c% [7 E3 _  T
scan.GetTokenEx ();4 S2 B& P$ c' m/ `9 _+ `  q
strcpy (m_IPAddress scan.Token);* T5 d0 Q" z4 o2 S. s! g4 e
}
) k# V& `( S$ w  D" V, band turn it into this:# c3 }& j( T0 E5 m  F8 Z; n
Quote:
4 }& f* ~# t" A( a5 xif (scan.Token == _T ("ip"))9 [7 z, r* E' a. ~  e2 P0 `
{
- j; S/ r) E9 }% y* I1 o5 L/ / Scan.GetTokenEx ();! z/ R/ [% B/ S7 O
/ / Strcpy (m_IPAddress, scan.Token);" b2 ~4 \" e% E% n
}- H; D  v& E1 i& L5 c
And you created the solution.
- k. a& s: _5 k7 l2 o2 ]4 c9 l, `0 w
: z# f5 u% l3 u3 o
Then read the Neuz not the IP from the INI anymore. even if put in it1 a) ?7 E! D, R" |! a# R& e

  q+ N) f4 ^4 J) a! T( m( ~, _
Max skill's

3 m) ~- B3 H& N, c6 n: `, F! v% S- `! P9 G
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 ! W+ _3 S$ b6 i9 Y! o8 w

) p" f6 Y) w5 b7 Q* S: WWith the TUT can provide the remedy it( Y  q# S6 t7 {' x& \
  `* ~. P) I/ ~# _
# 1 opens the file SkillInfluence.h
- }2 E% w; z( f3 ?1 w$ k5 c. K  x* P# 2 Search4 B+ g8 H2 ^: Z' v! w: N) }/ l
Code:
) [% i1 s; b9 K/ m: R# k5 s  C6 k1 K# Q/ L! a# [
# Define MAX_SKILLBUFF_COUNT 14/ D( _. N. n1 L  `

# l% x3 M/ ~7 ]' ~# 3 Change the 14 to your number (eg 21) and save it from* A" f4 ~+ _$ W$ ~: T& ~& E
# 4 compilation and ready
( ?  n* _6 ]% Z, f8 m
0 l% H+ R; W" \: \- p9 p5 l" n
$ X) g: y# l  |) m! ^1 ^  _& ?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:
8 B; ~. d! p# {% t
/ g0 q+ B4 ^* p6 U/ @dennisdra5 @3 o2 N) h1 s5 n; U4 h
.Crasy
, b5 a: ^; K* m+ M©ross
0 V$ w( S* \2 GSedrika
! \% ]% Y' q4 L! k9 g8 o6 d; o% ?1 ]6 i4 M
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! 8 w, @  z# @; U: j! i2 _" _# T3 V

5 H4 y7 n9 |5 m1 VP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
9 I  j, }$ i1 U! f6 ^' [
% v- p, a" v0 X1 H  [* O
8 E* o, v# v1 i7 Z1 _5 J; AUpdate 1:
how to turn off "Profiler" in worldserver.exe

4 N& @6 V; a0 k% {* d6 s4 f& M
3 j4 N% h2 C' ]) x7 Z: G/ ?  S, \4 C
7 B! P3 f0 t4 A7 S* Nin VersionCommon.h of Worldserver Solution
4 a: z7 ]$ f( iLook for: K0 @- J$ }) z. x# s, p  d, f; ^

) H: e4 \- L! g' x- [8 P#define __PROFILE_RUN* N4 X. Z) J- P# i% i; |; v) |
7 c, I. ]* D  ?4 M; w
comment it or simply
: O7 t. W" J' r; m# T
. M; ?$ f# D" z  I( G//#define __PROFILE_RUN ( s0 L! f, p9 O" V

! o; f0 A; U6 S0 h$ \9 v: W4 j3 _: d' r
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+ i# A& w$ i& \( A5 h1 T





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