|
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
) T0 C) V0 c% d' X9 L, A8 B1 zchange level without Rebirth/ I. C# y, x* L: E3 t# J# k) {
" j& h7 z. Q7 Q h8 L6 DNow, let us begin.$ A6 G6 R+ p/ y
3 L- O% e4 H& W& P* f
Requirements:0 t' ` R" t: W/ B2 K" S
Source# B/ H6 X7 f% U4 h. r
Notepad / Editor
9 G! m9 }) i, O0 R6 f+ a& x9 P
! h# U- M6 |7 h' c4 m0 t/ / Tips by Sedrika% T- c; e. l2 z0 U* j) t5 M
- C( s5 Y# f1 ~% s& CIt is up to you how you do it ^ ^
7 b5 l& j0 W, S2 }) p* q' R4 b7 F4 X) F h+ k
Go into your source folder and open the definejob.h: }$ i) Z- p/ l" k" B
Search there for:
( `( v+ p3 \) w1 A2 m5 c1 ?8 p5 [+ I' W* h
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
' F3 n' s7 Y/ A7 }8 p2 s& w#define MAX_LEGEND_LEVEL 129
8 m% }- N. L+ W#define MAX_MONSTER_LEVEL 1606 k/ ?" }# C% a( i/ |: w. V
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
9 g0 G$ J# F {1 [#define MAX_LEGEND_LEVEL 121
: G! _4 x( V8 s) t! @1 \+ m+ F#endif // 15Â÷ è÷¾î·Î ·1o§è®àå * R3 i' `0 g# z
1 X9 g0 E. z7 E' Y# t/ H
" S4 N3 Y0 ~4 T0 s. ~4 W1 _Red: Player Max. Level
' y( a% z( c. J- ` bGreen: Monster Max. Level
+ f( Q9 H- c9 _0 K8 b- J% v% k) V, k+ o$ A+ s& p' d; `% C% s* e( t
These changes as simple as you want.' v7 O: a2 Q& U5 F
; x+ y( T6 d5 D0 s7 M5 D3 QThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
! \# i* A1 p4 s3 a4 R, @! x+ v A; U. A- X. g% P0 F
Part 1 of blocking CE
" R/ K* M+ ^- t7 U2 o- h1 q
0 x: y$ b8 L& z$ xIn this tutorial I will show you how to change the Head of Mark flyff.
- p2 w1 E$ M( X4 NThe current Head Mark is well known, 5E, which results as a string ('^').
5 G5 E$ C1 C! P1 Z) O9 q% a: B
4 q: E" [/ b, a: c( r+ HFor this we go to the World (Project) and looking at the Buffer.h after thistext
. w, p$ L) n- w5 N* kQuote:1 y6 D" J6 L! i3 n% ]
# Define HEADER MARK '^' / / Normal messageheader
( I8 s- C5 j1 l# Define SYSHEADERMARK '%' / / System message header
% e. f/ @0 n. ~, B2 QWhat the Sysheadmark is looking for is not even the top 5E.
. R: E# k/ `1 {Change this and it makes the CE Not work on server.
) r* A7 z6 I- L8 D2 i% ^5 k
5 s, S v+ E" x( b2 a mThen Tom's anti-hack is no longer useful./ c! C$ E9 s K- A) L+ x/ Z8 H
2 V9 ]0 r% _( u( ~9 CLG Sedrika
Part 2 of blocking CE
. W( }5 m, Z/ [ F8 ^' g
1 E8 J ?7 @1 i* g! }% J6 l: 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. & l+ x$ {4 n3 P
What does this have an advantage?; Z2 ?9 X9 l: l/ l: U7 c9 @% P
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
8 v4 A8 h# G% `4 \4 ?: [
3 p* B3 d* U" V7 b6 l2 e6 q9 ]' e
+ ?& N* A! U+ j- h4 ?2 I J- JFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.- p6 u5 E" O! K; J0 m: l
& l8 o( a" ]/ c4 LThen search for the following content in HwOption.cpp " a# }$ ?% S0 ]) G% R
) `5 b, Q- N3 J2 |$ I' ^" j1 T3 {% U4 P2 X( U3 H: |! i. E7 d4 Q
if (scan.Token == _T ("ip")) }/ Z: p7 m% }" S% Z: t
{8 y" l3 D9 g1 d
scan.GetTokenEx ();
* h9 j ?" b, u _6 y! qstrcpy (m_IPAddress scan.Token);' @0 |- K# T' q. q/ D
}) u* A/ p, Q: d
and turn it into this:& I# X$ b- `( f1 E) p$ F: k
Quote:0 R$ K7 x2 s7 x& n3 O/ n
if (scan.Token == _T ("ip"))+ O3 q5 y' g( w" \/ q" b/ }
{
( x4 Q$ Z. _ S& }9 L$ i/ / Scan.GetTokenEx ();
- b$ g# {! A/ }8 {' O3 {/ / Strcpy (m_IPAddress, scan.Token); K( i8 G) E% D5 h R0 {# I4 t _
}' I/ f8 F+ j. y7 D6 x
And you created the solution." R: a0 ~- I4 F$ @7 `' S
4 c+ w# p* _' k
, C9 H/ p# ~; C& c1 x1 VThen read the Neuz not the IP from the INI anymore. even if put in it
/ f- W2 ]1 j7 d; Y" M) L& V- b: C( I+ u, F
Max skill's
( {7 d" k6 R0 L2 O% W8 }1 K& \' N9 n* f1 V9 ]' M6 J. }6 |
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 ' O8 u- O$ B" B" J
2 k- H6 q; ^* |, [) q" hWith the TUT can provide the remedy it
5 F$ \1 T; k4 E8 K) V
% c/ \" e d& }+ H% v5 z# 1 opens the file SkillInfluence.h
$ ^$ l" N8 S: a/ E1 I# 2 Search2 F" b+ i- ~% }# W# S/ R! h
Code:
! o/ v7 N4 Q. y% N- y c6 ]5 m; l1 \& o& ~$ |& U! ]& e' E2 D, p _
# Define MAX_SKILLBUFF_COUNT 143 g* h) s% L5 J% }, @
/ u; M# n j4 L# R) o; ?9 W# 3 Change the 14 to your number (eg 21) and save it from# o( I4 j4 Q7 ?9 D) w* E/ _, U
# 4 compilation and ready" [) M, D4 H c
& [' r# Y, U+ ^* j* B: }
: Q5 U6 y7 E9 D3 ]" }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:
, ~( ?" P5 ^6 U2 r# q
. B6 O9 K- G& g5 N/ t; u) B0 Zdennisdra
6 e* E2 D7 d( N' ^/ g.Crasy
& d2 w0 B$ J- b8 ?# {+ _©ross5 S5 n6 | P2 n% }2 I
Sedrika$ u ~! X) q u0 M4 Q+ S
; o1 E, c4 m0 C; qeverything 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! ; b+ v6 A6 N9 y2 _) T+ n- O0 I. `, w
7 F8 q ?1 k! v+ v
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
& g& u) S9 {; B M U) i+ s/ ? P, O/ t* m
: f# h3 S1 C6 s! S
Update 1:
how to turn off "Profiler" in worldserver.exe
% O/ o8 C- u0 B# I* f7 F
2 I$ N5 [* P, X. i& i' S! @5 M& [) @
# K2 [- A5 Z% X4 qin VersionCommon.h of Worldserver Solution
& o( e) R, I; t$ |; E/ {Look for! L2 A1 ^+ z1 v* a8 H2 b( [
! b3 t: t; e) K1 g. Z0 b* z9 {, E#define __PROFILE_RUN
; p7 y6 ~0 \: G J. ^4 T1 s a. q" b0 U" ] `4 o7 S9 T
comment it or simply/ `0 U: ~) ^, Y$ C: o
4 k8 V* q( Y( L1 X# X% J7 g2 c
//#define __PROFILE_RUN $ ^* K6 n, @( E/ w( O
' F: E: a% o% q+ ]' h8 B
: w' x" V) X% _7 V; {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投寄。谢谢。我添加更多的很快如果你有病加太
8 ~5 D1 i. ]6 `) \" @# \7 i3 g |