|
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
0 ^9 h6 H4 f8 q1 S9 ] {3 C+ \change level without Rebirth% O; b2 d' E( P) A1 V
6 E) z. e# M- y. H, z/ ~6 z
Now, let us begin.
, G% j# {; s- A
% O) r4 K$ l( n$ c! h+ [Requirements: O$ R/ B# G# x: i0 s3 S
Source, n% T1 A" q1 w8 z& Z3 U
Notepad / Editor
" [( t. Z2 q7 v: a2 @, I; @
k& w s8 S! {1 p6 B; G0 f$ M/ / Tips by Sedrika
) m' L7 ?; _; R# s* `( R
4 o w4 S# B% W* w1 e7 rIt is up to you how you do it ^ ^
- s" b+ B9 Z' D! X3 |. m3 K/ v
) r2 Q2 H) X& c/ g) {Go into your source folder and open the definejob.h# N" v, k8 u- o6 c$ U
Search there for:
5 S, q, Z8 @! w L0 T
( ^6 K# `- h' r; g8 N#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
& p5 ^8 Q: d d. Z" y: |7 `#define MAX_LEGEND_LEVEL 129
3 J T" @! D/ Y#define MAX_MONSTER_LEVEL 160
- `& z0 }' R1 N' y5 b% f9 C6 a; E0 z#else // 15Â÷ è÷¾î·Î ·1o§è®àå/ A* L7 z: `& o1 n( a4 _
#define MAX_LEGEND_LEVEL 121" q1 u, D; a* O7 i7 Q
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
2 d+ Y7 E) C3 r0 M7 Q. R' d2 {7 P8 w% f: G. b. A) _2 T8 q! n# k9 Z
! H/ K, ~' X" s8 G, f9 F
Red: Player Max. Level
- T d* ?- O6 s) _8 y. C& xGreen: Monster Max. Level& @( M' }" L4 b# Y
+ i3 \) V$ X8 G4 d+ ]
These changes as simple as you want.! O1 e3 t' @9 ~4 d3 r: [& I8 ^1 g
. h9 A+ x4 m3 t' k" V; TThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
; ^5 J( B" e; j; l+ G: ]& v( T% P. J
Part 1 of blocking CE
* p! y- L. a5 ?# z a3 y
% ], j# v* J9 t6 I9 tIn this tutorial I will show you how to change the Head of Mark flyff.
) ~ t8 o/ Y/ Q" c/ w6 D p6 N# o8 P5 DThe current Head Mark is well known, 5E, which results as a string ('^').
% F# l; s5 d0 g$ M7 m
5 [1 ]! v* c2 E. B& ], p+ z8 WFor this we go to the World (Project) and looking at the Buffer.h after thistext. Z6 i4 l# ~) W" N7 y; P
Quote:9 W" j, @ x7 P/ `/ \
# Define HEADER MARK '^' / / Normal messageheader5 n. g$ {4 o$ W! C" k
# Define SYSHEADERMARK '%' / / System message header
- F/ N$ \0 L* q3 k9 IWhat the Sysheadmark is looking for is not even the top 5E.1 P- z& }- c N. p/ P$ k5 I* N% v" C8 h
Change this and it makes the CE Not work on server.
. ]# ~% W" H- _, y% ?- w3 n9 {
! B% i+ T/ M9 }! o9 L6 w& uThen Tom's anti-hack is no longer useful.& ?5 D. U8 s6 F( u: S9 j( D5 a
& x3 q# n8 ^& j' f( o# C( ]% W& o5 ^$ l
LG Sedrika
Part 2 of blocking CE ! m! i: i' y0 p3 E& y
( ^4 @ d v. Q8 ~
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.
" T* R# N" a* h' ]. @What does this have an advantage?
% d* O+ Z. a2 uThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself d( i6 F4 R) ^
x# J* n6 V( I" F
9 F$ z8 ?7 u+ zFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
* T3 h4 z% b2 g0 l( D0 c0 O- T
5 ]' l/ U w6 u, V3 }4 AThen search for the following content in HwOption.cpp
7 j4 r2 F T1 U& E; E0 }
( `, i3 E9 a1 G% h% ]+ B9 h* f
: @1 ~$ q- ^% |6 ^% q- c! j- z. E! jif (scan.Token == _T ("ip"))3 O. `, A# d6 }: Y. j- M1 e
{4 Y9 p: q% n- |9 N
scan.GetTokenEx ();1 E7 F/ x" |. m1 n4 z0 R
strcpy (m_IPAddress scan.Token);: p# E! g3 o5 \, W1 z! Y* a
}; n$ F- Y! h# i$ F+ O
and turn it into this:
# s3 _* s0 T# {" HQuote:
7 j5 Q6 u" q! g5 O* F- dif (scan.Token == _T ("ip"))
J2 G2 T) b; J7 P{
1 m: j5 J4 D9 }4 y* ^7 u/ / Scan.GetTokenEx ();
" y! j+ m2 o* D' |) W! X2 H/ / Strcpy (m_IPAddress, scan.Token);
1 B$ R6 v) v( \* u/ e}
6 N0 K7 A* B/ y* lAnd you created the solution.
/ d! t& s# D& \6 ^2 e( R1 B( h, W6 F. |- [
J+ m1 B: s i y; T" S$ EThen read the Neuz not the IP from the INI anymore. even if put in it
9 r+ ^8 ]$ r, {3 K$ b5 m4 \9 O3 ^) N& k0 e J. t5 P# p4 z
Max skill's
4 U% {9 ?8 ^5 S) s5 N) f& Y' \ s! o
% l8 k P C: V4 e' kAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc 9 v/ \* J+ K4 h
9 n1 G( e2 o1 ?' K6 i
With the TUT can provide the remedy it
# y# U* P; Y$ O8 t4 O& N! D; C3 f' V, ]
# 1 opens the file SkillInfluence.h3 Z2 s4 g/ F$ o3 N7 n' [9 Q) t
# 2 Search' E7 H/ p7 W" _2 Y
Code:
3 _$ K, N) S2 @' K$ C) S4 ~( i) p( y
# Define MAX_SKILLBUFF_COUNT 14; g) V! H4 v9 @
$ `1 M" ?' V+ d X- @# 3 Change the 14 to your number (eg 21) and save it from' r; C, r0 N6 J" U) T3 S" z
# 4 compilation and ready
" D$ Z0 J' ~+ p8 i9 O8 S1 w. O* j4 J+ T' o; D" d: Y0 M
. L; ?7 y6 ] a- B- I
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:
( h: b3 T" j0 U7 j1 R/ g
1 M5 O5 A2 W1 N4 Xdennisdra' ~+ S5 B8 k* u u) V. B R1 r
.Crasy7 E; o( @. D" b' e/ r; g( }: F
©ross d3 ?+ J5 S P9 E% P' i
Sedrika
& G, H+ K6 S% q3 {* Z) p/ a. W. g: }: ?2 T6 ]
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!
E _' e, t0 H- V6 V! @+ z' c+ n; o* E5 I8 V' E
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
# V/ C, C) k1 Q9 C
0 }6 n8 {: A$ D+ D2 D* j' q6 v2 V1 A
' R) ~1 F$ x+ n( H" mUpdate 1:
how to turn off "Profiler" in worldserver.exe
3 T( t8 H) k4 t L5 N! E- P. T+ f" o, i0 U& W* T
# N( t. u+ {3 N. z& J t" U; `in VersionCommon.h of Worldserver Solution
! u/ y* |4 T- R5 Q$ Q6 i6 fLook for
: g# b6 d+ P) _) @ l/ x1 T% }" V) r5 {9 S
#define __PROFILE_RUN
3 d8 y* F0 F8 H
" \1 z( Z# `. a: Y/ zcomment it or simply
) I- C% H) U! e# f& Q4 d# u9 k _2 p8 |; h% r8 W9 Y! ^/ B; Y9 ]
//#define __PROFILE_RUN X" I8 ^; r' i) ?
6 i+ Z2 K8 O' t4 @% V D) ]
* G" D: O N- p0 ycredits 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投寄。谢谢。我添加更多的很快如果你有病加太 : Q9 G: X- P O6 ^
|