|
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 Y4 m9 ~* f ^& ^0 e
change level without Rebirth" d4 V( F7 d9 L8 m8 K1 g
5 {4 \& ~' S. U
Now, let us begin.* Y) {8 c9 G, u* {* _( R; D# Q
1 X" G3 Y. s x& Y+ _. ~) d# d
Requirements:0 Q9 e0 A0 w; W
Source; q+ y2 D0 B# L/ a7 N& u
Notepad / Editor l' g+ t5 q2 b5 f6 i1 M: b
4 y9 F9 K1 b8 D; T: }/ / Tips by Sedrika
" R! K4 X2 N- l' i2 R I1 z7 D* O3 A* }% y
It is up to you how you do it ^ ^* w6 K s7 y. @4 p `& M' ~
$ z/ K3 t3 j! m3 `" f1 I/ WGo into your source folder and open the definejob.h" c* C& t/ |8 a' K0 I& z7 K
Search there for:6 z- I3 v2 E) L8 R+ A9 S
0 ^5 M8 _2 D& B& K+ S9 r
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå6 N! @+ u/ x* O( J
#define MAX_LEGEND_LEVEL 129
. T9 G) F3 c8 ]2 [* y5 C5 [: B#define MAX_MONSTER_LEVEL 160( C3 W8 V5 `$ N6 t
#else // 15Â÷ è÷¾î·Î ·1o§è®àå) O# Y# ]9 N+ e" D# R& i* h1 i& b
#define MAX_LEGEND_LEVEL 1214 h5 ~) |0 h$ |8 t7 @0 h
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå * z* G3 |" G) }' m. W0 d/ f
% T2 R! _0 a) r5 ^: l
$ ?/ e* H8 A+ L) fRed: Player Max. Level/ x( S/ a$ M) ?
Green: Monster Max. Level$ O6 O& O( G! g
; ?3 N1 v' ?1 a+ j% _
These changes as simple as you want.
6 J& r6 x, v& p5 V8 H& _& D# ]) t
/ c4 k) J2 Q8 c5 y$ KThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
* n9 f: X; y3 ^- a+ Y
& h6 o! n9 I/ X0 l5 I Part 1 of blocking CE : J8 k! B" ^ d' W7 e1 H
$ t! a9 d G" f% |* P* h8 ?
In this tutorial I will show you how to change the Head of Mark flyff.
- v. L5 v8 x0 H; wThe current Head Mark is well known, 5E, which results as a string ('^').
9 P. l: N% H4 g* j3 G, w* g" q8 s `% V$ ~7 B$ {6 @! j; ]
For this we go to the World (Project) and looking at the Buffer.h after thistext* D# u& ^ R3 x+ o" n; v
Quote:, \* d4 N3 Y; ^+ A5 ]
# Define HEADER MARK '^' / / Normal messageheader
# Y1 R) o( i4 G# Define SYSHEADERMARK '%' / / System message header) o# ^$ t4 f4 i+ y/ `# ?. x2 B+ e' L
What the Sysheadmark is looking for is not even the top 5E.
, s( H! ?3 U. A& Q$ x4 dChange this and it makes the CE Not work on server.
* k) [+ r5 {) C. q8 E* N9 D* \6 j! u) L) X: P: [3 ]6 M
Then Tom's anti-hack is no longer useful.& v. g( k. [1 }0 s% k, [" X
4 I; F3 w( G/ H, w: D) n$ W1 l. ~LG Sedrika Part 2 of blocking CE
+ |, ]8 h" a# b/ S- Q' X9 n: O: j+ g. P
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.
, w2 J8 P2 r, i3 R+ ~( j0 hWhat does this have an advantage?
* R/ u2 t9 v; U5 q5 mThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
, `/ {: n- O! w* z
) D/ j3 ^. v) G1 W" R
4 [. L Q! U: m1 ^ V/ q7 o4 o" }7 ZFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
& [8 b+ M, ^' \; b1 R8 C1 P, p0 W' u6 x, J2 J- r1 U/ i
Then search for the following content in HwOption.cpp
+ }8 u; T; o) t+ o. U9 } t
$ F1 c) t* f5 a4 }# |" R/ F, [7 V
if (scan.Token == _T ("ip"))
, E6 j* V! D/ x2 Q7 N- J{
7 w# I) |$ v- l" {# C0 V escan.GetTokenEx ();) b9 d7 e- w+ p6 a. q. q
strcpy (m_IPAddress scan.Token);
4 Q, ?' P4 p: j" } \# C6 s6 w}8 V* D1 e$ f! `8 U2 K R
and turn it into this:
3 W v# H8 f! RQuote:
. p" w1 Y; `9 Y! [if (scan.Token == _T ("ip"))
0 v$ x; O( G8 {! l2 K{
' R- V; u# B9 h& D' N/ / Scan.GetTokenEx ();
+ k, x$ u5 P# C/ D2 _/ / Strcpy (m_IPAddress, scan.Token);
$ u$ _- I! r' Q+ n5 v}
X `( Q1 d4 x& L a, lAnd you created the solution.4 J4 w% J" F' X: q. X' t0 A
7 Y# P: B- M' g, K# W
5 Y: {% c/ t) G8 B8 [Then read the Neuz not the IP from the INI anymore. even if put in it5 o3 h9 g# a8 \* g
; |: ]) n4 }5 R2 q0 v. e( Z
Max skill's x9 k2 Q2 F1 a# G
9 |& c5 m B" g- L, D
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
# P& h" h# \) c9 P( F/ y4 O% ?" Y5 t& ]0 _9 e! }2 _
With the TUT can provide the remedy it
1 ?! T2 P( P; }4 q$ \
$ d. e" A8 Y/ p: t# 1 opens the file SkillInfluence.h
4 N3 ]" m1 p6 B# X6 K# 2 Search
: D' H2 P3 C3 R7 DCode:
1 y+ C" R9 A% T, m; U7 w' q- L. X5 z$ N# l- F: d
# Define MAX_SKILLBUFF_COUNT 14
2 x9 Q& a1 ~& T5 [" t8 Z% r( ^$ R! f" \
# 3 Change the 14 to your number (eg 21) and save it from
( W" c& K$ g [2 o$ c' s# 4 compilation and ready3 Y1 M1 A/ z8 L3 h" H# f2 l
( p* f! b! V, M2 r4 Q
8 k$ ?4 K2 V' p1 Q7 M2 ]" R1 D
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:
4 i1 d& s, Q; S* j! {& n5 B! ]4 w* `0 C2 [: x% l
dennisdra
' y) b2 S3 ?( I5 h8 I.Crasy+ U: B2 v8 b2 Y: u* n1 S+ G6 y0 x9 ]
©ross. \. E; ~8 v6 K, B
Sedrika
% Q/ Y" `- J) {4 T6 ]1 v5 x; u" x# e" B
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! 5 G& z# C8 U1 C N) q
& W6 j' K/ M' @" O* BP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less4 g4 y: g D: A; \" q, }. |9 l' w' I' r
% @1 {9 Z. y& u0 n" I, S. G
# l# E1 S: L+ C( U- b
Update 1: how to turn off "Profiler" in worldserver.exe
5 g7 c; C: N9 D0 j+ ~ n& c1 T4 Q: T- |% Y! F# u* B
& ^ s- P9 o, `) B" \4 w% P7 n' w
in VersionCommon.h of Worldserver Solution& h1 l) E" S% Z
Look for
# E2 W" Z( q, z# V4 P2 O \# n$ r. n$ k- X. r( e" T- Y7 M J
#define __PROFILE_RUN
5 O, q* V4 G1 x2 @* @
/ h; |2 @' d' d/ jcomment it or simply
7 S/ n7 z8 i& D0 a7 \: Z/ O
& E: ]& C( ~% h; \5 R//#define __PROFILE_RUN
: X, o$ J$ m$ q: [
# d) }8 e5 O* {+ t" S
* ] \% O# ?, X kcredits 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投寄。谢谢。我添加更多的很快如果你有病加太
. L6 r S7 O) U. t" |# S |