飞飞世界论坛

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

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

# Q2 ?6 c! [4 mchange level without Rebirth
3 |3 L1 D0 N1 ^8 _7 L: d- n* Y5 ?4 y
7 r, M; n8 [4 m6 `7 K, C. VNow, let us begin.
+ Q% S- x* |" ]5 J/ h- O3 h$ c: H
Requirements:
# \3 T8 R) E) }5 G  B' ySource  |& a$ J0 U  Z
Notepad / Editor
# s9 p+ ]7 b8 A  g& J; _
" f5 K* X# k" G5 _# F/ / Tips by Sedrika. u4 }9 F! `) D1 s* }
- v. v4 S* @: v$ P8 N' ]2 ^* O
It is up to you how you do it ^ ^& H+ Y) \. x4 ~" E

0 K: f! O$ d: g9 AGo into your source folder and open the definejob.h
$ c, Q$ f3 j" ]1 [) G5 t1 X2 T1 o) QSearch there for:
) H9 e* q7 c4 ~" z' \9 _$ k/ e7 k" }" j# g$ Y/ n- ]1 W
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
! V8 {7 D* W* g, t+ d#define MAX_LEGEND_LEVEL 129
- ~6 B7 i  r' n' r5 T6 W#define MAX_MONSTER_LEVEL 160! O* D( p. s2 M. p0 l- v
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
' W( ~0 P6 ~0 \8 O+ u- }#define MAX_LEGEND_LEVEL 121
3 _$ ?0 o6 N& ]+ n#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
4 C6 |# M# x: L; u6 s
; {2 Z" Z2 A. v9 [
& {- M2 v# s. q& o. d$ ^* |Red: Player Max. Level
% G3 L0 y$ O( U! E: R0 k" lGreen: Monster Max. Level. J9 c  z% u3 P

6 S3 W& g9 X8 ~, E1 `These changes as simple as you want.- {+ g! Y* u$ b& B2 }
# a- I) Z$ G3 f5 r2 T) m, e- `. I
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.8 t, u. a$ c2 \' \/ R* o/ g9 X) M
9 O# H0 \1 u9 D" `6 I
Part 1 of blocking CE

! u0 p5 C1 R0 R3 d1 X& g; q2 v3 G3 p! S0 z4 y8 O
In this tutorial I will show you how to change the Head of Mark flyff.
5 m3 d7 ~& a! vThe current Head Mark is well known, 5E, which results as a string ('^')., p) R% D: u( j

; o) s' _/ v8 q* q! o: p% KFor this we go to the World (Project) and looking at the Buffer.h after thistext; u' V) D3 L+ c6 X; m% t4 R+ h
Quote:1 N  Q3 q: T) O# j, H+ m
# Define HEADER MARK '^' / / Normal messageheader7 X9 h; g$ S4 h, @/ e$ `( H
# Define SYSHEADERMARK '%' / / System message header- F$ J8 o3 H7 K. O5 x# J) ~
What the Sysheadmark is looking for is not even the top 5E.) G% r4 A1 W! F6 {0 X! U: s. Z
Change this and it makes the CE Not work on server.! q7 `' q  A* b, X

  o! k$ z) s" l5 C; {  g0 K( i5 MThen Tom's anti-hack is no longer useful.
+ n  c2 n: P( {- b: p6 B" C
, ?4 p& ~/ p" N$ `LG Sedrika
Part 2 of blocking CE
& k0 T% [$ z2 K& N
7 c1 `" v8 U+ G2 {2 R. 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. ' t  J4 j8 S9 ~, O( E+ m8 w
What does this have an advantage?
! v7 v( N: a; @# T  l4 d) UThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself & R+ d: d2 A; r: ]

* A" c! `- B( Y; a3 ^0 `8 w# O& \- h# E( D" `5 Z* n
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
. [3 f; m" l3 E
8 M/ D  @  C/ Q: {9 D# \Then search for the following content in HwOption.cpp . s5 O8 r. a4 r* ?" `

) [9 [  x* J- r1 ~; G" ~/ [
4 o% z- C: [( fif (scan.Token == _T ("ip"))' T5 P# f5 Q4 A6 R) H
{
  s3 x; r5 P1 M, q! K2 \' oscan.GetTokenEx ();
, Z4 q, u9 h7 R" w2 c/ e* tstrcpy (m_IPAddress scan.Token);
- g) b+ h8 \  V}, @7 ]5 p' }4 m* [% q: N: N' `
and turn it into this:
# \% K/ e4 ^+ nQuote:
4 |# u5 S" K3 O: J) Lif (scan.Token == _T ("ip"))6 y& }& t2 ?% t0 c- E
{2 C2 B3 j5 r4 j' K8 o
/ / Scan.GetTokenEx ();8 q; O- u1 q  j- y& z
/ / Strcpy (m_IPAddress, scan.Token);
4 K- u5 O- d' D. O* ^& C}
: [3 ]) @" @2 r1 X1 n# H' R" PAnd you created the solution.& g/ N2 M7 m: j0 H) o  h* W
! u' H9 a# N, [1 w

; U8 X1 M* E- x5 [9 c/ W' B7 zThen read the Neuz not the IP from the INI anymore. even if put in it
) d+ `- c  \  M! l: ?, N  I7 I5 t( H! }6 k; A4 j5 u& s
Max skill's
  c6 R) n/ e  r( F" j
3 c% J9 Y- J+ L( C# x6 v
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
$ G- h; i, ?, k: w6 j
. A- t3 g5 m5 O- A, uWith the TUT can provide the remedy it: N) h% M- W" P9 U/ W9 k' h3 P/ u

7 n) `$ T$ ~" x# 1 opens the file SkillInfluence.h' B* e0 v9 M8 y
# 2 Search
# F& a( C8 u  T+ H5 n6 L3 SCode:* k1 ^0 F, [+ |( ?+ F6 F3 E& i# C

# z' u1 a7 s6 V5 h% e' N9 A# Define MAX_SKILLBUFF_COUNT 14
2 {! J0 l: U) w8 I) X8 y& `
, b' M+ |0 S0 C# 3 Change the 14 to your number (eg 21) and save it from
4 s) a% G; A: j. b  L3 @7 t* x- M# 4 compilation and ready8 l1 ]2 H- a* O$ T5 T( [
0 q1 F9 r; U& w9 i4 f: ~

6 B; n7 d8 u4 f/ k  a' a3 @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:$ E$ G! i( S$ D0 P% J
7 r) D# ^( E# V+ p3 v% k, Y4 V4 J: p
dennisdra, }6 U  P, F& Y! l" A$ ~
.Crasy* |! [, g" O& d; ~+ d% T( }. _
©ross& M! k1 ]3 O5 M$ F- P
Sedrika
; ?4 [4 P2 _$ r' E
- G+ e. n- ^$ n# _2 V6 a5 }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! - M# ~8 o; ]) G6 ]$ P! g- t5 i2 I
' t0 N3 ]0 o% U3 L2 ^
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
. n* B  a  y. v- s1 B5 Y  J, z+ I5 o# @: w' u# @3 S$ K
" w/ D: r- V: P6 Y6 d3 J: y
Update 1:
how to turn off "Profiler" in worldserver.exe
2 ~- j8 w8 E  ^9 I- v2 u

9 n0 ?# }7 i/ x% f. V  q
: L- G" T5 n% {in VersionCommon.h of Worldserver Solution% J) O( u) A% N* P. y4 D' a8 A- z
Look for+ r. r3 O8 Z0 z' x/ {3 }
( a- |4 u* G; k' O: N# u3 n
#define __PROFILE_RUN* `& m+ Y! d. ~/ R

2 d9 _/ i) f& \" u& x2 s6 y  a6 Icomment it or simply
  T9 v6 h7 W- p8 p1 `' V
4 P3 T5 j( x' m1 U, Z//#define __PROFILE_RUN 3 H) ]. m2 y6 ?% _! _( z
: D, m  ^5 k* h" Q4 [
  y& L# E9 O* y" t' J# f1 j% 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投寄。谢谢。我添加更多的很快如果你有病加太

8 i1 M8 j0 m+ T1 }




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