飞飞世界论坛

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

作者: 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
& a- @5 M  l0 A) X$ J
change level without Rebirth7 j& w6 o: ]7 x7 @: O$ f- Q- H

8 z& _" M( _; ENow, let us begin.
2 `: D2 C3 ]& ~9 j3 S" G' `- T7 T0 `! e( n# ]( ]: O7 A% \
Requirements:
) w% r* T% I( g+ P& \, ASource! {0 p( ]3 |# T+ e
Notepad / Editor
% o/ g- `1 }( m# Y/ l4 D9 m/ A3 f, E& e
/ / Tips by Sedrika* }1 }" Q: w- L3 H; O

' B, L8 T8 J8 _It is up to you how you do it ^ ^
. x7 h: \; R" ^1 J* K; k3 h, F; P3 j6 ~" {' `
Go into your source folder and open the definejob.h' p. z- j! P" e2 L, b: H0 k
Search there for:
- q( N. ^" n" S# q9 y
5 Z# ^( v' a' Q$ X4 U#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
3 E% `7 ^  U2 r* D- [8 ?#define MAX_LEGEND_LEVEL 129; O% H) `) C/ o# q/ I' |  T8 Q
#define MAX_MONSTER_LEVEL 160
: ?* H2 f) ]1 x$ j6 _9 _0 D, l#else // 15Â÷ è÷¾î·Î ·1o§è®àå
. E9 `4 @% s7 U5 V#define MAX_LEGEND_LEVEL 121. T& V7 W5 y9 d& N4 U
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå & m9 X# ?' s+ o+ f& {  y* Q
% A! W0 C* U/ J8 x1 m5 D2 \+ c% h
8 h$ N0 @" I$ ]7 I7 G
Red: Player Max. Level* {/ b/ z. W* @0 _9 c/ v& j- P
Green: Monster Max. Level
. F9 W) v7 u$ }, q! ^2 b
; [1 F- {/ n& q* W; N# Z: n, I; hThese changes as simple as you want.
* Q' r6 H. S" m( e7 t
3 w0 M/ A4 O( B8 v" ?6 V0 B$ ?, n- IThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
" \+ h; U4 Y+ h8 A+ U& b4 e
1 q0 _! V' U0 K9 O, u& p* L6 X. @
Part 1 of blocking CE
3 d7 p# {4 {" G: A
) s1 e7 ~, h" {! `. z3 [
In this tutorial I will show you how to change the Head of Mark flyff.
! Q6 Y: U8 @0 T5 z& i' ~, FThe current Head Mark is well known, 5E, which results as a string ('^')." g) }% w! P( ^" m6 Q

* K; M7 v& l& T% _* [4 FFor this we go to the World (Project) and looking at the Buffer.h after thistext4 H+ O) q- J$ e7 C. Q, k4 v2 g
Quote:
. P& G0 o; `, U2 Y& }) S& A# J0 M# Define HEADER MARK '^' / / Normal messageheader* i  p2 K+ {; i
# Define SYSHEADERMARK '%' / / System message header% x6 V. J2 q) P% p1 _# K; ?) k
What the Sysheadmark is looking for is not even the top 5E., n2 f" ^% Q& E3 k4 e* ^
Change this and it makes the CE Not work on server.7 N8 [, `1 m: U/ y

, {/ S3 V' Y* W: {. JThen Tom's anti-hack is no longer useful.
. b- \. L1 I# ]
+ g: z0 [, r5 p2 q. R/ e$ zLG Sedrika
Part 2 of blocking CE
2 L9 L7 \6 K( H* i) I9 O
# U' c! j7 |- ^) H9 T
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. 9 d7 `5 F+ o# Q6 l3 O2 W: ]
What does this have an advantage?
3 W3 ~% x! A7 B' ]The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 8 C, d9 U  |) G8 [0 k

) Y2 y9 J0 s: w3 H# J" |# y3 i% F1 O0 t/ n0 y- d+ a
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
9 i# [; B. r& k: [/ y9 L5 z$ b: g( p3 n" b! A
Then search for the following content in HwOption.cpp
% [* m  Z: ]1 A5 L, m; x6 ^* W! c  g+ x7 r. _. [

# a# @, A6 A, N5 r3 I3 x& oif (scan.Token == _T ("ip")), Y) T) L8 p. T! W# t6 f
{
* {5 q3 v( a+ w( G" Bscan.GetTokenEx ();6 C  O+ K' U/ s
strcpy (m_IPAddress scan.Token);
+ Y! a7 E$ z2 n: B8 ~9 F& A}
+ n1 f& c- N8 R* M% _and turn it into this:; P* _0 u4 M) B! f- I
Quote:
+ H& H. j3 n/ o3 \0 V6 v/ W' g" Eif (scan.Token == _T ("ip"))
  g; e, V$ h" p4 L$ Z# A{
4 H) C7 T. i. y/ / Scan.GetTokenEx ();
' |; Y" V  w7 S" \  C. }: O* h/ / Strcpy (m_IPAddress, scan.Token);+ b# m# S$ t1 p8 m1 y& _
}0 @+ t2 C# X. S2 O- H
And you created the solution.
* w: J: _6 Y# a2 x, T/ u( P& {6 t
4 R: Y4 Z1 N* L3 J! W# s$ C" I+ O  E4 C( y/ H
Then read the Neuz not the IP from the INI anymore. even if put in it7 m6 G! B( C+ ^& n0 O

; i7 P1 L3 n: M9 k4 Y
Max skill's

  R- Y6 O; X" J; T/ _, d9 Q
9 p/ [7 b1 R4 }1 L5 \# O# ~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 m( J" U1 x& @0 V* R  r% t* {, L5 v7 M2 D$ b1 a" j7 H
With the TUT can provide the remedy it
* m& `) S; h% k9 N' w% l1 l
% ~5 [- _3 B& J2 b# c( f* o# ?$ }9 Z# 1 opens the file SkillInfluence.h5 ~; v6 w8 I) S9 ~% n" P+ B8 @
# 2 Search
) }' p: i% q7 y" {1 rCode:$ p7 E% d  _$ {/ m5 M! g& i
- B! F, O9 x- V: b/ ]- K4 \
# Define MAX_SKILLBUFF_COUNT 14( I8 Y- o/ m2 m0 }

