|
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 " `: \8 o) D k% i. ]
change level without Rebirth
" u! A& R8 I. A7 [/ Q6 x+ `
: V& J: z. H. I9 g6 n. [Now, let us begin.! Y8 g6 |/ ]3 I4 q* b9 ^: n
$ L: Y. w+ p$ \) M eRequirements:
N; E6 y& G9 ~$ W; L% m* Q% A+ ~Source
3 z1 I6 ^% c* hNotepad / Editor
1 U. e5 D% ]7 \! z0 v5 S/ C
1 F4 s' G0 {" ~5 ^0 ~3 f& T' f/ / Tips by Sedrika' K" P1 U! H4 B* g4 c
4 D. ?0 \0 P( D3 c* `
It is up to you how you do it ^ ^( }- F9 l, t- e/ Y
1 u5 e+ }' y4 Q' r5 u wGo into your source folder and open the definejob.h: O: J" X8 |# _9 G Q8 ~
Search there for:8 A( I5 z. K' n7 d8 V
# Z* h7 f5 E" [" o3 H#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå* |4 k9 a3 y, ~
#define MAX_LEGEND_LEVEL 129* G" a N! ^- H6 }
#define MAX_MONSTER_LEVEL 160 u# U4 A$ a0 r6 C6 C, v
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
" A+ Z) V9 `8 G% `& i9 K#define MAX_LEGEND_LEVEL 121 J ?8 S; a) M' j5 W& X6 t2 Q. F
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
5 X% u$ K {( r9 S5 T5 ^, W) d( f( ?; M3 t1 d
0 h/ L+ U, P( z% D5 y3 V
Red: Player Max. Level
( G8 x: H) W5 O/ L7 [5 }2 KGreen: Monster Max. Level
8 o( Y4 M/ ?& ?. `1 X/ G, @4 O* r; r d8 `) H
These changes as simple as you want.
! b) N6 {8 A* d; e
) m3 }1 }8 ?( rThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.& l$ P2 B' t# H2 q
. i: @9 \+ z; o& H; t1 L7 { Part 1 of blocking CE
( ?4 z7 ]( x6 w. o- E
: G" C' Q8 g) d5 KIn this tutorial I will show you how to change the Head of Mark flyff.: V6 U4 `" r2 ]% z- R# j( q
The current Head Mark is well known, 5E, which results as a string ('^').
2 N' {: {3 L% j' {
9 f6 [' M# B( FFor this we go to the World (Project) and looking at the Buffer.h after thistext6 M8 j: z- u0 }1 q" E
Quote:% u2 v" _ R9 C$ R
# Define HEADER MARK '^' / / Normal messageheader4 W$ D. [2 E+ A* u9 H8 u* n4 ]
# Define SYSHEADERMARK '%' / / System message header
# x5 ~( A' R2 wWhat the Sysheadmark is looking for is not even the top 5E.6 f6 ]. A- W$ i& T% m( `
Change this and it makes the CE Not work on server.
; s' d5 c( O2 E/ O! q2 l/ B; m/ M! u5 h. W3 v: X6 n# A( H, [+ b1 g
Then Tom's anti-hack is no longer useful.) j9 i. J3 w$ U1 \+ }7 C7 F# C' f
' }# h2 N. I- P& G. s/ Z. l/ q. aLG Sedrika
Part 2 of blocking CE
. [0 Z( E0 i- C! c- Y# Q0 |7 F' W( @$ v6 R, {- h5 |" T$ Q6 r
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.
( a- Q8 o0 P" b6 k7 A1 `What does this have an advantage?8 s/ p. N% h' t" a4 L5 c
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself % S1 C0 q8 `% K% }6 x5 {
3 \1 F" c) ?* }2 ?9 {6 t z9 q( a3 O0 G% Q
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
% m ^1 B6 V* _- s0 a! g3 x v1 M3 b4 P: l( P7 w2 o2 o$ c
Then search for the following content in HwOption.cpp
$ s& Q- [* g6 |* z' u
8 V2 m1 R7 }' c4 T# x# ?# U1 v% q8 V8 ?
if (scan.Token == _T ("ip"))
! n- f6 Q1 n0 ~ E* e. r! Q) d3 [{2 d7 Z& ], ?4 }2 E
scan.GetTokenEx ();
; j* I8 z1 v- \5 v, tstrcpy (m_IPAddress scan.Token);
_* g' @9 _- o5 p- W% P7 l}
0 N# S. ~% |. ]and turn it into this:
7 ^, f) g$ C% M. fQuote:
% e6 q7 z# c4 r* J$ rif (scan.Token == _T ("ip")): A# ]1 s$ S! m2 A) i
{
: M0 q: Y6 f/ P$ P* H# h/ / Scan.GetTokenEx ();! W# \8 K3 S# F G' s
/ / Strcpy (m_IPAddress, scan.Token);
( M! [( A8 T8 X% r# {# R# D}
! S# r3 S4 @* ?% |# T& ?9 P( _And you created the solution.
. o; w( g. r+ J6 v9 k/ ~) P% D3 j' y) U" v- R# \1 x
2 J4 a2 Z5 \# w
Then read the Neuz not the IP from the INI anymore. even if put in it) i% `$ F6 U9 e+ n9 P0 h% G
' v# m3 i* L# [3 ?2 {
Max skill's " a) ?+ U" f4 `1 [: X
8 S" V& o' I, ] T- 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 5 F( K8 L/ ~. J8 I% a
. m3 k& o, I( v2 ?
With the TUT can provide the remedy it
1 n5 g4 c2 {8 u) Z3 o3 M% P8 ?8 c3 ^% D! W2 E- P, T
# 1 opens the file SkillInfluence.h
! _; D, E7 N9 ]# i8 e$ ?, K# 2 Search
; N, _5 f% M. {5 KCode:% l: ~0 H1 L/ L# i
" R# |% |4 S! |# \# Define MAX_SKILLBUFF_COUNT 14
4 q5 A9 G' v. @4 z) y8 u
8 x. e' _/ @4 p4 ?+ R$ l# 3 Change the 14 to your number (eg 21) and save it from+ c E% z! M: q& o. D X0 a% r
# 4 compilation and ready
9 a3 R4 K8 A8 p3 A c
2 m2 Z7 J3 i0 r z& T
. U) a" b5 `' Y+ E aI 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: K: T( [ {- u( i) V
& t9 z; P! ?0 v# k& _
dennisdra
% j: }. d- I- h: m0 B.Crasy
/ Z; `0 y. U! T Y©ross& g0 g/ f0 M# S# f
Sedrika5 Q) K5 I0 G' X3 m0 W. a
/ C, P6 U: W7 y4 q7 V/ x( K. @
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! & Y* v; K3 \1 ]9 {$ d; Z& @
+ l, B9 [' Y9 m- `* ~
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less0 a5 ~/ R% k- a3 [' u
`: R* \, z8 l2 j& R T
) a* @( R! ?# c# ?0 C9 l) I. sUpdate 1: how to turn off "Profiler" in worldserver.exe , M3 i: \* E9 L) {1 X
/ F8 d/ c5 C8 a0 C- n- S1 p1 T9 o" O$ y0 x4 s) N
in VersionCommon.h of Worldserver Solution5 _5 ?6 s6 H; D# \4 R8 y
Look for
$ K- A2 @; _. m: x4 t
. }- ^% r- |( a2 R#define __PROFILE_RUN
0 A# @& W2 l& d* U& m c
! f& v% c4 d8 Wcomment it or simply! y5 t6 ~& g( [7 ?
% S9 }; b5 Q' c/ K5 {//#define __PROFILE_RUN % S% o+ A) O4 t( x! b& x
! r) U1 x8 P2 a# g7 z r: K* w
3 V/ V! m, b, w3 v! I- U$ fcredits 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投寄。谢谢。我添加更多的很快如果你有病加太
1 d! V1 t; U* W* ?: j x* w7 G G |