飞飞世界论坛

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 15135|回复: 0
打印 上一主题 下一主题

改变最大等级

[复制链接]

197

主题

203

帖子

1086

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
1086
QQ
跳转到指定楼层
楼主
发表于 2016-1-10 03:22:01 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
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
! f$ s9 w: d9 u& V; ^* l. Q/ N
change level without Rebirth
! t, n% N, t0 j
7 L+ s$ ^: a& o* u# j9 r4 ENow, let us begin.! ~; i. S! v4 k& m8 `% j
3 _( m  a' {3 r4 Q1 R
Requirements:
3 M5 _: j6 H4 n& b( g9 _. N- w2 rSource3 A* J5 |% o( g% N& ~9 `& ^
Notepad / Editor
; \9 ]. Z6 x9 z8 D& p. E6 A: ]& u, y
/ / Tips by Sedrika
" X) F7 K- F6 T) d" b: |0 Z9 t9 o; C# Q% e+ k7 K9 g
It is up to you how you do it ^ ^# b3 ]/ G0 p% d) r" f8 l
5 A& I1 o; E0 u$ S
Go into your source folder and open the definejob.h& z8 C1 I5 h9 T" r, t$ ^1 |" Q
Search there for:
6 W: L, ^. z# b8 K9 o1 [
7 X5 D1 W9 z( K' }# U7 O5 a1 I#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
2 I: F. b8 g% V8 k. }) u#define MAX_LEGEND_LEVEL 129' L. O5 Z7 v! }) [+ p
#define MAX_MONSTER_LEVEL 160
& R0 }; d5 O- @* c0 d#else // 15Â÷ è÷¾î·Î ·1o§è®àå. C7 j: S) F3 o/ h, N; R+ b
#define MAX_LEGEND_LEVEL 1217 T/ x& P" R- i( N) a
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå 5 i/ ^: H) N" u" C
0 P6 U; S$ o$ b- x0 f( y

# s1 t  u+ ~- X/ TRed: Player Max. Level
. C" {( ]  x+ P  r9 q" dGreen: Monster Max. Level
3 C' p9 [* C- w2 w5 d. _6 K, F8 D4 S0 w* v& k% D
These changes as simple as you want.; \( o) X- Z$ g1 b; T2 @9 V/ B& @
' F; Q: y3 D5 t- z4 _( ~0 B" }: j2 l5 ?
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.- o/ r) \. }) e8 A( b- r

9 p* A" W' n' E. W: k
Part 1 of blocking CE
( G9 i2 `9 W0 I6 g

3 Q, L9 p- b" F+ Z, hIn this tutorial I will show you how to change the Head of Mark flyff.
8 N9 u, j! V# [; Q+ bThe current Head Mark is well known, 5E, which results as a string ('^').8 N# T) t8 ]* I* p. k& `
6 `* G1 k, i% |5 ^
For this we go to the World (Project) and looking at the Buffer.h after thistext
. b2 B* [# a6 F; }Quote:2 m% C# R3 x# j- |/ B' [! h
# Define HEADER MARK '^' / / Normal messageheader: A" |1 q# c; {0 \  J1 O, W
# Define SYSHEADERMARK '%' / / System message header
; o# A# B) k+ v. o3 P- {8 AWhat the Sysheadmark is looking for is not even the top 5E.
3 H5 z( ^$ L2 J* d% nChange this and it makes the CE Not work on server.0 z: R6 T6 W: u. l

, _) B/ O' X5 f! l! fThen Tom's anti-hack is no longer useful.
2 j4 O) p1 h# a& l5 t- F' r
' }4 i7 e6 }5 a1 r0 T! L9 lLG Sedrika
Part 2 of blocking CE
) E9 a3 A3 w9 }; E! m- u6 ^' E

8 W4 r  v4 g5 tIn 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. ) F3 V% O- y* `. U0 Z9 Q9 w
What does this have an advantage?9 t; y) N" T! g# K8 ]/ ?6 L
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself $ ^" E# s, O/ k5 O' y

8 n, g5 O' i3 ~! r1 H; a/ Z
. f) [2 [$ p  jFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
# Q6 k9 N9 ^* @! z1 H
- H( O- T3 w7 B- M, d1 E1 ?Then search for the following content in HwOption.cpp $ i# a1 ]" H, ]! Z1 A& @6 ~0 Y
/ F4 ~- j9 t# I9 f2 Y2 a/ \

. E* ]& U& k! k. o% V# Pif (scan.Token == _T ("ip"))! Z/ H1 i7 [- q+ h. t$ Z
{9 s: B$ {0 D/ {7 E' a
scan.GetTokenEx ();, G7 H" }% P+ p' r2 K* A4 _. R
strcpy (m_IPAddress scan.Token);' t0 d- ]" u8 k& C& c3 p' @
}
/ Q8 _( b' d) E; C' aand turn it into this:
; }0 Q4 |; D; O  QQuote:
5 l4 ?2 x; i' M( Bif (scan.Token == _T ("ip"))( W# _1 t! o, X2 R  H. O) U  f
{* f0 c, O/ ]. T8 o
/ / Scan.GetTokenEx ();1 h5 H5 x$ o8 T7 v' T; g" P( `
/ / Strcpy (m_IPAddress, scan.Token);' d6 k) N5 M7 }" U  t
}
/ s  h. D# r* w" M7 _7 H$ O9 bAnd you created the solution., W. t! w0 e5 p  j  Y. h

/ V) H! u2 Q% M$ ~# Z- y& x5 h4 X" y0 A4 m
Then read the Neuz not the IP from the INI anymore. even if put in it7 \! K) ]3 [  i

0 f; {# ^( v! i
Max skill's
( u/ l) X2 o$ ^/ \4 |$ N- B
2 |6 d3 _. j* B: a8 u. r
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 / J- B; k2 F. w
3 e, d$ `# o. \! v5 D4 ?4 }  A
With the TUT can provide the remedy it
4 p. {9 K4 K% [) Y2 ^3 @# Y7 w. ~( A: T5 V# b, l
# 1 opens the file SkillInfluence.h7 X0 Z8 Q( \' Y( |  {7 Q+ w
# 2 Search3 I! J% F8 {8 x; p% |2 e( }5 o
Code:3 P: L9 [* h; T9 t

" c0 E( `0 v0 y7 Q8 A" P* C# Define MAX_SKILLBUFF_COUNT 148 ]( [7 Q& \7 o6 V, [/ I6 W0 o) j

, V- C! H" t9 u& ^; D# 3 Change the 14 to your number (eg 21) and save it from1 e1 {  g; m# L% Y7 P& _
# 4 compilation and ready
1 z- ~" ?, X3 t1 M; ?- I1 h: ?* X$ ^, d( E  u

4 R, ~4 p. L( C# wI 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 W0 `; g6 K4 z

5 D7 q" Q- Q& F# Bdennisdra
" r! P4 g1 g  S* [4 y; c  K.Crasy& r3 z. r% Q7 g: h6 G- m
©ross
& r# v% t' X* `Sedrika! `% C3 ~2 b& u9 ]# e4 z& O. V

- s4 n4 c3 {4 U: _7 [# e# ~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! 6 I/ z. b- n& g6 ~
( ?$ y2 b  x9 i% z9 D
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less4 W& B% z8 E. Z, N2 Y0 ]& |

1 `, m8 W9 H' I# |' v* a
4 T" P1 S* |7 x8 Y/ eUpdate 1:
how to turn off "Profiler" in worldserver.exe
0 w+ d9 L* s, s

: L9 k6 s% m( p4 }& }3 D* g. x& x4 t4 ?+ Q- N: t
in VersionCommon.h of Worldserver Solution
/ s2 j5 u2 z1 j3 E2 yLook for
5 t6 e# ^6 W: C1 u! \: l& K
6 N, {; y& ?3 _$ h#define __PROFILE_RUN
% b+ \( T6 \9 b% P# A) L4 E; I0 q2 U4 `* D* I: k+ J% k2 r
comment it or simply
6 A7 Y: c% y$ F% `# M9 W8 S
( Q7 G* C# t7 P  [/ {+ h//#define __PROFILE_RUN 8 t* p, {4 d# H9 q) {

  a3 q" ~. t) ~- M& A$ U
* w' W' k% r9 }( Zcredits 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投寄。谢谢。我添加更多的很快如果你有病加太

! S  B: K. U: @6 U" t! C
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|飞飞世界技术论坛  

GMT+8, 2025-11-28 23:29 , Processed in 0.111731 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表