飞飞世界论坛

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

改变最大等级

[复制链接]

197

主题

203

帖子

1064

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
1064
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

' B" Z! i7 i  B0 achange level without Rebirth( N( }, K+ {. T% Q* c" O- W6 B
2 \" t" h0 [7 _
Now, let us begin.0 O$ e4 C+ `/ y( v
9 n% e3 ]/ U8 i* a/ F; }
Requirements:
; _$ C. o/ I4 H; DSource
5 v* n9 x& p: x1 YNotepad / Editor
7 Z+ d( v1 e9 [: e1 B
# O( X- M  H/ ~( F1 G4 Y# G, W& |/ / Tips by Sedrika9 S# c7 Q8 p9 v' p) n, A& D
2 D- a: V4 q& o: a
It is up to you how you do it ^ ^
4 t+ q5 `3 s1 Z' c$ b) @4 z
2 d" N( [7 r+ ^8 }; ?' Z9 qGo into your source folder and open the definejob.h8 s) S: Y8 e4 V: h
Search there for:2 Z; s/ E* c. f! B
* U! q) V# B8 r* x$ d/ m
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
3 u0 s0 i6 Y* D5 G$ @#define MAX_LEGEND_LEVEL 129
  Z- y$ Z9 I7 A3 a& f5 `% k) Q#define MAX_MONSTER_LEVEL 160
, ^0 y0 m: d1 D$ f. C#else // 15Â÷ è÷¾î·Î ·1o§è®àå
% \7 x+ E! B% U1 B#define MAX_LEGEND_LEVEL 121
" G: x' K9 c. |, A& V/ M1 S#endif // 15Â÷ è÷¾î·Î ·1o§è®àå : }" R: ]* u0 S7 S1 k7 j
3 A% _" R7 b: ^
. y+ U8 k- V5 ?3 W
Red: Player Max. Level) E8 t& m7 p7 _5 J0 l& M8 `% p
Green: Monster Max. Level0 ?& u8 S3 x$ ~  M
' M5 M; T! v; t" j
These changes as simple as you want.
* C2 ]7 g% w, U
) f  V. Y) H0 O7 S! Z2 b- @Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.$ ~$ }0 A9 ^6 y" ]

8 }( z# }( E+ R( C8 [+ V% g
Part 1 of blocking CE
% q& y  a1 K5 {4 Q
; M- s! X& {: @. v& D
In this tutorial I will show you how to change the Head of Mark flyff.+ ^& U& U! Y' A; V; [0 Q2 f2 r
The current Head Mark is well known, 5E, which results as a string ('^').
+ z7 }- c6 V  P- a! t& ?, T0 F# C! V4 K! d) W" F6 M& c
For this we go to the World (Project) and looking at the Buffer.h after thistext, ]$ X( C& Z' e1 L- A' W  j
Quote:
2 a4 O) h1 r8 D: q# r# Define HEADER MARK '^' / / Normal messageheader
) `' x$ w: @0 q  ^# q/ x3 Y# Define SYSHEADERMARK '%' / / System message header/ B: H! i; z: h# a; h
What the Sysheadmark is looking for is not even the top 5E.
0 X' k+ w  {* u0 eChange this and it makes the CE Not work on server.& z& U/ F) i  {

# d6 o+ I6 u; u4 s; r+ @Then Tom's anti-hack is no longer useful./ {/ A4 {8 i, S5 g$ }2 u/ x$ p
; T6 K( e! V6 A/ s" {
LG Sedrika
Part 2 of blocking CE

* ~: ]  u/ c# u% W8 y
* G# H1 u" n0 k/ ~* B/ R! _# yIn 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. 0 r( i6 L' r# v! }
What does this have an advantage?& `' w/ J  F, g! W$ q; |. [) p
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 7 w0 G5 G5 r+ w  I% P6 l$ Q. M! Q
# i, q# L  m8 q0 g$ `: J/ e1 w0 C/ ]

