|
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 4 O Y5 m1 P- z3 ]# S
change level without Rebirth' k2 u7 ~6 o/ L6 [ M, I
8 c. a: J0 I3 C" }- C* MNow, let us begin.
( p. l6 Z) h. x# Q
9 s/ H- ]' k. `+ lRequirements:' ^% l3 G' p1 s! ^5 u0 O
Source
0 G. o2 T3 n3 j/ I# nNotepad / Editor; m x3 K% G; z" g. q# I3 ]5 }
6 ?) q ^+ w& }/ / Tips by Sedrika
$ _1 @+ U& I/ m( \
/ l- w: [: }1 v0 kIt is up to you how you do it ^ ^, u) E9 E9 \/ _- u1 L
% I( d8 o) O: F; ?' a5 |
Go into your source folder and open the definejob.h% T1 g. o+ \) {
Search there for:
$ A! M2 C0 P% D& l0 ]0 K
1 R3 K8 a$ ], x2 H4 ]6 j# h#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
; N' |7 Z5 A5 l0 w+ |#define MAX_LEGEND_LEVEL 129
, A4 q* R5 q% }# t#define MAX_MONSTER_LEVEL 1601 s4 k ~0 ?. L5 Q+ m' u
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
! }% ]1 H7 d/ ?3 F9 h1 z, ]+ E( I#define MAX_LEGEND_LEVEL 121
4 s9 P2 L5 N6 g& P- ?0 S# I; m5 }#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
$ |$ K* T# b/ ~9 a, j3 k: G8 h2 E" w! `" Z( d$ ]3 @
G4 Z2 S# P, s' ?" b
Red: Player Max. Level% r2 [7 L {, O) z
Green: Monster Max. Level, V4 y2 A4 i' ?: w6 O2 W6 Y
- c+ C' L8 P) S, s1 ~
These changes as simple as you want.
2 U$ J. a: Y/ n' D ^7 i0 n- k0 Z- F7 \4 c' b( ?9 z! C* G
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
" ?) Y# }# u" Q, K6 `- Y7 b7 p" H& ]: Y$ y
Part 1 of blocking CE . K0 M0 v1 G! Z4 E3 d
) p1 }+ a# g& I8 x0 `3 R
In this tutorial I will show you how to change the Head of Mark flyff.
7 D2 e: u u% a: l+ T6 B! Y8 x6 ^The current Head Mark is well known, 5E, which results as a string ('^').1 p5 R0 H5 _4 E( H3 E4 b8 \
4 l8 A+ l8 ?- E1 X) L
For this we go to the World (Project) and looking at the Buffer.h after thistext
6 Q' b5 z' @0 J ~Quote:( W: D) O: F: V S* }" J8 u( G
# Define HEADER MARK '^' / / Normal messageheader
2 b2 U! e4 U% ~8 h/ ?& M! ] X# Define SYSHEADERMARK '%' / / System message header
; T+ z& L9 k8 C3 E; U$ OWhat the Sysheadmark is looking for is not even the top 5E.- X+ F+ E7 [$ Z3 U' \. ]
Change this and it makes the CE Not work on server.% g1 P& J3 @0 _8 E- _
% c1 m: C; p; u
Then Tom's anti-hack is no longer useful.: g$ ]; s3 U7 c0 `
. X4 j9 Q( J& G8 m
LG Sedrika Part 2 of blocking CE ( e$ D1 B5 _% P! N
# h) R! t4 a% E X. d, |
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.
/ N9 Z9 l3 q3 \' y; I/ R v$ SWhat does this have an advantage?- C$ z5 C$ n# T: u% L& X$ z i. q0 w3 ~
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 2 G4 k7 Q7 \1 _7 l# ~9 {& c3 p
3 i7 R4 D( {) \1 R" b+ r
0 U" ^; \0 d: q: q! C: G
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.8 W% a* K+ [9 t, T8 C
5 b ]' J8 c, z2 s+ S/ C4 h+ b% t" B$ MThen search for the following content in HwOption.cpp
% W4 Q3 q6 A9 J" }& C* \
/ L0 P/ |% O; T& r3 a3 G7 X9 T. k. ^ q8 s$ h
if (scan.Token == _T ("ip"))# ?" }* Q. c7 W7 X" B* C! N
{7 G. H. c* M& y9 Y1 s0 c
scan.GetTokenEx ();
1 J) P) c1 J" ~! _' estrcpy (m_IPAddress scan.Token);
8 L3 d4 ^" w/ k1 {# m* a( |5 e}- L X0 ?9 {3 J D+ l) }$ {
and turn it into this:. Z6 x4 h# ~/ C0 p- V! F
Quote:; m% m! q# U* z& b% Q4 E% n0 h
if (scan.Token == _T ("ip"))3 l9 \: l. t, s9 A5 L- P
{
2 Q4 w* ^0 g" K, z/ / Scan.GetTokenEx ();
& r4 D1 d6 P# a) H2 V: Q/ / Strcpy (m_IPAddress, scan.Token);4 V$ S* M! Y5 N
}
5 V- ]4 J+ J( a7 oAnd you created the solution.
9 n) L4 S% D4 B7 H0 ?0 G- p' f, F+ a) B# S4 ]* @
w6 g: i l. X% U" g9 U; uThen read the Neuz not the IP from the INI anymore. even if put in it
9 i: n8 O! R+ Z# b8 {% R
9 @2 G) ]& B1 q+ J8 B Max skill's
$ m- q+ o& k/ B( Z- I* G# x4 D, m, w
4 @: u' o4 R* E0 d2 C, w# s8 GAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc
: y- k* q7 U. M# |( {- a. U) F) d1 c) Q1 `4 N6 b0 \
With the TUT can provide the remedy it
$ N( x5 Z9 r/ P9 l, p5 ^$ w5 [0 S9 A$ K3 i3 J9 u
# 1 opens the file SkillInfluence.h
8 o# k. ^" }. F9 _7 t# 2 Search
4 g% R R8 W9 f9 i% g% OCode:9 L; S* G1 l6 b3 B
! X8 V. [$ ~" m, f
# Define MAX_SKILLBUFF_COUNT 14/ M ~4 Q3 N2 F# \8 X2 ~
4 { z( }& j0 V: `. c
# 3 Change the 14 to your number (eg 21) and save it from
2 N' A$ p5 E1 j- e! [. U" R# 4 compilation and ready
% X# \+ H! q! _' R' t% t4 Y1 k. d/ A$ Y
. v0 z& V/ |6 w( d5 j, k
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:
, T- |: {- @3 J$ u; F' s+ w) @, z" Y5 U; Z9 {! X( u% u
dennisdra0 R8 J' Y; e8 L d m' E+ R& [
.Crasy" n: |' n6 i H& @$ j4 c8 J" y
©ross; v, p( D! F& l7 K. ^' R
Sedrika% S7 g1 X1 Q* w7 N- f
0 X9 K& E9 f& ~" e2 Zeverything 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!
. F: p! n; B( y1 o5 x- S/ G# k) \: D* p, D2 G8 @
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
0 R/ R% }) V2 |; c+ z0 Z! M- i8 D; o0 n! E# p
2 T" b& y. x+ E* c, g3 ]5 u" T
Update 1:
how to turn off "Profiler" in worldserver.exe 4 k6 Z$ |( h) ~1 g6 j
( Z( O: b3 K$ W8 n4 }4 x
* L5 O3 b* J1 \' a1 P0 e
in VersionCommon.h of Worldserver Solution
5 x1 i; v* R- X" ]0 b+ U1 ~- P! iLook for+ s( [; `+ k* Q) m
$ ^8 x. O" }" u
#define __PROFILE_RUN/ R) T( K0 R. ~
# i' N0 ^+ H f; H4 Acomment it or simply4 q% T6 e7 k7 Q' e' O* I9 K& n
7 R3 u [2 ]# m: y, z5 g0 U
//#define __PROFILE_RUN
; l" o: w' e5 J: p# ^+ F$ q
. Q. y! @9 Q% B3 U
! d: T( b! R2 Pcredits 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投寄。谢谢。我添加更多的很快如果你有病加太 3 Z7 [9 I/ `% t" d. [/ o6 Y! R
|