|
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 2 Z! D* T" g4 q4 }* D, m' p" o
change level without Rebirth
, I4 ?: \; O$ \5 r. r$ M+ @: ?& S6 w' I) P' [) {3 }6 @( e3 T/ n
Now, let us begin.9 p) e; f. ]" R7 z% q; |6 z6 w4 ?$ w: B2 s
6 F' |' u# l2 f _( T8 bRequirements:) o- j/ d8 J, J) C1 s% T" ~
Source9 e2 X1 t: l0 f' A' S
Notepad / Editor7 Z' U G5 `% s7 \8 L1 c
$ d( p/ ~4 \6 h3 x3 q( @% t: [
/ / Tips by Sedrika! m9 z2 O: V. }8 N4 ~6 o, x
" _8 F9 s# l' a' Y
It is up to you how you do it ^ ^0 Z: @4 H: m/ ^; u1 A O3 p: w
3 P; G j8 ?2 ^! A! rGo into your source folder and open the definejob.h: g Z: w5 _0 S( X
Search there for:
' ^1 @) u6 R n5 K O3 T# Y% i* ~
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
! @- e# L) a* |; o. o2 X5 _#define MAX_LEGEND_LEVEL 129& |7 Q( N( y5 J/ |+ a% S
#define MAX_MONSTER_LEVEL 160* ~1 o; a& F. j+ V- T# z
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
. e' a: N! w. \4 Z#define MAX_LEGEND_LEVEL 121; M; ?: O8 g( U" E1 o. L8 g
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå . U+ h, ~: j% {( y/ n' \& j; A
$ h: ?2 I, p3 n6 F# g2 L0 @2 E6 I$ \( s2 u1 y V9 s. h- |! z7 O
Red: Player Max. Level( o0 h3 N7 [% n- p
Green: Monster Max. Level [- u. k- i- F
+ O; T; u3 r0 y, w
These changes as simple as you want.2 \$ w9 j' |) u9 Y3 a5 S8 A6 R! M7 i! N j
: j J6 u8 |! U# K! o1 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.
4 j3 q m' X0 z) b; e
* ]) c1 a T) t9 Y) ^ Part 1 of blocking CE ) c z1 T3 P* X6 Y
* O6 D1 l9 W5 I3 CIn this tutorial I will show you how to change the Head of Mark flyff.
& G& ^1 ?0 t& M4 B! a7 O4 MThe current Head Mark is well known, 5E, which results as a string ('^').& e, S& {$ g9 y9 U( r
6 c x- U" u" B& ?1 D& RFor this we go to the World (Project) and looking at the Buffer.h after thistext
' Q; c: Y3 X( {$ GQuote:
( G2 p8 ^; r2 v5 B# Define HEADER MARK '^' / / Normal messageheader
" m3 c; W- p' Q/ J# Define SYSHEADERMARK '%' / / System message header2 |+ q9 y$ D8 J7 }0 u1 S
What the Sysheadmark is looking for is not even the top 5E.
; K: u |5 k2 d) V! SChange this and it makes the CE Not work on server.
1 A0 U+ B* [; z$ J
1 J: x, g) i1 S) ?Then Tom's anti-hack is no longer useful.1 b7 i3 ~% g! `
/ U/ w: Z, p5 ^ W' z1 Y0 pLG Sedrika Part 2 of blocking CE ' j& |/ s2 V" k1 k4 S. e' A
9 T8 d2 L9 X$ b; ?5 v: [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.
1 p- V- T$ ?; [; I# W% ?What does this have an advantage?
6 x/ b l+ B5 p6 f; t5 gThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
8 o; W* t+ c6 H& M% b+ G0 q( T
/ y, D; `5 W$ ]+ K. g) V* k; Q8 L4 X
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.2 y1 ?9 H' h' b4 \# I
: F" B E4 d' t; g7 PThen search for the following content in HwOption.cpp
~' k0 q2 z b0 B: u" \2 q0 s7 `! Q }, B& R! `8 W2 }0 J: b
7 R+ w1 D/ v g- R
if (scan.Token == _T ("ip")): V6 V1 K- C5 y( H: L- ]
{
% ^4 U7 X/ E2 p4 Y0 q+ Uscan.GetTokenEx ();
3 [. v" y. `$ f1 t0 Nstrcpy (m_IPAddress scan.Token);
$ N. @3 @& b2 g9 B5 b( j}; i9 N; o2 K8 v6 j
and turn it into this:
8 o: k; u+ E9 H2 k5 Y# M3 VQuote:, e% Y w, X/ {% O" `1 ]) ]
if (scan.Token == _T ("ip"))
. O9 K3 ]2 i, U: i( r/ d{! S" a7 d! }; f9 I
/ / Scan.GetTokenEx ();
5 |2 c9 u/ ^5 J& C q: D/ / Strcpy (m_IPAddress, scan.Token);
& a7 U, u7 ^2 s4 [) U}2 W5 Z: l+ G3 ^ `& A$ W& _
And you created the solution.
% x+ w' K, y0 F1 A: r8 U; o
6 t3 T$ H' {3 G! p9 ~7 p
3 k3 t( j" A" F7 A' D' |Then read the Neuz not the IP from the INI anymore. even if put in it
3 X* y) `2 y2 S; ^- y
1 ~0 {& X7 Q; t1 j Max skill's ( r+ K( k7 t. a! A( i( J
% n; E$ d& l" m f/ l V( 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 c% B6 T0 D- c v
. o9 G/ ]( Y* I+ o% A$ Y
With the TUT can provide the remedy it
! d0 Z' D, ^7 ?
' [3 t, A4 q: H) _, E) \2 ^! u" V# 1 opens the file SkillInfluence.h, y- _# ~1 F8 b* m3 w4 O* f
# 2 Search
- S( H! s7 `9 W. o0 SCode:+ ?5 @+ ^- d2 j' l' [; i) H! }# K
. w. m$ i* W6 _* \- s$ d3 G- `% n
# Define MAX_SKILLBUFF_COUNT 14; T9 ?9 {" i: [! M" D
' ^) R9 p' f: f' O8 W
# 3 Change the 14 to your number (eg 21) and save it from
5 C# q. b) _* k$ S, Q# 4 compilation and ready
f+ `' s$ E2 \, R, @# X* o3 i+ X8 J7 E- W9 {
2 {# n9 G8 u( _' u
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:7 q: S& H3 N0 L; |, v8 j
. C5 |, W* K4 y) I& H. f7 bdennisdra: ^# k; V$ N8 Q9 @: _ }1 F
.Crasy
$ X. U; `4 s* F5 [7 y- }' l9 h( o9 k©ross
7 G1 X t3 w- _% s/ ^* Z* T5 ]+ @5 A3 WSedrika! \! {, G" B$ P0 o6 V1 y" }
) c) s/ }) q4 x: A9 W" H
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!
- `: k( M$ e& S8 K. b9 U$ C# S2 ^" V
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
~8 W: D# a( R, a- t7 d) \' }$ E* F% s [
: \# @7 N1 S5 F5 Y# c0 k
Update 1: how to turn off "Profiler" in worldserver.exe
- h' n- s2 m) T! Y% [5 ~2 h- v2 P+ r+ R( a$ `+ O
. Q- A1 u( e; `: q' A! I
in VersionCommon.h of Worldserver Solution- S$ w" Y# f K
Look for
, G8 r0 m$ Q* ~4 J3 ]" B0 I/ `: f9 N0 C3 c& B0 G) i$ k- `) \
#define __PROFILE_RUN
! A# ~* O4 W/ |6 r& {0 D
1 q0 k2 m* Y* D7 Scomment it or simply
7 O6 Z! h, i3 B, \3 ?5 O Y
* g3 t6 B; W& q' l9 v//#define __PROFILE_RUN }9 i) @8 t# U( i7 a, s% P
- v8 j% }* A' ^/ b; m; S+ i( m h L( S x0 `9 w% k
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投寄。谢谢。我添加更多的很快如果你有病加太 , y; v6 W8 p- k5 i0 W
|