|
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 ; Q/ E; W9 v. Y: b! t
change level without Rebirth
4 s% v: e, e7 _
1 Y" F1 {% J7 {Now, let us begin.6 X9 S9 K: Y# _
: N0 U: [/ \5 T2 i% F) }, K
Requirements:7 n2 o% o5 k8 ?0 R
Source9 |; {3 P# ^6 t& G
Notepad / Editor$ k. |/ @- p. F: }
3 [) B2 R* A8 ]1 y( N3 [/ / Tips by Sedrika5 h9 e5 I9 R. o3 }) U' o' J
7 t& b) w2 u0 F" z0 N0 j
It is up to you how you do it ^ ^
# N6 h; s) `; k4 S2 {, y, u& J1 G( |8 z5 F3 ?5 s; P& N
Go into your source folder and open the definejob.h$ ~8 D ~. ~& j/ R0 f: t6 o
Search there for:
' N$ p5 m1 i+ j8 b* \; w3 c: \" q% G, f. g5 z# R$ G
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
. ]7 K7 `. f7 y% a2 V) z+ k#define MAX_LEGEND_LEVEL 1295 S1 [9 b9 |+ y8 {. x
#define MAX_MONSTER_LEVEL 160
% r6 V8 N( m; ^, z8 e- t* A8 U#else // 15Â÷ è÷¾î·Î ·1o§è®àå) \2 K+ J# T/ }) Y: u1 U
#define MAX_LEGEND_LEVEL 1218 w1 S/ @! x9 L& L4 D9 [
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
" G/ [& i: k" N8 S2 ?3 z5 N0 f+ w& [( l' J+ }6 s
' g6 I: {: k P# GRed: Player Max. Level
P1 B, t( r, yGreen: Monster Max. Level( g( ]6 B. J7 w
+ J/ a+ K( R ^2 a! k5 sThese changes as simple as you want.
* O# j, H( @; x- k; [ u4 K3 j
. \ W4 b6 T* g/ t' YThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.# E/ F9 d7 E$ x) A
" F. r& `. ^9 l7 d Part 1 of blocking CE . O' V2 `* e A
+ G1 _. J1 t; E4 B- O
In this tutorial I will show you how to change the Head of Mark flyff.$ ]) b* j% K( I. {
The current Head Mark is well known, 5E, which results as a string ('^').
+ c- c) x, C2 u$ J+ w1 B* f) p8 l+ ]6 L7 l$ B4 K" h
For this we go to the World (Project) and looking at the Buffer.h after thistext
% j0 J: y k2 ~; Z3 Q9 oQuote:# d0 x1 l- |' h$ R$ L, f
# Define HEADER MARK '^' / / Normal messageheader
" s$ V$ p5 F' b9 n# Define SYSHEADERMARK '%' / / System message header
( z7 D2 p: L6 C9 PWhat the Sysheadmark is looking for is not even the top 5E." b8 \5 y3 Z# [2 b
Change this and it makes the CE Not work on server.
7 r5 E; D8 |3 g1 o! y1 s8 G# J0 q2 [* S
Then Tom's anti-hack is no longer useful., ^. l- \# l% s1 G4 I I7 ~
* ^* C4 E; e8 O! P4 m* hLG Sedrika Part 2 of blocking CE * A. [7 a, s- Z& J, [
% P' F. H L o3 |; G% P4 x) g
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.
7 {, M0 W( k" H$ d8 LWhat does this have an advantage?
/ m1 @1 k" @ Q- i0 ~" g% }The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
* k& [0 d7 a2 \, \. @# b- X; t3 k8 ^6 D7 I2 s i
$ A# V! W) C1 o; t. H
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
( |9 N( w" W0 K% f! Z
9 w; `1 C |0 |# M" ^% ~7 NThen search for the following content in HwOption.cpp * a% B. S. X6 B$ u. p! M# o
4 Q4 m3 D! L+ L" ~7 L w6 N# V1 w" Q# {0 @: l6 {" Z
if (scan.Token == _T ("ip"))
! @( J+ x5 T. y{
5 }2 [8 ]; t8 I3 O& ?scan.GetTokenEx ();
2 o1 e* u/ u/ I5 a" m& |strcpy (m_IPAddress scan.Token);
! g$ i% l! o/ |' A2 [- d- d: ?}& U4 b! s( Y F; [0 ~- _* @9 b
and turn it into this:) ^+ w" m, i" }, h% S
Quote:
, `7 R; ~# {0 k* ^, r3 X* C1 Rif (scan.Token == _T ("ip"))
% v/ H! o" I% S- t{+ M3 n& e0 w+ \, {( j1 U, _
/ / Scan.GetTokenEx ();
" P% B. z) E; } x/ P9 O' O/ / Strcpy (m_IPAddress, scan.Token);
$ u( }. s+ e# y3 l}
) V. n! q1 S! l6 \( dAnd you created the solution.
. S4 j e* t, Z% a' X% }! M/ h
9 w& F* ] i1 n: s1 {% g
7 f+ j! b4 R- L2 J' i. a# y5 tThen read the Neuz not the IP from the INI anymore. even if put in it e* S/ p) f; a5 x
7 n' n/ t# E$ j. c7 a" \
Max skill's
5 ~( ~* T5 A; n/ ?! ~
* N t W) d( B5 l; o3 cAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc 4 m; c8 W9 @5 b- n, Z9 r
6 n9 U' \. b0 [- l. L$ J/ V: TWith the TUT can provide the remedy it
$ h5 f' B) w: ~
/ Q2 \$ i( q4 o1 l3 [# 1 opens the file SkillInfluence.h
* T6 b& V2 m6 `& l# 2 Search- \8 r/ Z0 S3 T
Code:1 D+ I# d' y- M# ^& k- U
y& m' B5 X7 F. [' U, j
# Define MAX_SKILLBUFF_COUNT 141 Q$ E" X! f# r
; z4 B& U$ |+ f! U2 r# 3 Change the 14 to your number (eg 21) and save it from
& Q, F- N2 }, h# 4 compilation and ready
, g$ S. h# A+ I: g
+ c& l% o% b1 I$ {! p4 p
& L6 N4 n0 E4 i4 wI 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:
3 b& @7 l) c" X3 E3 |
0 U5 T/ z2 @/ }& c: a9 Udennisdra: [1 `9 f8 C6 s4 T$ P
.Crasy! U8 I0 E: ^% R
©ross0 G$ b; u: j! B# g9 Y4 u9 ~6 R
Sedrika
" t' A9 s6 J) t& R. e" B3 ^, z* K# ^2 K9 {( U
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!
7 f# l* p% ]4 Z: i& R
3 X7 C9 T" D, E1 S; A4 c |: [0 |) _P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
7 i5 q6 H0 P% ]2 a, V4 d/ x( {& h4 }% W
7 o4 ]6 x" ?, X
Update 1:
how to turn off "Profiler" in worldserver.exe % Q6 l; V% K$ \) P7 x) B5 a
: x# i+ v/ O% ?" h
3 M0 F" D7 C! s. H$ ^8 w
in VersionCommon.h of Worldserver Solution
# A1 N- Y& b2 b9 Y+ y* DLook for
4 N- O, w- N& Z% ]+ `8 b/ r v- `2 y6 Y+ j9 h# q% G( I
#define __PROFILE_RUN$ Q; F( W/ z2 z, a
3 Y9 s+ Q1 s" X, z1 ^0 o
comment it or simply
3 J) V( @ c1 M1 {8 r
& a4 O1 o4 s9 u/ b3 n, S//#define __PROFILE_RUN : a/ t$ u& X7 U$ ^7 t5 I
$ v) U0 W% B- q) A x, P
& ^; Z3 E1 \) M) P: l' ^8 I6 O 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投寄。谢谢。我添加更多的很快如果你有病加太
) J& F T9 e& I g |