5 {- X- }; v9 j3 i9 R$ a# 3 Change the 14 to your number (eg 21) and save it from5 U" @- |0 X3 |1 ]+ R$ ]7 W
# 4 compilation and ready
7 R! v, g+ g* F; G: w
' q4 F) D0 t% Z4 [
6 Q$ S% {9 o2 x" L3 ^7 QI 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:; Y) @1 l5 p4 Z9 k2 X; h* t# l
1 t5 n" s, N- o$ t0 b: U1 \
dennisdra
" t9 M4 Y5 M# ]+ J9 g, M.Crasy# Y/ k1 l1 j% F( @1 \' L
©ross
5 K5 p$ K) ^0 d0 N& B6 g3 H; q3 {Sedrika
3 Y5 M  z1 @9 D( D$ V  r' O! Y( n5 p# ~! I: U- v
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 o  Z5 y7 P& P2 z1 Y
- z8 @: N* t! \7 z5 p. w
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less, [, J! o& H0 B# H( N

# r6 W& z; m  {8 r" _+ {
' R, {" o9 ^' A$ f2 q4 N! AUpdate 1:
how to turn off "Profiler" in worldserver.exe

+ \) I& f7 F# t4 F% z5 J! L& D2 m0 L3 S# ]! W) L" b: |6 y" _

! L. m1 ]  B9 A8 f( Pin VersionCommon.h of Worldserver Solution
& G* U, @% z( `8 cLook for
; }9 R8 B; U' @* r4 k+ x  s3 g! i: y% F
#define __PROFILE_RUN
  J. c5 N' Z, x
2 o- m) ^" }; z' L6 acomment it or simply
# Z8 ]) N; L& {+ ]; |! X+ N8 A% [7 k; q# ^
//#define __PROFILE_RUN ' N3 k. i8 K- [& c. {& r! I3 W
2 m' y' y* I1 H2 r1 ]5 \' n
* e. x7 `+ C  G4 w
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投寄。谢谢。我添加更多的很快如果你有病加太

2 Y( p, z4 x$ P




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