飞飞世界论坛

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

作者: 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
0 _' H9 w8 e, Q8 t  ?9 ?+ m7 r" N. {: Q
change level without Rebirth5 d; u* ?6 k# ]" s
: `, Q: E0 W! v3 t' ?2 `
Now, let us begin.1 G& C9 `; I# |1 ?! I% S
. q" e  d6 R0 Q0 H! A
Requirements:4 Q( V3 \8 H+ y5 w1 P: n4 u
Source: ]" @2 s- D) _. _; b2 W
Notepad / Editor3 Z+ l0 Y8 a1 T, {; Q( w* ~
8 K$ ?: I6 T" h' X. i, Z8 h
/ / Tips by Sedrika
! I! R- J9 I. ?* P% w0 z8 I' p; N6 W; G" d+ j6 S4 F
It is up to you how you do it ^ ^9 C0 g) v2 l" F7 t; x) f
. q' z/ W1 Z; I) s
Go into your source folder and open the definejob.h* y$ b" w3 m7 P8 K1 f# G" N
Search there for:
7 ~5 u4 G8 z: A' i$ `! w& F* |, t( L: [8 R0 e- d+ t
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
& Y3 u9 ?0 W( k6 l( m' k#define MAX_LEGEND_LEVEL 1294 g) X: [! b" o# o; \
#define MAX_MONSTER_LEVEL 160& s; w  f9 q8 m
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
% p: f6 f4 f4 N/ i- u#define MAX_LEGEND_LEVEL 121* S4 J- P( H3 }1 H
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå % v1 t& f, b% F" N# g
% u5 ?% d- f9 F/ A8 e
& M. E' a" M/ e8 W
Red: Player Max. Level
( G/ l; \, a, K$ Y; [Green: Monster Max. Level. E) C9 R) B7 V

! h3 b- j- B1 V3 S$ T, FThese changes as simple as you want.
0 M2 C) P1 _6 ]6 H+ t8 V+ A* v& I1 T8 t- w0 ~
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
' P+ D) g4 X) g8 h$ T* z" m
- Q' ~) _+ U, J
Part 1 of blocking CE
5 F) n4 N( g- H
9 V: i2 u: V8 h; @% t
In this tutorial I will show you how to change the Head of Mark flyff.
2 t+ t4 Q8 `1 ~8 t. T  oThe current Head Mark is well known, 5E, which results as a string ('^').3 L# f; K% P0 n* M! u
- S% t! E/ B) p3 R3 m. j) G$ ]' z- l
For this we go to the World (Project) and looking at the Buffer.h after thistext
9 ], A( G- {: }% T. P# `Quote:
9 U* X6 o% f* b! d. |1 u# z6 s! r# Define HEADER MARK '^' / / Normal messageheader
$ o9 G/ s5 H5 ]+ t/ ?# k6 e# Define SYSHEADERMARK '%' / / System message header
( F6 N: Q- l8 V4 ?$ mWhat the Sysheadmark is looking for is not even the top 5E.
. F1 Z/ Z4 i8 s# B  {% N+ r- D& rChange this and it makes the CE Not work on server.
1 ~. }/ u2 v. G2 o5 x, T
! x7 R, t8 V+ v- n7 I. aThen Tom's anti-hack is no longer useful.
1 H. N, p7 g6 B2 x% t- |" }( v
. U3 |* B6 u# }/ N( j+ kLG Sedrika
Part 2 of blocking CE

4 W: I+ t0 {3 T  k
$ U4 c5 R: i( F) `" S! K+ q3 }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 J; F6 W" T( j# G1 }( w3 S
What does this have an advantage?
+ v+ _2 w" x. tThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 2 M: c5 B$ G) x* |
/ Y, t+ |  C% T; R$ H; P( N  ?
- S' j8 [: Y* z' h
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.% j9 x: k5 \  p. D' w
2 c8 }2 `( X' }: q
Then search for the following content in HwOption.cpp
, N3 J3 Q% I( ?
( P; M8 ]4 m+ s$ V4 x8 S+ B" S- _5 ?! B% {& c& T
if (scan.Token == _T ("ip"))
# |1 [- G, d. j3 ?) z+ e# N{( n9 p. C; ^8 G  x! F6 Z  k
scan.GetTokenEx ();; L9 k& u6 @3 H% ?) v* y- r
strcpy (m_IPAddress scan.Token);
& C5 X! Y9 X. R( ?$ q$ ~8 r}
  Q3 \6 O- o! L& @) e9 rand turn it into this:( t( A" b0 ]  E. b8 |) O
Quote:1 L& C8 V, k. A; Z$ F
if (scan.Token == _T ("ip"))3 G; W$ n9 w: {7 ~& a
{+ U& q. s4 u, O2 _' T% X4 [
/ / Scan.GetTokenEx ();
, ]! G9 I! K9 h( s  n/ / Strcpy (m_IPAddress, scan.Token);5 i" y' n: d& p( C. R2 U& L
}( g4 N3 _- H" Z
And you created the solution." g/ ?7 n9 E0 s2 O& N+ Q2 T9 E

$ J  P+ Q% e& J- r& j4 E& q  B& j$ j
Then read the Neuz not the IP from the INI anymore. even if put in it. ^# \/ ?6 q  w7 c( @. r8 M
2 t- w; V' l) e9 \5 c& m
Max skill's
! o' _& r4 K: {! C7 }
" G) X& b4 J: J6 `8 K
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 y# F; W( c& P3 }8 A# K* s- N
% m8 G7 [! M1 n* b0 }
With the TUT can provide the remedy it! H$ N2 C" \' j
- F3 k% Y3 N; K; P' T/ C
# 1 opens the file SkillInfluence.h
/ k8 N: i) @9 O+ B# 2 Search( Y7 u  E3 `% k
Code:! X" C, L3 {" ?( i9 P0 B( ^

6 c5 C8 }4 N* j# Define MAX_SKILLBUFF_COUNT 14/ m' a5 A  O4 W: N) M2 ?
( q8 f0 H1 H  K' `0 o! M. c+ C5 u
# 3 Change the 14 to your number (eg 21) and save it from$ q0 `3 `* g  }& \" f9 M  x2 G
# 4 compilation and ready# T" v2 e) x  q

+ E  u# |% S, {; @7 u3 ~$ z) _8 f5 |" b) P. v* y
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:
% o0 p1 _6 l  K- H: t% y" I9 {2 ^, q- K9 B
dennisdra1 k1 \8 G. [# x: H' C, b+ K
.Crasy3 B9 l# W% X& ?: G
©ross
+ Y' n- O: x' ^Sedrika* G( @8 l9 c  x* e5 H7 y8 ?

( U% Y0 ~( b9 B# 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! + T$ m& o$ }' \0 x; x

  W; }) F4 ]$ q! x* A6 n% X; M$ \/ `P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
- s- v/ a) O( \) q2 E2 |2 ?  e5 @5 B7 E7 {

+ }  k# [0 L: H$ a! tUpdate 1:
how to turn off "Profiler" in worldserver.exe
: S/ g) j9 S0 u6 F$ ]9 I% r

3 c$ x3 t0 K% _& Q% l4 f  {) H8 Z# S, o/ S4 t
in VersionCommon.h of Worldserver Solution- n* s) _2 e: R& U, K
Look for2 |1 {- K3 D  q. W8 Y" [
  X( Z- p( T0 o
#define __PROFILE_RUN
. c+ g& b: g! y$ d
; _5 T+ U- Z  U, @4 s1 k+ }( Dcomment it or simply# D4 q  C+ Y" C# i- _& g% s

* D' L. F; q6 u' i) v//#define __PROFILE_RUN
% J# y1 D* x) S( o' @' v4 H5 w* a
% u1 [5 N/ E9 p1 u) F, Y( |/ [( v. g  ?! v
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投寄。谢谢。我添加更多的很快如果你有病加太

3 }7 M3 I2 ?+ d5 Q! q+ n- _- Z




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