|
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 - R$ b( y% o" z
change level without Rebirth
$ f5 E' T% v- r& `# K( o! ^/ F3 C. g; j) @# \
Now, let us begin.4 d8 n6 D/ Z& `; v) ^
4 Q7 ?0 {5 {2 kRequirements:5 h, u0 e, W2 n
Source& N$ q3 F& x1 N7 x
Notepad / Editor
2 b6 f% ~' ~4 i* ^; z: [2 @$ A: `/ L Y0 {/ D! i5 \8 F6 i& C
/ / Tips by Sedrika
0 D9 A8 o/ s% Q6 j- w; p' R( \% l& P' e" u0 }" F9 `
It is up to you how you do it ^ ^
$ z: B- s [6 {, z
% T( b2 u3 d" a1 q( d. R5 bGo into your source folder and open the definejob.h
( p" x2 s$ B2 {9 t$ e7 L6 b2 \. zSearch there for:
& j/ V. q- f3 R; V
$ B2 D) e" Q1 N3 v# E5 V8 g3 c#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå" u& {8 a' z: \
#define MAX_LEGEND_LEVEL 1299 _* \0 y+ l. |2 J, w! `
#define MAX_MONSTER_LEVEL 160+ z. N' M b+ Z8 b
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
* w S) t j2 q/ X' c; }#define MAX_LEGEND_LEVEL 121- @7 P& L X6 K4 |/ H; G P" c
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
: H! i* T1 }; \, l
4 T* x- w, f( p! Y1 H7 w/ m# ]1 b! z8 {$ {+ T7 ]# L8 e
Red: Player Max. Level
0 N5 s3 M3 v9 D( @! i' ~Green: Monster Max. Level' ?4 @4 L* u% f7 B3 \$ b5 M
4 B, e" X# U4 l/ r! ^. {: c! R
These changes as simple as you want.
+ D. f& [; V `1 c5 a! @! f3 M5 \6 _+ ~# {
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
- D# A3 T- y+ X# c0 P3 J2 L1 O, @# b
Part 1 of blocking CE 8 F- O6 f6 R9 d
& g! @% `) A; w0 o MIn this tutorial I will show you how to change the Head of Mark flyff.0 ~ J+ B" g; |5 ?
The current Head Mark is well known, 5E, which results as a string ('^').
0 t. s: N7 A) R9 R1 a6 v: V# Z) p3 s3 n. u q
For this we go to the World (Project) and looking at the Buffer.h after thistext
: m- L8 R: P8 Q. [ m5 k* LQuote:4 C5 a2 N% N4 O4 r- _5 I: f" S5 e5 w: E
# Define HEADER MARK '^' / / Normal messageheader Y o' ^2 B' V
# Define SYSHEADERMARK '%' / / System message header1 V" u- i6 p9 H0 |
What the Sysheadmark is looking for is not even the top 5E.
; G4 P1 m& w& Z) }; D, |& R9 EChange this and it makes the CE Not work on server.
: A% v, y4 [9 Y" d7 L/ J) N
- z+ a) d) _% M& S+ ]Then Tom's anti-hack is no longer useful.
6 j% H7 l5 i! ~$ ~7 ?: X0 h
4 v2 d& f$ b' P8 [' dLG Sedrika Part 2 of blocking CE
( c/ p7 R4 [6 b# K0 F V9 t6 g" G9 Y% P+ r6 q: w7 O) c" e
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.
1 T- U6 }/ t' Z' V. YWhat does this have an advantage?
+ h9 T, }, i6 |, s2 KThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
8 ?* j K; M& k* d2 f9 Q y3 U& I! z
3 Z; Y4 A3 G9 F+ a: v( c6 [
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
2 G/ Z" Y/ S5 e) t9 ~
9 l; @" k/ W/ e1 u5 [Then search for the following content in HwOption.cpp ' `! R# G2 l7 T+ b# _% _8 s% Y
1 b. l) t# p( p
6 e8 s- ^6 l2 K3 f( k1 @
if (scan.Token == _T ("ip"))" `, K) g+ W& W: _ t
{6 @8 p8 d. n S$ h0 P4 {
scan.GetTokenEx ();( X! t) U: q6 r9 E& Z6 E# J9 G
strcpy (m_IPAddress scan.Token);
4 [; F' N0 a* O: c7 ^0 {/ s6 `. P m}+ G7 f, }% y1 y% X, o
and turn it into this:
2 H6 l% l4 ]+ k- JQuote:! y$ |- D9 j3 p7 n) u, P* b- Y2 L
if (scan.Token == _T ("ip"))0 }" z) i$ m# u% Y% ~
{, j0 I* q7 Q6 y |( v
/ / Scan.GetTokenEx ();( D9 [6 Z q; N( l% `5 A/ a
/ / Strcpy (m_IPAddress, scan.Token);
1 N0 z! n0 | [* k0 |}
, _% k! p# p: M* S% p5 Z UAnd you created the solution.% o: N2 v* r$ J. ~8 {4 ~; V6 D( z
7 W( g( Z: |+ l4 ~3 n# Y
' Z' w _3 W) A( |Then read the Neuz not the IP from the INI anymore. even if put in it
( A" t4 H, U8 q8 v
- G& l; C0 o7 ?) t
Max skill's
* t' k2 `* ~* B n# P/ U# C0 b6 g' x! N# E" 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 ' h/ S+ s" Y: @3 S& N: b; g
# q$ K" s+ v3 j, k: P, v5 YWith the TUT can provide the remedy it$ S1 J3 X* |. A% l
; a: W; I" Z" Z, L* v
# 1 opens the file SkillInfluence.h% T% m& S- d% c0 a; [
# 2 Search
- E" a; F, @9 b. F0 ICode:
% _" O Q1 Q9 e" V* H( \: L9 t7 \& @
# Define MAX_SKILLBUFF_COUNT 14
) I! c' V0 v3 W( s' H. O5 P6 L
+ X8 I1 Z6 n4 s( J% P9 S# 3 Change the 14 to your number (eg 21) and save it from8 s# P) F5 o2 q- G9 k. G% H+ w
# 4 compilation and ready
% W) H8 H) l% V/ d
1 s$ q y2 n6 L
. x$ Z3 E" E$ e' x# bI 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:
1 y+ s. T% R7 p+ }+ X( @3 w
5 V, l! S W, l3 [! u. `+ Odennisdra
- \# K+ z0 \# `% F$ f.Crasy
7 e# t: a* T9 M; |/ l©ross& N. { n$ |( a: Z
Sedrika
: C! F6 H% \, l! r" P) n# E, J9 D; P S
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!
2 R! f5 C1 |' b/ t O2 q, w9 w, L7 o" H
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
+ v# m5 ~# U6 v
, l+ d! v- `# \
/ ?4 C2 N8 I0 u1 x' R( _, TUpdate 1:
how to turn off "Profiler" in worldserver.exe % m2 i5 l2 l! S9 ?
- |2 t+ Z5 {, [1 l9 P2 Q+ j+ C# P2 P% @! `
in VersionCommon.h of Worldserver Solution# G; P8 P* r; I+ Z' v# L
Look for* [+ ?. [/ U0 M9 R
! p0 Q$ A I* V" e$ j. m8 H/ V" C#define __PROFILE_RUN S; m$ L% `6 A% \8 p/ g
" R! a( K2 s" T/ F: m4 V1 d; ?2 w# Dcomment it or simply. @) v' x: u9 V- h
* n$ X9 V& A+ L& W2 D
//#define __PROFILE_RUN % J( P' V y: H
- d- {/ w1 v {. j6 [) \0 K" Q5 J: [* @7 M8 F) y7 L/ t+ W
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投寄。谢谢。我添加更多的很快如果你有病加太
7 t* x5 _: |6 x; _! f6 | |