|
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 1 ~( d+ C/ u3 C2 N, ^' ]
change level without Rebirth
9 J6 k D4 J" N7 w. e8 ]5 d* O/ |' z
; b3 ]1 q% S9 c9 q4 _Now, let us begin.7 E: X! F/ V3 o+ K1 i- Y8 k; z2 Z
2 _# A" ~+ _) w. y9 X w' GRequirements:$ l O& b& X& \) K B% Z
Source% @& E, j0 s, C. F5 F
Notepad / Editor$ ]/ z5 }0 @6 U2 I7 ~
% k( Q' k& S0 T) i/ }/ / Tips by Sedrika
9 K: L: {) |; P' g* [$ {) \3 H9 W, e& {; P- ], [% E
It is up to you how you do it ^ ^
" H; H) ~0 Z; l4 x1 e2 y
2 d2 b; @( J( l5 o% k4 h& m# UGo into your source folder and open the definejob.h J4 V, |& e1 s4 b# o# G
Search there for:3 f% |% }6 O, ]- ^9 J: z# Y
! ?% V/ `2 r H. M#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
9 y+ Q" `- i7 D8 |#define MAX_LEGEND_LEVEL 129+ P; w5 t/ \+ }5 f; Y" r
#define MAX_MONSTER_LEVEL 160: L/ D% @# x7 w. G
#else // 15Â÷ è÷¾î·Î ·1o§è®àå; w8 N8 ~' V1 {& g
#define MAX_LEGEND_LEVEL 1218 q. ~( g) s3 E, Y& K& _& S, l! K
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
0 N) l* U( U+ a/ |
0 b) } |/ J* b; }9 Z0 \ K7 C1 K# }& d u; A3 |$ z8 g, b% ?
Red: Player Max. Level- F* j9 v) H5 `: i* c6 O
Green: Monster Max. Level
% ^ l, _4 l9 B; O. O3 ~) o9 ~: r; Y; b- M
These changes as simple as you want., I. c5 h- |. U! V
5 N; k" k( \2 a% B( A( N3 p
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
, a% b( g4 V: \9 H2 h
0 a+ \' e2 O$ `) ~, b9 r Part 1 of blocking CE 7 l4 E7 @& `, `" R' T
" e! t/ j! C3 [) ~- BIn this tutorial I will show you how to change the Head of Mark flyff.4 C/ E4 N$ [2 x
The current Head Mark is well known, 5E, which results as a string ('^').
2 j) Y6 K2 n+ j5 G6 S' ]8 e7 u1 ^; @6 w: a8 j
For this we go to the World (Project) and looking at the Buffer.h after thistext3 ^$ E9 M6 j7 _: m
Quote:0 r0 n# z5 t) L+ S0 c7 I( C2 T
# Define HEADER MARK '^' / / Normal messageheader; g7 }3 r3 @% x/ |* W1 B
# Define SYSHEADERMARK '%' / / System message header
; d" o" u1 J5 ?3 f2 bWhat the Sysheadmark is looking for is not even the top 5E.
1 ^- n7 h$ G6 m1 w" hChange this and it makes the CE Not work on server.+ l' }+ G# L2 y: t$ W" _/ R! G
7 a; ?; d, S7 S8 d8 m6 T$ o
Then Tom's anti-hack is no longer useful.1 t# J- m$ N. x% o: h; e
! O e! _- a. k, w2 x/ @# I
LG Sedrika Part 2 of blocking CE
6 r" s n# |( k3 t5 }# Y E& ?
) f$ A; F2 _2 \% y) fIn 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. 6 X K+ f. H, A" n5 F4 E
What does this have an advantage?5 {8 M% e! S. [* }* G4 R
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
; N: S+ v( @7 r' G% e3 x9 Q9 p
- j {8 g! S% B
h& h! Y& G( Q: pFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.2 Z8 l9 `) P7 d& L8 }
) y0 ]6 T# h8 O4 }
Then search for the following content in HwOption.cpp
' b; R* [% m7 I/ q3 W1 k/ p7 ^5 Q2 b+ W
3 h. p* Q: g" {$ Y% R }' o) z
if (scan.Token == _T ("ip")): r# k2 j3 v7 R9 c3 p( ?* v8 l* _
{
5 o0 k2 F# x8 S- [0 R( Sscan.GetTokenEx ();. D" O9 R W5 Q
strcpy (m_IPAddress scan.Token); R3 r/ G0 h6 L
}: ]: d$ X( P/ m0 G% n0 @. q$ {
and turn it into this:
! s3 m/ T+ \6 ?% C) R4 j3 ^Quote:- X" s! J- n( V
if (scan.Token == _T ("ip"))+ u6 z. q A$ D$ U+ M( |+ d. }. n
{: A) r. ?, \) D- ^* s2 }5 b
/ / Scan.GetTokenEx ();
% J' r- p4 d, r2 F) \9 i# \, P( P/ / Strcpy (m_IPAddress, scan.Token);
' Z7 i7 ]" B. _7 p8 T9 r6 b}
y: T; a8 w0 V2 `And you created the solution.* V: q/ M0 @* Z
1 w. C9 b( W" v/ H$ o$ _4 ]1 Q, o; Z- c* z6 ^
Then read the Neuz not the IP from the INI anymore. even if put in it
3 W$ W4 i# m$ C, d6 z3 V
0 v# I) V" {! X% J- P
Max skill's 0 q, M, e/ z6 Q8 w f
, I4 t& \! h4 LAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc $ O- h( r$ Z2 ?" s
9 k# {' t0 [( y( E) e7 _& \7 Y
With the TUT can provide the remedy it8 g+ _ s7 ]" X( {8 G
9 X. o$ W; ]8 @
# 1 opens the file SkillInfluence.h
D* L2 P$ Q- |# 2 Search c2 F/ u' R. s q2 _+ C0 N
Code:
* S0 d( a, \1 s* {! `
2 y' e5 q: u" v& U3 _& E9 {# Define MAX_SKILLBUFF_COUNT 14
s: N6 V! [7 x3 B4 b4 f: g3 c# a' W( Q6 `: D3 z# d
# 3 Change the 14 to your number (eg 21) and save it from
. t7 h) o1 C4 u3 ]% [6 A# 4 compilation and ready
# ]1 M* }2 @$ J1 Q; c! v0 Q
3 X2 N; h0 @6 `3 }/ [' O
3 v4 M' o7 {/ W; j: Z8 m5 m. U1 ~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:8 k& D0 s! \4 V: \5 A
0 P/ r" k# _7 R k$ n' Y, s! |6 ~
dennisdra/ ]6 X* R+ u8 `" X) G
.Crasy
# L5 F( k! {9 z©ross3 y- Z: F3 y$ i: e; R
Sedrika1 | H* u1 a3 j
, i8 x: ^6 e. [) L- eeverything 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 x8 p$ b v' f- g& N* G
" ~$ X6 Z( S7 ~
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less2 O; K) k' j5 ?: ^
f4 L) Z3 w9 U6 j- k% y* C
( i4 u# s3 D0 w
Update 1: how to turn off "Profiler" in worldserver.exe
1 N, l0 Y. x% D6 t/ _1 I* g' f4 l- z; |6 P2 k, L$ d# T4 h+ _
# ^/ |0 Y, E/ Kin VersionCommon.h of Worldserver Solution
! E% z3 d4 ]5 F: a" x$ y. J& tLook for
/ {7 R" Z& I) P+ A0 K( T
& N$ _( [3 V. a4 X5 @#define __PROFILE_RUN
- Q1 v9 t0 O7 W7 e8 r) {7 {0 n3 R% L; k d2 D" b
comment it or simply+ X7 H- E4 O: ?, L) ^4 p1 s, j
% u6 G- n6 j- e# O//#define __PROFILE_RUN
! |; D- d# A; Y$ N% c
& h$ e$ k8 L4 w5 [3 E; S' q
3 f; O( Q; J" T2 ccredits 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投寄。谢谢。我添加更多的很快如果你有病加太 6 u; H0 l3 }0 g" Z# Z- `
|