|
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
: X, f2 v. l0 [( ichange level without Rebirth
`/ A) Q% G" m4 O; B$ k( ]/ Z6 z! M: x" Q5 }, z2 _# h
Now, let us begin./ J3 e' |1 l2 |9 o+ H: W
/ f, s7 O2 f: H0 r3 n9 ]' N0 RRequirements:7 u1 a" v# J' J$ c# n1 L. j9 N0 Z
Source! g' q) Q$ z% R
Notepad / Editor! h) z0 s" a" N; c3 E. V5 M) i& y
6 ], E/ b( t) Z! R X0 M/ / Tips by Sedrika
$ `0 a B) h8 i- k) j9 { t
) H; Y3 m4 T) g( sIt is up to you how you do it ^ ^. S+ Z# }+ r6 ~) e; X' r: P
d( z$ |# ^ J: j
Go into your source folder and open the definejob.h
& k5 Q4 C* T: F* C2 {3 @Search there for:
4 W# l; [ C: W0 x$ Z8 y0 ^ J# _- X
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå/ o* }% _ U! A' @/ z' [4 F$ s
#define MAX_LEGEND_LEVEL 129
# T9 |/ U7 M/ R; |) j#define MAX_MONSTER_LEVEL 1604 s& R, W! X2 u% i& G B$ ?- ^0 J- V- `
#else // 15Â÷ è÷¾î·Î ·1o§è®àå1 E: v5 c) M) V# q! l, \0 U' C
#define MAX_LEGEND_LEVEL 121
1 T+ y8 m w' U. h3 |( {#endif // 15Â÷ è÷¾î·Î ·1o§è®àå 4 H- e7 ]' Y3 o* g" w6 L
9 K7 x+ i# |- D" l( | m! _/ Q$ D' d, }" o9 o- R" H8 k; t( ~) W$ j0 R! J
Red: Player Max. Level7 m1 \. o- q- U4 t. B
Green: Monster Max. Level
3 h1 n" S. e, V. P) H
3 x+ ?' S8 v1 y: k) R9 QThese changes as simple as you want.2 O& S* |. b7 [& A% [4 l+ _0 A) @& Y
) [/ s' ?: b: e$ DThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
8 d& K1 J* B+ @) L; M7 M; H& h# ~' P% f
Part 1 of blocking CE 4 K. }. f$ K3 i2 p; e1 w( Z' _
% D2 q3 z, H3 f! J8 s, v! {6 pIn this tutorial I will show you how to change the Head of Mark flyff. U" B/ M2 D# w9 I
The current Head Mark is well known, 5E, which results as a string ('^').
/ b" p) e. p; @# L) x
8 ~% F! ^1 y' n8 IFor this we go to the World (Project) and looking at the Buffer.h after thistext. `7 i3 a- M; ?: z
Quote:' |% j2 R* Y7 c. I2 @
# Define HEADER MARK '^' / / Normal messageheader1 J0 i( F4 y4 d3 ^3 o/ ]% D
# Define SYSHEADERMARK '%' / / System message header
7 z6 f- F$ p* a1 Q( L w5 XWhat the Sysheadmark is looking for is not even the top 5E.
# m2 }, a8 x$ G3 M1 i/ I# kChange this and it makes the CE Not work on server.
2 b! m2 |" ^# C5 e( I: N
/ r* O& L3 ~5 F) r* t0 xThen Tom's anti-hack is no longer useful.
' k$ O5 k8 k9 u) \ s* O1 E1 W( ?$ N3 k: ?/ B9 h
LG Sedrika Part 2 of blocking CE
/ f& q0 D- P- `1 f' w
7 U. h; V% b+ h4 D5 ~, rIn 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.
, @% b) L8 ?6 a& CWhat does this have an advantage?
0 f. ^& \% @; r' C4 g" K5 |: zThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 5 M0 j# e6 [% b3 ]
) v4 |: U4 V9 q0 x6 T
5 O( L! N5 v, e7 FFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
2 _0 z& e0 u4 U7 `. I$ f0 P/ _7 Z( x4 i# f6 m* I: g
Then search for the following content in HwOption.cpp
& q. M) R7 u0 o8 c" _: D7 t/ s* W& I, A6 M* @9 i
! r( ~1 b4 g' s/ s- m) x) J+ {if (scan.Token == _T ("ip"))0 V' j3 N# A4 j
{
2 T, I. j8 M8 r% O& n; N, fscan.GetTokenEx ();
- \3 F/ c' [7 ]0 v" qstrcpy (m_IPAddress scan.Token);5 u" L8 v: Z- {( d, e9 g6 C
}) v4 z" _2 T ~2 z
and turn it into this:6 p/ B5 U: C$ [' f a& @1 Z
Quote:/ h- c. S" C' ~9 k0 |/ `
if (scan.Token == _T ("ip"))
3 L$ B+ D8 \ P{4 D8 P( b' v8 O& j& R1 m) { b& ]
/ / Scan.GetTokenEx ();; Q; B. Q9 ?% R/ u
/ / Strcpy (m_IPAddress, scan.Token);
7 V- S2 }& g: y5 ~; Y2 Z}
1 S" o0 j1 [, o! E2 f, {! ~) GAnd you created the solution.6 Z( w+ j/ ]7 d; U8 |5 ]5 R3 f
# t3 S" }. s$ H
, ] f5 m# g& Y0 K& }5 z R8 l# iThen read the Neuz not the IP from the INI anymore. even if put in it
+ x9 d1 A8 G) p! g5 W; Z# w; ~: Q
2 _2 y, Y5 E% N' E; ` }
Max skill's ) Z5 m9 Z3 Z/ n# ]: e
1 a# C+ |" w& X1 l- r$ O* nAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc
. F& s, `0 i9 ]2 J T. T6 Y% E! Z8 G7 @ k9 \5 |0 u
With the TUT can provide the remedy it% e* p- k! R* ~) X
1 n+ I: h+ e; B# 1 opens the file SkillInfluence.h
2 O9 u% Y6 v: x# 2 Search% e! e/ n" m9 Q9 w4 s$ X3 B$ u
Code:
: C! Y. Z. v9 {5 a9 A1 k
" U* Y* ^. R6 M9 @/ m3 z) p# Define MAX_SKILLBUFF_COUNT 14
0 c$ W/ e2 K9 U8 B8 y
8 X/ D1 ]$ C2 `7 @# 3 Change the 14 to your number (eg 21) and save it from/ [2 D# T* U7 ]4 g7 ~
# 4 compilation and ready% S* W# r$ T) B4 G3 f* @9 v
. S0 K: d: S9 a6 [) }- N% ^$ e2 R
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:
. N; a0 I: ?5 U+ M3 s3 C: X3 b' t* g! \: v4 l' L
dennisdra
! [* R5 _5 y G- O' z- e$ }: _.Crasy! \, K% d1 y0 v0 ` {
©ross
1 Y# A" K4 g2 Z" {5 gSedrika
" g; ^# R/ J$ ~) ^" |: w) q a W/ ]
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!
1 ]5 M5 z+ L1 X
; u0 i1 H6 q+ P0 L& {P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
( P: D6 v. O# ?$ ]* U& \7 b% y" R1 Z# p
, M& t9 m3 D- ?* m4 n
Update 1: how to turn off "Profiler" in worldserver.exe 0 r5 J9 V& r, B1 a
$ P$ c( w/ P" O2 a5 {; C/ e
, w: I/ c. g! `in VersionCommon.h of Worldserver Solution
+ x) ~, ^' X& C& v% {Look for
. \5 J& n/ F" w, ?' ~" T! l3 {* F# C2 r5 [8 C8 z; h7 W% x
#define __PROFILE_RUN0 W. [7 I, e H/ g
# [/ E; c6 {4 _3 Q' s ~3 s
comment it or simply
* p' i _* P2 k2 ~% m
4 Z! A! h9 o- Y1 R' w! j- |9 S//#define __PROFILE_RUN
& I! F* \- v& R3 @: L* p8 s! P; o
/ V7 Q# h; { O+ l
$ R! B6 [6 w2 V2 x( O# ]* I. @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投寄。谢谢。我添加更多的很快如果你有病加太
0 h2 K: |# H- S* k, D# v |