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
5 U" |3 S% N8 X U. [7 I" Fchange level without Rebirth
- P$ q' [$ M+ ~3 Y
, |' a1 K6 l+ l/ WNow, let us begin.
- |9 ?1 @0 d5 G% e7 ?, {9 W6 D/ g$ s) d
Requirements:
! R, P, t" e ?* L0 q9 _Source
) w, b7 N" K1 ]) M& PNotepad / Editor }* Y: u9 _5 M! ^* `: a% f
" y0 q+ w0 u& a" Q9 X$ m/ / Tips by Sedrika
K$ U6 ] d! a( }/ g
1 i' j# @2 B7 g# h" _0 d( WIt is up to you how you do it ^ ^
; z+ u, r, A$ H* b6 k
5 R8 f- }* |9 q+ ?4 E& K5 ^7 L( ~% QGo into your source folder and open the definejob.h
. R1 d6 |/ f% y9 MSearch there for:
% ?/ K% W& v. G. {0 D* K& M8 W' }( ^7 A# [
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå/ B/ f5 l1 r2 I9 R& [& t# V1 j
#define MAX_LEGEND_LEVEL 1297 t9 ]% p* s8 y' b S: L
#define MAX_MONSTER_LEVEL 160
! C. \7 ^6 e% M: C$ |1 q! ~5 p#else // 15Â÷ è÷¾î·Î ·1o§è®àå
7 G1 n( e7 P2 n$ f( O#define MAX_LEGEND_LEVEL 1219 N' `3 o% u. m. v' b# W
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå ( P* H# n5 |) P4 k
. }# n# [9 A* p% H, f+ P5 I+ r, _, r' W7 @; X
Red: Player Max. Level! a2 ]2 W# y6 H; N8 s
Green: Monster Max. Level' h. `& e0 L' |9 a& k
( L1 A' c# ~+ w2 L! z' J$ R- l+ Z+ Y+ j
These changes as simple as you want.
$ L; M6 o# X m3 R: B5 q2 i9 d' \# Z& E6 L$ E6 o
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
& c1 J( y# _# }
& S3 ~. {, ~' a+ K$ M' Z* v; U! Q
Part 1 of blocking CE : [' O' ~9 B& U2 I) H
6 D! S+ Y3 Z! W) x2 @In this tutorial I will show you how to change the Head of Mark flyff.8 ~# R& s+ R. _. c; n2 P4 t: r
The current Head Mark is well known, 5E, which results as a string ('^').) l ^, I5 f& }" @( k
, g: d2 P B; @- @
For this we go to the World (Project) and looking at the Buffer.h after thistext1 d! _& V$ y9 n3 n2 l) @- G
Quote:
# `& G7 P) p; ~0 U. g' Z# Define HEADER MARK '^' / / Normal messageheader
: s* r& d6 [$ L" Q0 U8 E# Define SYSHEADERMARK '%' / / System message header8 s6 f, t8 G8 T
What the Sysheadmark is looking for is not even the top 5E.
* R9 W! K5 c, s7 @# ^) EChange this and it makes the CE Not work on server.; b, P1 X9 ?" R2 D/ Z+ e
5 ?" `! h1 ^2 a% o4 lThen Tom's anti-hack is no longer useful.
# M; c) H: e- O$ P
% D( Z* M6 I: @3 ~3 B8 WLG Sedrika Part 2 of blocking CE & V" k, z U0 o% C. F7 e
# F) d: ]4 W) ]8 H. yIn 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" j! M4 [3 i! E( l; Z) jWhat does this have an advantage?# p. u% z/ N5 |
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
6 X# K! y f; b7 v) _* o$ s7 `4 z- a5 h* V0 f: y6 e# z4 p& v8 p
9 {; c, F! j5 j; p
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.& f. J% E% m4 B0 n" e
( I& C# ~, S6 Q6 k" eThen search for the following content in HwOption.cpp
- E0 C- R# {) ]6 t" N& V& Y3 @, r) Q1 j+ N# o( z* S! v
& p! j% D" G1 @7 @if (scan.Token == _T ("ip"))( B' x( T5 s& k7 K
{2 z& Q9 h( o! z2 {( S5 w) {
scan.GetTokenEx ();
; B1 V) c# Z# f- M" V6 [# M3 L7 {strcpy (m_IPAddress scan.Token);! r3 W1 z' o: x: Z) h/ }
}
& v" l) }1 @0 U! _6 e5 }* n. s( ~and turn it into this:
+ C% Q$ U! y7 g" D y" U/ O2 YQuote:, H$ p. a: ]; F' x
if (scan.Token == _T ("ip"))
- O- C1 {4 [% l4 D B: u$ w{0 X6 y( x% _& F, q. B. r0 M
/ / Scan.GetTokenEx ();
! E* P9 ^0 y" H& s+ f9 n% @/ / Strcpy (m_IPAddress, scan.Token);. Y# Y9 `0 ]! @1 v& v7 W
}3 B1 b6 G% L2 n) H, O3 L
And you created the solution.% k5 b2 |# { j- O& A
, y' T# F( J! G. v& D' Q; `5 s
* i v: X9 s5 A/ k/ | C* ^; QThen read the Neuz not the IP from the INI anymore. even if put in it' d9 H. B% j# P q5 t6 i
# Z. [' y0 x, a% A
Max skill's 1 [. ~4 j1 ~2 B, D: M) G2 `
9 v. A. Q4 \8 zAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc
# K7 M% ^+ @0 T! c
# t7 K" M, i! A& [3 P! f4 aWith the TUT can provide the remedy it
3 s3 @( k# u+ i2 f' g' T6 m: i! s( G d: i; g
# 1 opens the file SkillInfluence.h! ]5 i0 o4 N# g/ } M; ^
# 2 Search$ M& e( Y1 l. L& g. G
Code:
: j2 x. l$ g K6 X+ f: `5 J
( e7 P8 F" t" j% w# Define MAX_SKILLBUFF_COUNT 14
. r/ B0 N2 Z! E. T6 H4 I+ Z/ E5 q) I9 z/ d8 \3 i
# 3 Change the 14 to your number (eg 21) and save it from8 d- f4 J8 f$ D+ ]* R; m3 z( p4 l
# 4 compilation and ready" E. q( W2 F! i8 ?3 Q! G6 h
7 f% W, D* ~: N: O! e6 o3 {( c8 X. Q1 c# _
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:0 `1 J/ `, y. Q6 Y( ~
$ F) I4 u0 g" S- ?$ q4 @4 E
dennisdra' K$ G; I7 @1 I- U$ s! ]9 ]/ }7 N4 H( Z
.Crasy& k1 @7 @3 L0 m0 T
©ross
/ `* p6 c$ v2 \6 ~0 ASedrika% \8 ^- j4 G. t5 m6 X% _) t( Y
" c1 r4 l) g! f6 beverything 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/ ^6 j2 G$ v: ?$ ^- q
. g9 j! K$ |; @6 M
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less& I v$ e: H9 Y8 Y8 V! p$ O) a
( Z4 E( Z6 Z- V' P, ^* ]
5 z' P" p9 h8 `, [/ g( }
Update 1: how to turn off "Profiler" in worldserver.exe
% F6 K+ N- Y( Y$ C7 C& p; w+ `+ E" P/ w7 K
/ x3 O1 E$ F/ G
in VersionCommon.h of Worldserver Solution. P8 ]5 k l' D7 G+ P6 a
Look for/ w! e+ C& J, `! c2 R3 }5 X8 p. c
' \7 F- I$ k- O' p8 l2 V& z
#define __PROFILE_RUN8 E' o8 L( A7 i' R8 R+ c
/ B2 E4 b. |, H9 e6 m( g4 f" \
comment it or simply
0 q& R' ^' L/ e2 a0 y r) U" y6 y. j. C. ~
//#define __PROFILE_RUN
7 T( g4 T1 U5 K9 B; `
: ]) I! G7 W6 [% ~0 v+ ]9 u7 I1 y" S* b. O
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投寄。谢谢。我添加更多的很快如果你有病加太 - C1 h. d H" F6 z
|