|
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 `6 @: y$ n$ y* A$ a' Q1 N8 G
change level without Rebirth. G( y+ G5 X( Q% f) y5 P1 r9 B
- o9 M. i* B: h' g: l3 A! _9 h% [Now, let us begin.( Z8 ~" S$ x/ P$ G
) Z/ i g. v$ _# O
Requirements:" @( N1 E/ l- O! A8 G* t) _0 \
Source# i( I) J) s, K5 N1 N0 s$ x6 g7 E
Notepad / Editor1 X; R2 W/ B& j) `& Y* `
' i9 w" X( r2 k- G; _
/ / Tips by Sedrika6 E7 {9 I, x( ]* H9 O( [. {4 P4 ?
( u! ]& ^, F0 | X( o$ c2 _% f* x/ M. qIt is up to you how you do it ^ ^
1 L; `& q0 a5 k9 ]' Q1 q1 j+ b. E1 t* k! R- A% Q
Go into your source folder and open the definejob.h
, l, k% H2 O4 R# FSearch there for:% s. A9 O0 o' U8 N8 q/ E
. h1 ]& Y, i% S) m5 U6 y
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå1 D: S# j- A8 }' c" S
#define MAX_LEGEND_LEVEL 129
. M* l; Y% a$ \ M% `9 c T1 e#define MAX_MONSTER_LEVEL 160; p/ b+ z/ U6 ]4 p5 v9 t' X
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
$ |. J8 x+ H3 c4 ]# K#define MAX_LEGEND_LEVEL 1210 m! [ ]: n# ^* b
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå " y- J* J/ U, D% q1 m1 Z2 U7 y% {# e
, D0 m# K8 Y- ]3 }5 Z. j! o6 h& @& B r: {
Red: Player Max. Level
3 ?+ a1 U9 u: L; BGreen: Monster Max. Level
, `7 Y" p& K0 n2 a8 H! D1 _! d
! a A- S: N7 l4 cThese changes as simple as you want.& R4 o+ B: l5 J- K
. ]: Y3 O: j" W# y6 u: Q0 q1 n
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.5 E8 W1 T7 y$ L/ d( t
- C4 Q! T5 U4 ?- J: ~8 U+ Y, Z
Part 1 of blocking CE
( q1 c' y0 i# K& t4 M; G9 T: z
( | s0 g: x# j/ X& VIn this tutorial I will show you how to change the Head of Mark flyff.% n& q! C, T' P6 m; {
The current Head Mark is well known, 5E, which results as a string ('^').! p; R, C; C' Q- C) X
; }' d3 o) b% T6 j% CFor this we go to the World (Project) and looking at the Buffer.h after thistext
* N& }+ Q& s8 d8 LQuote:# l$ y g2 a" p1 [6 K1 K
# Define HEADER MARK '^' / / Normal messageheader
% |+ W& R: {* Y& B# Define SYSHEADERMARK '%' / / System message header
$ |4 ?: v3 ~$ w' ^4 s3 UWhat the Sysheadmark is looking for is not even the top 5E.
( G' P* f9 M) S, `) e4 K! lChange this and it makes the CE Not work on server.3 H7 h; _; t) n6 L y) A
# b- T, B8 H8 P0 Q' X0 ?% B* _Then Tom's anti-hack is no longer useful.$ X7 U B" k" E$ E! u
) {8 V7 M# x4 q% J- \
LG Sedrika
Part 2 of blocking CE
2 n# K h* E4 C# I9 k1 G1 ]* j; V3 a" U
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.
% u+ ?; r2 O! @5 |4 {& F3 m) z0 tWhat does this have an advantage?
8 A1 @3 h! w( c# Q% F YThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
, F+ H/ I+ G/ y9 I, D' @$ M% I# X" f0 v) e2 U
7 Q/ @, n: R- ~6 o u# ]First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz./ r" @: s' |) I3 ~* l- v% P& c( P
4 N6 f9 w! M& V. `0 b
Then search for the following content in HwOption.cpp
4 ^) w( u" {" G3 Y/ F2 _! j2 h8 h. ^ }, x/ {+ Q G$ e
! t$ D+ {: ]2 C: u6 i& W* A. u; nif (scan.Token == _T ("ip"))
( I) n) N/ b( D9 \$ ^( F0 M{
+ g' B; F8 b$ z3 f9 ?scan.GetTokenEx ();
: ^, m( }; R4 dstrcpy (m_IPAddress scan.Token);4 G1 v1 o# t3 o
}8 ^' l4 J/ e% {5 y( V( j
and turn it into this:2 t8 d8 V4 n4 P2 L
Quote:
5 T6 d7 C0 v, e3 h9 x3 Mif (scan.Token == _T ("ip"))
, H' F3 l1 n+ s7 } O{6 ~' G4 o) L! P
/ / Scan.GetTokenEx ();( ?6 m7 y- Y. V( D- @
/ / Strcpy (m_IPAddress, scan.Token);; A- [, g6 ?; G0 Z; @
}
$ d6 O; Y& f7 QAnd you created the solution.2 l4 D k8 A. G
2 b9 { @" C% R4 `7 d8 e/ W
( Z2 A! D) u8 R" ]0 R& x
Then read the Neuz not the IP from the INI anymore. even if put in it% x) p: E+ m9 h3 w
9 Y! p) ~9 H! Y4 y4 Q. _
Max skill's
' H! F4 k5 ]0 `# e4 j& q1 v; }# U* L+ Y* m3 _* P4 I# e, w/ t
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 $ Y4 o3 o; {2 E) G+ T0 c$ N
$ F7 T7 H8 `" ^/ l% v; O1 y
With the TUT can provide the remedy it/ |. E% S$ u; p) A0 f. z7 q
1 a4 n8 G+ l. O4 F. q0 o& ?
# 1 opens the file SkillInfluence.h
% D* V4 t/ Y5 h S4 D+ D. `# 2 Search
$ }" r2 @( @* |# c2 NCode:
; c3 k! K6 B# j" C
( [& ^' `! |, M5 q/ ~# Define MAX_SKILLBUFF_COUNT 14
- j5 X1 o, l5 B$ ^/ V
. [) P7 w# J" E4 d# 3 Change the 14 to your number (eg 21) and save it from
7 {* L- A% s7 L6 J# 4 compilation and ready" g! w4 M6 P" F9 `0 q* S
& u; q9 V1 N+ H4 q3 f
( O' A( [: n' J7 [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:% m. h; e7 a6 {0 T: D
1 N) @% j! L5 s) g- z; \8 u
dennisdra P5 d* n; U' O1 Y( g) ?" e* {/ `
.Crasy3 v/ R a; d3 U$ y) L
©ross
3 e7 z: K( }1 mSedrika$ S/ N+ G- s& x) D/ J
* h8 I; }3 p' R& e
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!
; _+ R( B4 Z& X0 a: v# [( t% ~6 e* ~7 b! D+ j0 |( N$ p k( c7 {3 v
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less5 m- Z2 g$ q5 C1 r* d! q
! i, @! r+ w( v; y9 A6 g
5 w! m( [+ `& R' S( Q1 Z# iUpdate 1:
how to turn off "Profiler" in worldserver.exe * t3 R/ y* W% A& L( \ S5 H- W
; F. Q) c# c8 p8 r& l* x
! f, s& y: J- P+ r1 M6 F! Z1 u$ M
in VersionCommon.h of Worldserver Solution. {% Z/ M" |3 _+ F. E; b
Look for
4 s; o3 ^$ c6 H) S: L( a$ k/ v, p; t
#define __PROFILE_RUN7 X( b( Z$ J& Y9 N" U+ e3 {5 a
: n# N4 L8 V9 m. s- bcomment it or simply. ]1 x6 D0 _" L* a
2 A8 n3 r: R+ T1 z- u2 ^5 Y. l1 }
//#define __PROFILE_RUN " @' i2 r- C# y$ E5 i
9 x) e* e% |1 ?1 C' j" b: W' c: u
0 K, P! o& j3 qcredits 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投寄。谢谢。我添加更多的很快如果你有病加太 - z s1 S9 t3 ^* J7 G, R( t
|