|
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
# u9 V! G* j/ I F2 @. c; _# @change level without Rebirth/ _3 |( S. w" Z. K4 G: Y; p9 b
! ~. d, N: a6 P" X
Now, let us begin.2 J$ n' z8 N, _
+ Z) m* {$ u& V: c* ]6 Q: ~Requirements:
- u' Q0 T: @5 P: }Source) m+ A$ Z2 {8 `" v5 E4 [9 @
Notepad / Editor$ y* h+ x5 ?+ r: ]6 O6 N
3 U- Z( I, ^# `9 s
/ / Tips by Sedrika
+ I+ H8 w N4 r& s2 Z D |. ^; c9 s6 H3 k( W8 b) d
It is up to you how you do it ^ ^
* S1 s6 z1 R( z7 e& ^- f# @
' C, y; G4 [0 j( PGo into your source folder and open the definejob.h
# v3 k4 U5 @6 G8 d, BSearch there for:
9 z+ O: e, Z$ T$ c- J+ @7 u
5 R9 m- B3 i O5 O4 j+ y#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå3 {2 A2 a/ N3 c! t; a r9 L* C
#define MAX_LEGEND_LEVEL 129
! w1 F+ S' K# G$ ^#define MAX_MONSTER_LEVEL 160$ P% {4 l* G" W
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
0 y5 [4 a7 m/ C#define MAX_LEGEND_LEVEL 121
" T" B& T* G: u( Y#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
! {0 ^) j3 P* q/ C. y& S$ n+ a8 f
/ h# g# n0 |& B7 u9 ?3 c
6 m* Q5 e# T0 Y ~ y* b, K; LRed: Player Max. Level) F2 l" ^# V1 d& k0 o8 Y
Green: Monster Max. Level5 M/ s! R8 }4 v) o3 B3 n
; r# K0 R9 B; F' F3 T+ I& p& @/ H
These changes as simple as you want.: O4 \$ G# I0 [
- `0 X9 s8 q' w
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
; I- E. c0 v7 u
9 D0 D) W8 V* l, r, ?. p3 {
Part 1 of blocking CE 4 X+ y% P+ V4 G4 o+ j0 `
# o7 ]2 Z. \' c8 I7 O+ k9 {7 L% ]
In this tutorial I will show you how to change the Head of Mark flyff.
, E. p7 p0 O; R+ g5 ]The current Head Mark is well known, 5E, which results as a string ('^').5 D) [. y3 A0 ?' f0 X$ y$ V: ~$ ~
: G' a$ A9 ]" J" d8 ?
For this we go to the World (Project) and looking at the Buffer.h after thistext8 ^3 I& `+ a3 D$ v
Quote:
; ]3 U# A+ V, Q# S8 l u# Define HEADER MARK '^' / / Normal messageheader- m; M% c9 y" Q. c
# Define SYSHEADERMARK '%' / / System message header
. M. L' P9 } U; [* Z' H2 y1 A bWhat the Sysheadmark is looking for is not even the top 5E.1 X! ~* x0 Q; `* `% I: Y, o) ~
Change this and it makes the CE Not work on server.1 D& f; n6 V2 {0 C
7 W! X( i- q: V: g1 _- A( l8 \$ B
Then Tom's anti-hack is no longer useful.
+ d$ p6 b$ O3 Y9 w$ U% m9 t0 N6 W
LG Sedrika Part 2 of blocking CE
8 c$ Q* c3 K' f
6 r0 j/ Y2 K8 n, l0 [ |/ b3 LIn 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.
$ _- ], M. [$ `) e: `6 ?What does this have an advantage?- Q% S& ^" \$ C$ c" s, W
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
( ]* [0 ^- x: K3 ?& i6 {% ~
, L: n2 _, p8 A6 h5 H$ J( N: X0 J) [& o3 G4 B3 t' L, d
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.; c- a3 f/ `. m
& ^# l/ t2 r3 z) T
Then search for the following content in HwOption.cpp 6 R- y% Y2 f" L( Z8 K% E7 w
$ x: k: H2 N7 y
6 J, s. Y& C2 Q7 W3 L4 n8 U# _if (scan.Token == _T ("ip"))
% L0 {+ Q' ?# ^& y4 O) H{
* T C+ c1 P9 G4 I$ {7 cscan.GetTokenEx ();
- a: B6 x1 q. K( M1 P6 ^& H6 Sstrcpy (m_IPAddress scan.Token);% g# t! [9 x: G D1 i* W
}
. I O# s( ^: f4 S& X$ zand turn it into this:: Q+ I6 h3 x$ B( ]3 R6 Y7 d, Q
Quote:5 x' X* T+ L2 s4 \; p# t
if (scan.Token == _T ("ip"))' X+ r! j3 z; O
{6 R! f. |9 S3 i# L$ W
/ / Scan.GetTokenEx ();
0 O1 n2 W( Y1 h$ t/ / Strcpy (m_IPAddress, scan.Token);4 h% L: a) y& v Y, Q! @
}
. J1 K1 V: {. Y* X6 b+ c+ yAnd you created the solution.
7 T0 I4 T' y2 \% N, R
( u$ G ?( Q# L& j
! r0 j5 `& V+ l5 y6 L& u8 WThen read the Neuz not the IP from the INI anymore. even if put in it# I$ Q1 Z3 J/ ] d# i' l
5 u6 f w0 L' r" r$ j3 ]
Max skill's
% @. z# c5 E; u# h- U1 A7 g/ w$ q! B7 Q) f [& D8 j
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 ' f. h# ` M+ t6 f5 Z) A& `
3 K5 ?& l, _4 y8 e. W s
With the TUT can provide the remedy it
* w+ d) N; Q8 z3 E$ R \9 r+ ^+ D% c1 x9 R( x. a- j
# 1 opens the file SkillInfluence.h; L9 v. n7 ` X0 C& ~2 w. c& r
# 2 Search
' U7 d/ p2 }+ j- s/ }8 T# ~Code:, s5 m: v, e! \1 r2 K
2 C. h+ u4 D2 k; X+ Y
# Define MAX_SKILLBUFF_COUNT 14- W* z1 c# y( j0 I
3 M( @- M' x- d: {8 m2 u8 j- g
# 3 Change the 14 to your number (eg 21) and save it from
4 E9 I0 }+ w6 o- s+ Y, n# 4 compilation and ready
4 c8 O/ C, U! ]. a1 S o! z# ^
) [% i, }$ n S) h# P- D. G; O2 }& D6 O. U- w0 |) P) J9 `
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:% D& |- }5 s) |9 ~! @/ a2 J0 ~
9 s: K' W+ r& s$ v- |. Ldennisdra
, m. f- p# {2 m5 V.Crasy2 W+ W* X4 w2 x
©ross
8 y* y0 t4 `/ s" C1 w3 Y3 X+ D* iSedrika" Y- o4 P- I2 ?$ d
) l* w/ \& |# e6 o" W( |
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!
T5 ?, S7 \& N0 d% M! j
- P3 o/ o/ X$ C8 ?9 v0 HP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less7 R! {$ I' N7 R1 P
3 A2 P* {; A) P% W% H
* ~7 |( m4 a( y+ _% Y9 ~
Update 1:
how to turn off "Profiler" in worldserver.exe
1 h- [% g0 L W; Z
4 i- P+ y8 K/ O
; S$ R$ d2 w6 ain VersionCommon.h of Worldserver Solution
# f( S. b, l4 o& xLook for. y! Q' e. U5 _) f, d5 r
, E! m- { C- i; I2 n3 \( V
#define __PROFILE_RUN
I6 \, ^0 d- f" a9 {2 H1 A, ]
f) w h) s" Z4 Ocomment it or simply
_: O! t# S" j4 @# V: J$ ?9 p- G9 |& B- r0 @# _9 ?8 `+ E0 _
//#define __PROFILE_RUN 5 v/ F/ {7 k2 _9 J7 F; D
/ k. b5 Q3 z$ W" b0 a; D; o/ R6 m1 G! }! w3 E
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投寄。谢谢。我添加更多的很快如果你有病加太 - j2 ^3 [. f, l0 y6 s0 S2 D* h6 G
|