|
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 & g( D$ W0 M$ {) a- H
change level without Rebirth
! l% F2 K. T1 @0 L a9 Y% x, c
7 }! S- L( l1 V1 P; V9 T2 ~Now, let us begin.
, l/ ]% l, y+ V# h9 C1 T5 c) s( @, F: h# x3 X6 Q2 \" E
Requirements:+ o% c7 D. L: l b6 E+ \( K* ^! k. S8 O
Source: @) e$ n, N. s( c+ f- D4 i
Notepad / Editor" l5 q9 C/ D' ^. t. `% C
2 g% q0 R6 |# D% x7 L3 X, d2 W
/ / Tips by Sedrika
1 \ ^" W0 K" r' J7 i! r
* r* x6 v/ E; R/ ^2 n MIt is up to you how you do it ^ ^
) u Y6 {5 h9 M# g& _. m. B* i
) ?5 R" X/ m6 Q! e6 f& zGo into your source folder and open the definejob.h+ j3 Q" U8 n/ r, [6 [: E
Search there for:
+ Z% m* g7 I( l' s4 W! d; Z
( h$ m3 {1 r& `# o6 H#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
4 f! |7 ^9 Y6 P* b#define MAX_LEGEND_LEVEL 129! Z, b' c9 I" l
#define MAX_MONSTER_LEVEL 160* h. g: n3 C( |, Q$ _
#else // 15Â÷ è÷¾î·Î ·1o§è®àå% V3 f2 d9 _9 T! ]4 s0 W) F7 P9 I
#define MAX_LEGEND_LEVEL 1219 R+ c2 D- C/ O2 W0 U
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå . F* i* z# m" H) \6 X
/ I# Y5 Z- {* [6 v- }1 s
! G# n: w" `+ U: Q& `2 Q+ ZRed: Player Max. Level
, g) M9 s# z5 n. x7 A! yGreen: Monster Max. Level% Q. q2 F5 H, N1 w# d
, Z* Y& Q! b3 c" b3 Y
These changes as simple as you want.
, y$ v4 E: H, f! X
/ Z9 [ n- m9 t, y @9 EThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.9 K2 n b( j. _9 t$ ]
- z6 E! r1 Y- W9 b$ O6 O( O
Part 1 of blocking CE 0 p9 e! w! D0 G- ~1 T
+ V6 N7 b S& `2 }1 Z
In this tutorial I will show you how to change the Head of Mark flyff.
- N) W% c8 v6 QThe current Head Mark is well known, 5E, which results as a string ('^').
( n2 F; v, [7 H) c6 M
- f U5 O& |0 @% f4 l8 IFor this we go to the World (Project) and looking at the Buffer.h after thistext
! ~* R4 [; l* @2 P5 nQuote:+ ^4 m" e3 s& p9 ~$ ]- A, L3 G
# Define HEADER MARK '^' / / Normal messageheader( M# G7 A4 h4 |; ~6 X
# Define SYSHEADERMARK '%' / / System message header
# D* q: K: c7 K2 i0 ^What the Sysheadmark is looking for is not even the top 5E.
5 W: u+ x( t) h9 SChange this and it makes the CE Not work on server.
% S& F: h% w8 E2 b$ T, g$ m9 C0 ^) z5 h* x
Then Tom's anti-hack is no longer useful.7 e/ k9 \$ E) D# I
- f; w4 V+ ^: I z/ X# p' B
LG Sedrika Part 2 of blocking CE
* M; d, [0 B& f3 _1 m
9 o* y$ m: E5 q" VIn 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.
' m$ L1 l5 o; p. S+ D7 V( F' @- tWhat does this have an advantage?
9 l1 _! k" Y# p2 q& nThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 8 I# e8 @' D6 t- G
9 ]3 U( `$ S, G& G% [ }7 Y, H' n2 B. B. U A
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
& ]. Y* ? {, @
5 k) ? l0 C _* A( oThen search for the following content in HwOption.cpp 9 y) G! b3 X- a8 }
4 D+ r( u! N$ S4 j" W, l1 P( k, R. u
if (scan.Token == _T ("ip"))6 h. _+ ^. X. G/ q* f7 P4 h/ o* R
{! {6 @ l; F7 k1 O1 U5 o
scan.GetTokenEx ();
1 a7 K7 ^# x. A7 |" ]strcpy (m_IPAddress scan.Token);$ O& P* J7 w2 Q' a1 O
}' }3 f6 Y( T" T- A- K1 z
and turn it into this:
! l( t1 o# G$ r$ r3 `9 j, J& IQuote:1 L* ~6 [) N- G! x1 N8 F2 o4 M* ?
if (scan.Token == _T ("ip"))
& y. U/ R1 y1 E- J{; S( h' M2 t+ U' N, }' M+ p. ^
/ / Scan.GetTokenEx ();
% b5 q6 |2 ?) g) }. Y2 F F/ / Strcpy (m_IPAddress, scan.Token);
1 m s( y5 w5 r* O3 `' q7 a}$ e& J" ?3 ?! h2 E0 k
And you created the solution./ e7 \1 x d4 ?' F; s/ j b
# `2 A6 u3 M+ k* E/ R
! E4 i0 @ y2 S' T6 G3 G# DThen read the Neuz not the IP from the INI anymore. even if put in it
# R1 h `) l. a8 e, J
9 b" L5 a. U* Q0 w' |6 i9 C
Max skill's 5 l* x" c! `! o. ~6 J, c
1 c7 \+ M8 K7 w
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 8 f8 Q' |! b1 _$ B% @' U
( w; ]/ v0 Y" y
With the TUT can provide the remedy it; c k0 j7 O* @, a% z
; v1 W, H7 a& X; I* q! K3 V# 1 opens the file SkillInfluence.h
6 a* P5 p9 I& W" k( w# 2 Search
' E9 K7 }1 E+ W( BCode:
# H5 \& T' s: E) H6 O0 b
6 j$ l* G1 o' N: P: g# Define MAX_SKILLBUFF_COUNT 142 i7 ]; V4 n% M( B
# [' g3 e+ S) b, }# 3 Change the 14 to your number (eg 21) and save it from
' k" A* v! A! \( v2 l8 F* b& O& ^1 W7 y# 4 compilation and ready
* P7 b- E8 s9 G3 r0 J) C
/ {1 P+ v1 ]# g* A7 \: I% p7 f# x: C
, r3 l% b1 i2 u9 c: F$ \& K. [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:$ U$ V. p, i" [
% \8 @$ q: n# M+ \7 Y$ l
dennisdra7 l9 a3 Z& v$ W( c& _. y
.Crasy& O8 l( R9 Z- f; u
©ross
/ P% c" T, T3 c/ WSedrika# [- g$ e) h" T# `; R* ]& \
1 J# c) T1 x* {2 Weverything 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!
3 h; B7 t# f. {8 m% P c, Z; a* B2 j' k# U
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
" |3 n1 ?/ l: h# C, o2 n; w0 T) e, |5 P3 D0 n. g
( B9 n) ^3 x/ L: s) jUpdate 1: how to turn off "Profiler" in worldserver.exe
2 n+ k8 T% f' u& m
4 _" B4 B) T' ~4 O2 {5 v" t8 E5 u( l% U9 C$ Y
in VersionCommon.h of Worldserver Solution
( t, L) [" f6 g3 vLook for
& M- W( b8 N4 J
; K7 B4 z1 ? Y+ X5 X#define __PROFILE_RUN e- R( D" o6 A
3 G4 n; \$ M+ W- Icomment it or simply R7 U& O( ~6 |" K
/ q( a4 r2 ^; T" B" |+ e
//#define __PROFILE_RUN , x/ p6 `7 i n( q# k/ q
4 J+ @ K1 s# m
. O4 [7 X( G- ^, ]8 u" r( p4 wcredits 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投寄。谢谢。我添加更多的很快如果你有病加太 ( ^: n( e3 v- z- z
|