|
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
' z4 |; d- K" ?: mchange level without Rebirth5 N$ ^4 p9 L4 U7 j
& z+ q) X. Q( `' O, S! t9 K+ W) M }/ q
Now, let us begin.' H1 {: F4 J) b
2 O) `7 `. K% c: x* n) W
Requirements:8 h4 E! t1 \3 R. r- @
Source% G0 d7 r! k8 ~' F1 X& `0 G! O
Notepad / Editor
. f8 h E0 r b; e1 ?) ]7 _1 I
+ Z$ K- ?) G: R; b: z5 b/ / Tips by Sedrika
" b+ s$ l% X+ z5 f7 @. \1 o
5 |0 }$ q) i7 @; ?$ uIt is up to you how you do it ^ ^8 P' P& T" H9 G. \: x* s
/ a. Q/ l1 `7 C" R. F2 `" y& F! U
Go into your source folder and open the definejob.h9 l9 R+ `' \& `6 F, w7 Q0 ^
Search there for:
4 a+ e' P, S4 E6 ]2 c. ], Q" H6 u
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå% I/ |' U2 [" |' \7 p
#define MAX_LEGEND_LEVEL 129
; `! k* z8 n6 L' S, H" U#define MAX_MONSTER_LEVEL 1606 B/ s1 h, b% |
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
4 I* q8 w2 _; ^#define MAX_LEGEND_LEVEL 121! d) J3 q. m* R& j8 c. W* V
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå 1 U" l+ Z6 \2 k+ D
5 e2 J4 I7 j/ R
# M) ]' Y$ O8 U( M6 c. S, @Red: Player Max. Level# ^- D C' e3 n3 G, v
Green: Monster Max. Level( J, D# y# x" {* C
* F Q" s( n# g2 ^, VThese changes as simple as you want.
$ l n7 r; j4 h- u
; v/ F3 z- r: U" q: V, LThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
1 O5 Q* {0 a& h5 h& J: C
$ F' y3 t4 @1 f, L2 q, E
Part 1 of blocking CE ( g- J/ j- K0 r. k8 q k2 f) {0 x
& r! l; Z. J0 L8 D" T, V! m- `In this tutorial I will show you how to change the Head of Mark flyff.9 Q% _- s# l. t, R8 n: b' F
The current Head Mark is well known, 5E, which results as a string ('^').
" V. I7 K# Y: j0 d# C0 p0 B L# T4 U7 D: w$ G
For this we go to the World (Project) and looking at the Buffer.h after thistext5 G% R' Y4 E& C
Quote:
4 J, h; `1 r! \, Y; S; S+ d# Define HEADER MARK '^' / / Normal messageheader' c) a i2 H: L$ }3 x8 y
# Define SYSHEADERMARK '%' / / System message header
. @& z) h/ G& r* u, A ^ h& yWhat the Sysheadmark is looking for is not even the top 5E.
/ r) O/ l" t9 I& P* p9 k4 OChange this and it makes the CE Not work on server.
% o' m; ~5 {2 `* n$ J1 e0 L# `. \7 F0 v+ P' i* Y6 v1 x. T
Then Tom's anti-hack is no longer useful.' o. `1 S' w S K6 _# P! A
9 m* l6 A% g4 l8 V
LG Sedrika Part 2 of blocking CE 6 G+ ~, {; \) U5 d% G
: H" }" b% w6 `4 Z
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. ) H' A5 c" h, Y; s: n& ?
What does this have an advantage?, V* r9 W, o; n4 z' h/ y! {
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
# U5 E4 T& |- I) P4 Z/ }# m: k4 K0 m5 [& H2 v4 V% p2 q* @
7 [% R8 a* m, k, Q) C2 u. E
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.) y3 j: m) |+ w3 a
7 _3 t, J4 w& G$ _% R( ?4 N T) YThen search for the following content in HwOption.cpp . R5 Z3 A! [" g0 R
4 Q9 j) r2 _, s, w. a9 E
7 H9 ]; R( m1 d
if (scan.Token == _T ("ip"))
5 A/ ^: |3 ?% b- I+ n{' c1 _ r2 H8 s& o+ @# `
scan.GetTokenEx ();/ F* s- O+ {8 J! P0 w
strcpy (m_IPAddress scan.Token);
" h$ j3 J( g6 j- W( v( W}
4 ?. D0 ]" m# L" S1 band turn it into this:( E$ ]2 w6 ]1 u, R4 V& R% b) X
Quote:
, g* N' c# r7 b! x5 U/ x# y8 i0 fif (scan.Token == _T ("ip"))7 K4 [2 i, ~$ b- |1 {( k
{
/ |! |) [+ }! O; l D. y/ / Scan.GetTokenEx ();
a3 B. i4 l& ^/ / Strcpy (m_IPAddress, scan.Token);
5 |6 l, \! R$ }8 D% _}
) ~8 h/ j% B, Y1 b; F8 g0 gAnd you created the solution.% x3 z" b" ^) J& F% \0 |
) Z+ t. s5 s* @) W8 E) o' S6 ^1 |1 Z- b
, G. D( \/ t& z- }/ vThen read the Neuz not the IP from the INI anymore. even if put in it
$ S0 _* y+ l0 e* s+ |: F
( h1 y, H8 q5 t) N Max skill's
0 V8 p0 [# e/ ~9 Y3 Y& D! T4 z9 q1 a9 ]8 }3 u
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
' W0 Z- s- r( [
4 M9 X; ]- C+ ?4 [! _' hWith the TUT can provide the remedy it- _2 E3 E6 k7 F3 B, {, {
+ ^6 c( s0 y% v9 K# 1 opens the file SkillInfluence.h
9 \: T, w" E2 p {; s# 2 Search3 O$ Y0 @2 ~, ~4 d: M& w
Code:
4 j# n, d7 \! Q5 r+ C+ Z4 ~
4 ~! S! U+ y; W y) L8 d# Define MAX_SKILLBUFF_COUNT 14
3 J f ~1 N5 i! I- t$ N
; q; d5 s2 S& w' b/ t3 c$ Z6 n4 ?; ?0 S# 3 Change the 14 to your number (eg 21) and save it from* D; g& F+ x5 {8 K2 Q0 U( A
# 4 compilation and ready: I" P" K8 Q6 k( q5 _% u' m% Y* |
9 E8 f% A7 }. R- g2 `# I/ M0 P9 s
0 L9 r/ }! t8 ^1 _; [' z
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:
! b7 l" H4 l5 r; G6 }1 u* k. l. @8 Y) H9 h" `/ x5 y, I
dennisdra
1 r; H: f5 t' b( k) p/ V7 a+ a. C.Crasy
9 R: c3 }) W; U: y3 a; n4 ?# z/ E©ross
3 {0 p% y/ q }( XSedrika
' w) E9 x) q, ]+ y1 r) @+ v
$ k$ Y2 [, |' Ieverything 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!
" `( Q: U: m! x* L O9 Z% s$ v: a, w$ t& `
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
) U$ V N' \& A8 J) g6 ~
4 R; g H# @3 p& ?' z& _" L1 c% G+ r
Update 1:
how to turn off "Profiler" in worldserver.exe
, I1 s2 [* y5 k* A% v- V3 R2 {5 J( ?4 Q' f" b: ^8 [* Y5 T
- u' {- I: C1 |, \
in VersionCommon.h of Worldserver Solution
% z; m; t) t' rLook for: Q; B4 h/ ~5 @
3 X5 f* \/ t/ j U5 o#define __PROFILE_RUN2 l, J( R" ^$ \- y* J/ y" e: W& N) }
# ]3 B3 N3 ^* q" f$ ~
comment it or simply# D+ j( t/ d4 M6 u( s& j
/ S5 t) g5 x2 M4 \6 b4 Q$ d+ Q//#define __PROFILE_RUN ' F$ }" {/ d6 M U
% l& o+ e0 q( {
$ l/ r, l( ~- d& Hcredits 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投寄。谢谢。我添加更多的很快如果你有病加太
( P8 B2 p. w: A/ R |