3 j5 v; z6 I) f8 d, o9 tFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
6 f) y, S0 N& J4 T: w5 r
) C8 x  i# u* ~Then search for the following content in HwOption.cpp 4 w$ {+ X" T; L+ j7 A1 E
& s% ?1 ^$ W- m
9 b% i, @9 F; v) W. h4 o: ?3 m: z
if (scan.Token == _T ("ip"))6 r7 W$ N2 I( @  ]6 |
{. |2 R7 g/ y( A) `
scan.GetTokenEx ();0 u5 v4 C5 ]0 J; D; P
strcpy (m_IPAddress scan.Token);+ a- a7 Z2 q; ~: A) B
}9 e5 ~  w8 L5 v, S1 t
and turn it into this:2 c. z, |  [- U0 L+ x: m
Quote:
7 K# \! r* p+ ]' ~if (scan.Token == _T ("ip"))
: i# A4 D! B& ~2 v{
& M- R. I3 `, g, c" M3 a& u/ / Scan.GetTokenEx ();
: L/ B2 ~( q# B) S6 F5 @0 G/ / Strcpy (m_IPAddress, scan.Token);1 X$ e; V( f+ t( D$ p
}
3 c7 R2 W* d( g& u3 y% E) R1 f, ZAnd you created the solution.; c+ l% W4 g( F5 Z& ]

. V) d2 H/ x5 _0 \0 V" o# H3 k
7 r* x! r$ ~9 r) QThen read the Neuz not the IP from the INI anymore. even if put in it
4 q+ I/ b0 y" l& n1 \) l6 R1 U  x
Max skill's

1 z3 y+ f6 l, f, q' }0 W& K7 w- o8 ]6 F0 y7 Z+ z$ @* \' E
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 * t6 E5 l' m/ K0 r" @$ N1 G
. w& P' L/ P* q
With the TUT can provide the remedy it
8 ]+ q+ h0 p; _9 e3 c: H$ n7 n( V1 d9 O. N! e
# 1 opens the file SkillInfluence.h
2 B  f* K, r/ H# @  A# 2 Search
, r: V6 j  F# k- `6 P( f, dCode:
" E. {  U; U' q& E
4 X* t7 Y. e$ s  g) X& p3 T# Define MAX_SKILLBUFF_COUNT 14) |. z( R' {5 E7 o$ S+ H' P# d
6 K' Y( E, d; g! W- f
# 3 Change the 14 to your number (eg 21) and save it from
: P, v+ @+ r; O# ?! ~# 4 compilation and ready! `1 X7 }2 R3 o+ a
4 v$ q4 c( P2 I# p! f1 u

( l( D0 w8 C( O% Z- b" i$ HI 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:: G! V0 j# [6 ?  n
% K; ?6 j$ R: I2 C, T# S$ N3 n& L8 I
dennisdra
0 v( p- A4 a( W7 V. t, C( \.Crasy- }% D) W4 C' D5 {
©ross
8 H9 Z) l7 [% KSedrika
, d3 Q$ r( l$ c9 A
$ [5 y6 b5 n" R% r  ^! A) Teverything 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! # Y% b) i( P/ u2 e- C

* z& I% V& g2 k' e+ @; `P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
  k2 p6 n& g0 D9 K  C" J7 T8 k, Q6 b5 d3 D

+ r# u1 E3 B+ x4 r; C+ [* Y! \( pUpdate 1:
how to turn off "Profiler" in worldserver.exe

6 Q" v5 u" N  `+ {) g  j
2 C/ b% D( Q. O0 n- S# k
! N, w2 l. Y) P/ ]in VersionCommon.h of Worldserver Solution
5 `! U- A7 I. ILook for5 n* p: R! T' v$ P

' v# r  ]1 P/ z' d3 U: X' W3 h/ b- W#define __PROFILE_RUN% d6 z% M( ?1 w. b& o" A
& [0 ]& @' j, C
comment it or simply
% j; I  H  s* |5 p, s5 c% X, O( O5 E; M0 u
//#define __PROFILE_RUN
$ X( _3 @" ?! N5 ~. _; [1 V* g: {8 R, f6 q# e

: {8 Y* M1 [& o9 E1 Pcredits 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投寄。谢谢。我添加更多的很快如果你有病加太

  N5 m$ \  @3 {1 S4 |
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-6-17 05:24 , Processed in 0.060392 second(s), 22 queries , Gzip On.

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

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