飞飞世界论坛

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

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

( E3 Q( T+ F3 Vchange level without Rebirth
7 l: I+ @9 l# c; c. S
; Q' S# ^3 h: [0 j. S1 f" O& q" }Now, let us begin.
- s0 r: l% o( \. o; ]; N, f
  @5 h# H# H% O& O2 O7 o) sRequirements:
0 T# g0 r2 V3 rSource
: G: ?% e4 v" yNotepad / Editor; O8 r5 j  y, h- V0 P

' p1 c" x( _0 B+ }% g; y8 S+ `5 C/ / Tips by Sedrika
2 G1 e/ n% i1 t* d; D; p% m$ q: }  c8 b( D
It is up to you how you do it ^ ^
" m% d& }# _0 s5 _: G' K$ y4 y- H
Go into your source folder and open the definejob.h! _$ X2 g, Q+ T5 J) G9 M0 Q7 a: G
Search there for:
9 i9 k- r6 V, J! r
: J( b, {: N& \& E0 o6 Q5 c# V#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå/ A5 P* k) m' P* p6 b
#define MAX_LEGEND_LEVEL 129' ]5 m  ^8 n3 s; L: u7 z4 {! x; g
#define MAX_MONSTER_LEVEL 160$ b, y6 Y2 P$ P8 y
#else // 15Â÷ è÷¾î·Î ·1o§è®àå+ y" ], B0 T  j$ X$ x2 d6 E
#define MAX_LEGEND_LEVEL 121
- W" V0 l7 ?. z( V#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
( K  L7 O6 M0 _/ D! Q  z+ n7 ^4 \- \/ Z: n' U2 v
& w$ U1 A4 z8 U# P% Y) U
Red: Player Max. Level3 M+ i! k) R5 t! C
Green: Monster Max. Level
. ]7 C( `6 j1 |2 D0 n4 i  ~/ o7 ]7 y, H
These changes as simple as you want.& \6 ]. {3 L5 x7 D

9 M% L: m2 W4 k& v3 r0 [Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.9 j1 i3 {& t. s# `

! l' H# M6 I5 x( i8 I$ C% Q0 y
Part 1 of blocking CE
( _3 t- k: q* B) p$ y# H8 B

, m( v0 E5 `: k4 _. U- ~In this tutorial I will show you how to change the Head of Mark flyff.) R: L! H# j1 {$ Y+ d
The current Head Mark is well known, 5E, which results as a string ('^').1 {: u9 d  K  H1 I( X1 [' _9 A

' j* T, ?6 a; O% TFor this we go to the World (Project) and looking at the Buffer.h after thistext4 c1 N' `& H$ t/ }+ G9 b, y" j0 H
Quote:. f' m9 v4 @0 E: x, |* e. ^- y
# Define HEADER MARK '^' / / Normal messageheader
, ~2 p, w8 z- s; U( V" b# Define SYSHEADERMARK '%' / / System message header- w0 \) l, t3 y2 o/ u
What the Sysheadmark is looking for is not even the top 5E.. C$ V/ o- i/ ]1 w
Change this and it makes the CE Not work on server.+ {5 S5 B1 u7 ?0 \: n0 D
# p' n0 k& I- R  K" k6 h
Then Tom's anti-hack is no longer useful.
1 w+ N4 O: _* Z8 r& i' Q
' P) p# S5 t5 F3 }3 K" F' hLG Sedrika
Part 2 of blocking CE

; R$ l* s% D: t# Y! i. I: F1 R0 C5 g6 Z
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. % E% P% M' \8 r0 V' O6 C
What does this have an advantage?  a. C( `" z& L
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
) L) H4 |5 V7 S% {- l' o) H- B- e& k3 o% H1 P% T3 o! K
# f  Y+ K4 m( k3 w: c; v5 ~5 ]
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
' g( D( s/ P/ _: t& R3 j
+ [  P9 x1 e' [" V% u  N& D% {Then search for the following content in HwOption.cpp 5 ^( H: N# P5 @8 ]2 T

' p, B( Q' `1 Y0 Y/ {+ Y: |1 y8 j' x! Y- b1 u
if (scan.Token == _T ("ip"))
3 Y$ z9 N$ X: s" E6 w+ W{7 |" _( ^/ q( W1 c. K! K# I
scan.GetTokenEx ();# i3 S, W! ~. M0 p
strcpy (m_IPAddress scan.Token);
& \' a& j+ c. I. K" a# |0 [}
7 ^2 a" `4 j  G. M2 J8 Z7 Hand turn it into this:
1 i1 w+ B0 C% @( |Quote:
1 Y1 h" L, S, |8 s, N5 I/ Hif (scan.Token == _T ("ip"))# K- Y& k* d# O1 T
{, a& `7 ^2 Z' V  \
/ / Scan.GetTokenEx ();
/ a6 G+ `, o, G  G. X/ / Strcpy (m_IPAddress, scan.Token);
5 ?4 {  x5 z2 j0 a6 ~}
; n6 \, H1 T( _, n! A5 i; `And you created the solution.
% f$ D3 v+ c4 i+ S% N+ b* b1 c% g- R% y5 J& a
) y7 c5 G% _) b4 }: I+ P
Then read the Neuz not the IP from the INI anymore. even if put in it& b7 v4 t) l* v, H0 _
; `$ f+ ~" c  Z" Z9 f
Max skill's
4 q$ G( p. {/ N% b# t
8 u5 S* B8 _( @
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
' k8 N! k" A" F; W/ D9 x1 S* }# b: V* ^3 ~2 F/ W
With the TUT can provide the remedy it
2 K+ T( L. J* m" z, Y& y) Q5 ?& C" @( D1 U* X9 [7 ~/ Y
# 1 opens the file SkillInfluence.h( B" R4 V; `- L6 ^) z* r  p8 z
# 2 Search8 p$ j6 K8 Z" B5 p5 _
Code:, L" v# X6 R! D  {9 ?; {
& g; U9 k# k5 Z5 k. Y6 F8 {) H
# Define MAX_SKILLBUFF_COUNT 14
$ Q7 s! s2 g2 [( L. @; c
7 u  x' E- r6 i7 B8 a  X3 J" b$ U# 3 Change the 14 to your number (eg 21) and save it from
. N9 h) L7 U' O# 4 compilation and ready
! \" f" P5 {' c" z, n, n5 h& F. R' i2 I8 Y6 ?" t* j
' x/ m) [" V, ^8 m* n" I2 c( 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:) b' o, V  m% v- W' M& h: o+ {# g
$ Y. V- j" V" [! \+ Y" K' Z
dennisdra8 e! `7 [7 i' y% e* P) S
.Crasy  }: k  U0 ?$ L) \, I" q3 {
©ross
; d$ T# u2 E  U2 y9 oSedrika7 S2 H* c- K: G( _9 L
* t1 I9 ?& Q& f+ Q/ y
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!
. v, b& M5 g: Z! M
, I8 t$ j# z. p4 aP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less8 A* J8 Y( r( w% M( c

; ?1 O, m- w5 L* I2 ^% ^1 n
0 \# N! Z, _8 a; ZUpdate 1:
how to turn off "Profiler" in worldserver.exe

9 O& k3 J9 y4 n5 C8 d% @( A9 U+ n( c9 @" o  N/ ^  n" y

: \# W9 q; C$ V3 ~in VersionCommon.h of Worldserver Solution
0 x+ g# l* [' f- w* ILook for5 f% b+ B8 }4 c# [* E; j* |

+ w) e2 v6 H1 J6 z" v) C! z#define __PROFILE_RUN- I7 q( R9 }9 G7 v  l
+ z+ s. ?4 D' \# @
comment it or simply0 i3 N2 Z0 ^) K, l
! ?5 r- K) h. J, ~! H
//#define __PROFILE_RUN
) u$ `& x' q) ^
% l' C; C5 I$ G+ K5 a* `: R) Q: |2 f$ ]7 J+ o: \
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投寄。谢谢。我添加更多的很快如果你有病加太

# r! F% w: W' z( Z* y. s0 l0 O3 ]5 u




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