|
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 ' h: [1 G/ W# ?. h V3 e' i
change level without Rebirth
* T- G7 a# ~' q9 h
7 \6 N& p5 g; K2 j9 KNow, let us begin.9 H8 t k1 t% N# y7 j7 t
/ G3 S9 q @/ G$ q) Y% L u1 O+ j
Requirements:
7 P8 C) `8 }+ C2 Y& C# JSource0 F2 W) f% K7 A( r- f+ k
Notepad / Editor
! b8 i( P! \! I
8 S* G o# d! b) P/ / Tips by Sedrika
$ _# q' A; y( n U8 r1 |7 k5 i+ V$ P+ L& F! i6 F0 v
It is up to you how you do it ^ ^4 a5 a- s. F- i+ q. F
. Y1 H) d/ U2 O4 r2 uGo into your source folder and open the definejob.h& O4 g1 {. [4 W
Search there for:
# H8 S4 P- z- y; e2 E7 v. A% w
^" R* e' r1 h: y#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå. k/ R3 Z9 i/ v
#define MAX_LEGEND_LEVEL 129
2 v- a% N& H6 d. ]! b; Z/ O#define MAX_MONSTER_LEVEL 160
& M' C: O- Z; ?5 @#else // 15Â÷ è÷¾î·Î ·1o§è®àå9 p* H' ~3 c+ x5 U. ]% k
#define MAX_LEGEND_LEVEL 121
) l! I# H. Q- R3 Z5 L#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
' X: |, t/ A, B- S7 i4 ]
+ D$ u+ k6 p" F" |$ U7 |( g7 e% H/ L1 f0 s2 S# c& K
Red: Player Max. Level9 e8 b+ [% V) S; {; v. K6 O" M; n- {
Green: Monster Max. Level
) j4 C( U$ h/ ^" D$ N1 ?2 `! E- v# S: x s6 [
These changes as simple as you want.
" h( g8 |; H1 G" e
. H0 w6 a2 W4 g0 zThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.& K$ Z9 [. a, s4 l- \9 s, w, U
5 Q- k0 B: a2 D( K, q9 `5 q Part 1 of blocking CE
1 L+ \! o F$ A4 N
8 N" m; X( l* N% `/ K I8 D5 }+ cIn this tutorial I will show you how to change the Head of Mark flyff.' f# V/ g; p& p$ g, N
The current Head Mark is well known, 5E, which results as a string ('^').
7 W Y b& Y% n* P: w9 Y' j( z1 C: a
! \$ j0 C+ Z3 ?4 KFor this we go to the World (Project) and looking at the Buffer.h after thistext
# d9 i& I: Y. I- p/ A9 yQuote:
2 L# H2 |, p4 A4 k ^# Define HEADER MARK '^' / / Normal messageheader; K- c0 {- g/ g5 ]: [) l3 \
# Define SYSHEADERMARK '%' / / System message header
+ `2 l8 ?$ s; I* YWhat the Sysheadmark is looking for is not even the top 5E., @1 C0 X i U8 y% ?
Change this and it makes the CE Not work on server.
/ X, _ J* f1 m9 S8 O1 t! C
. H; I* k( z& rThen Tom's anti-hack is no longer useful.
" T& R1 z- r1 l& _' F6 J
) p _% `: v3 y6 c! O- [LG Sedrika
Part 2 of blocking CE 7 k. X1 f4 y6 _. j5 t- @1 F( z9 M# j2 R
) u9 C/ |3 L) k) a0 V5 Y
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.
5 C/ @! y( K8 PWhat does this have an advantage?, a0 A7 w9 z# }4 ~/ J$ K- N
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
5 K H6 o* V% f" b) w' K0 o9 M8 n6 I) v# P2 A4 m' X- g0 E
3 @& r& G, U' J- K& o& m1 AFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.: t/ @3 z( Y5 x7 h
6 v2 \. [- G @( a" P" d3 V- S
Then search for the following content in HwOption.cpp
2 r; |: { L: ~' q1 y! D" X$ l* L- v# `& z2 W; t) V
! ]( C/ u" }6 O* J# {6 hif (scan.Token == _T ("ip"))
9 h1 h( f4 H2 h) G{
0 |# n5 r8 e0 e, L6 ^( mscan.GetTokenEx ();
7 _9 t3 n7 `4 I) I4 _) b# Estrcpy (m_IPAddress scan.Token);, i# ]+ v2 Y: _/ Z5 V h: z. z
}
* S# }/ `6 H, Q( D8 H* qand turn it into this:
9 U0 R8 H$ J, J) q5 qQuote:7 ~3 a, c1 ?' E/ x
if (scan.Token == _T ("ip"))4 P. m$ h% u( b8 j
{0 z8 P1 t8 m! ?
/ / Scan.GetTokenEx ();% U# q) M; R" q7 I( ?2 C
/ / Strcpy (m_IPAddress, scan.Token);
- d: |- k3 t! ?}7 k" _$ @; K% C- M
And you created the solution.2 p& z" s$ C( b" {5 C
/ p4 j1 Z# x" H7 s w
/ O7 V/ U# d8 c }' b7 T; L: gThen read the Neuz not the IP from the INI anymore. even if put in it# k& J1 Q9 w& i! f, F5 v
5 {- ~0 { _" K; _
Max skill's
/ ]9 R( o3 c7 e; o2 [4 B1 n L( K
# J! v' D8 d" jAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc 6 {3 S& P5 k' X5 h8 d+ S5 p
: s K# s! F8 [$ a. _' l
With the TUT can provide the remedy it) U/ S" q8 v: I4 P/ E
+ N P+ z$ h! s9 |! o) j3 X
# 1 opens the file SkillInfluence.h! ^! z* p {7 h$ O8 g8 V
# 2 Search% [% z f; |# P$ P- J
Code:
5 x; c7 ? H5 F0 O7 R
7 W- I2 B% P3 m, }- X% r) Y$ y# Define MAX_SKILLBUFF_COUNT 14$ z3 d ]" O7 h
- h s+ v( H( x U: O; N5 [9 v# 3 Change the 14 to your number (eg 21) and save it from
1 A# {) b2 N; Q: k$ U; e8 n4 V# 4 compilation and ready
9 Q0 e3 L- x2 f/ I- n! b9 q3 w& t/ _
8 \$ L# C* x3 _% q, ]& jI 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:
# C! @2 L! O9 p5 L$ G7 H
6 r5 V/ D- p5 O6 Ydennisdra
6 V: n9 R& A$ w.Crasy
2 a, p2 y( U0 X& n©ross
1 `2 {1 C8 s! ^' A- [ HSedrika3 K3 ^) Z3 A x7 E0 n8 ~! ~" K8 o
- P6 p6 f$ ]5 H0 Z. R" _- ~- feverything 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! 8 a. b! [4 R8 Q9 W5 ^
1 e4 W- Q0 o& }# a" X- z1 zP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
4 Q/ L- d; N6 n( ?2 l8 t5 G* z4 z! @( U6 o j, V6 r/ V
& h: M( p- _# [0 ?
Update 1:
how to turn off "Profiler" in worldserver.exe
3 Y8 I6 B) |* m* ?9 {
% [( o7 @* M9 h3 u% d6 d7 F; \" h' V3 V9 O" Y
in VersionCommon.h of Worldserver Solution
& z% Q2 K# H7 M. | b% K" T) Z1 rLook for, N; P! M1 N- Y" i) X' U6 ?* l
: E9 A2 a$ @; K* U/ P! I#define __PROFILE_RUN! K0 P5 h8 U# r$ u2 Z k
* t* Y& X7 H3 p# K; N# n2 dcomment it or simply
; a+ q7 @+ {8 H l& ]4 m% j# G9 U. z5 T9 ?. |& ]6 d$ C
//#define __PROFILE_RUN
, U3 r5 v( C( g; [4 k6 u% O3 v [+ j9 P
9 v5 \$ c/ K# f0 a3 ncredits 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投寄。谢谢。我添加更多的很快如果你有病加太
% ^. M7 ]1 S8 I3 V# l |