|
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 ( w" h( V/ I8 _9 p4 q9 t0 E X
change level without Rebirth
/ z! Y9 p- k `& J: M
3 v. g% Q4 s2 f. K& CNow, let us begin.7 o# n" G, \# D1 R& M: G
; B/ G0 ^( n2 O; J9 s2 B. HRequirements:
2 l! A/ ^& @9 h/ y& F$ s+ j3 eSource
/ v4 [' w) L4 z; qNotepad / Editor7 }& Z/ l% e" N. t
( K6 g2 r" b4 q7 c* Z; t0 o. }/ / Tips by Sedrika
# `3 L4 ~1 a; h
, P$ {3 E0 Y* o, e% WIt is up to you how you do it ^ ^+ R3 u5 k* P$ F8 @2 s% A4 R
1 s: L: ^* w) n" YGo into your source folder and open the definejob.h
1 t T; B* |8 B% l4 m3 {Search there for:
$ W. [+ a) }; f* ?+ @8 R% u& @1 C0 x- n& |8 {: Q
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
+ K: p4 e- F l# Z4 q! O% N#define MAX_LEGEND_LEVEL 129% s: h* T8 E+ \
#define MAX_MONSTER_LEVEL 160
. w p' Z4 u, [/ Z% X- J& N7 D9 e9 y#else // 15Â÷ è÷¾î·Î ·1o§è®àå% a: P+ n9 G# L6 J( K- |+ [
#define MAX_LEGEND_LEVEL 121
' `( X: L. |4 i D/ k2 }" `#endif // 15Â÷ è÷¾î·Î ·1o§è®àå * i a" w$ G4 u7 R4 r( Z8 ?
5 r1 C' s5 u4 L
5 K5 b2 i# @1 f& Z! BRed: Player Max. Level& |3 l+ _) w' |2 Z$ N
Green: Monster Max. Level; e# K$ v1 |7 x/ m% d# \
. V* q3 W, U6 P5 R( `: u" w
These changes as simple as you want.4 p9 u3 x8 W9 j6 T
' y1 k0 Z' t" i3 s% YThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.* ]' b d. K- |7 ]3 f6 q9 L
k$ D+ Z% E& w$ Q' P; @6 g
Part 1 of blocking CE
9 p& c4 ?5 Q. N: T( s
& C' @% x* f2 F6 _( bIn this tutorial I will show you how to change the Head of Mark flyff.
* O# `1 K9 t+ [0 K. P% LThe current Head Mark is well known, 5E, which results as a string ('^').: f, j: ^8 r! [# P/ Q' q
7 f2 G2 _) Q7 ]9 N# V, `For this we go to the World (Project) and looking at the Buffer.h after thistext0 A5 d! ~$ m9 Y h7 O% f4 C
Quote:
( I/ h& _+ }' F# N: n4 |2 c4 p. b# Define HEADER MARK '^' / / Normal messageheader2 Y) S* k* s, |6 W" ]
# Define SYSHEADERMARK '%' / / System message header
5 ~4 v: o, s6 X7 P8 I+ Q* x4 ZWhat the Sysheadmark is looking for is not even the top 5E., i3 }3 D5 D7 M. I) N
Change this and it makes the CE Not work on server." j+ b: J- B* { E5 E; Z$ b
7 z5 R- w' v4 ^' N' \ n; OThen Tom's anti-hack is no longer useful.+ J; s; v% f) w/ \2 F
7 u0 E3 J1 @- ^, W
LG Sedrika
Part 2 of blocking CE 8 V) M( J% c1 T6 o
4 q) V+ N9 n, i- \7 XIn 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.
/ R1 O- E3 `# O2 DWhat does this have an advantage?0 P/ u0 O- d: y4 h
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
* g7 }3 L$ ?6 B9 `2 C! W" k6 S" \, p j5 x9 p$ l* D3 x
& {2 g) d+ I9 v" r- N* s6 V
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.: w3 s8 _. g; |0 R+ ~
. B0 _8 z9 {% @1 G: E0 @" z$ G o4 n
Then search for the following content in HwOption.cpp
, }! M. i' ~' h3 T0 ]6 W: w3 b; ]' n1 f. Q
* x4 x8 c0 h6 F/ d& {( U0 v1 ^if (scan.Token == _T ("ip"))
, U2 f% o! U) @{
* T5 Q/ q$ ^* {9 pscan.GetTokenEx ();
^" b1 I! F* Astrcpy (m_IPAddress scan.Token);
) d4 {" { ]* d9 V}- K( A( d6 N" k! }, x2 {/ F2 q
and turn it into this:1 B, v" v. H* `" \0 P/ y* b
Quote:
. b' a2 p/ w: xif (scan.Token == _T ("ip"))
. n, A% O! Y# [) j5 k1 v% D2 M# S{
. D& ~; V' _9 ~8 x6 v0 ~* x0 F/ / Scan.GetTokenEx ();
( X+ @; G& c0 D# J' I1 F/ g+ U s/ / Strcpy (m_IPAddress, scan.Token);
7 ~ {3 f* H3 Y! f1 J9 k, ~}* w/ J5 S0 e# ?' h9 [4 Y
And you created the solution.
+ v7 C1 j: i, I) ^' K* y" U& l8 } O
0 L9 P9 c w& M) C5 k* ^8 S0 N7 v* S) W) P8 N9 ~
Then read the Neuz not the IP from the INI anymore. even if put in it* V3 V% d# J! X/ v8 [! v
5 s8 a# W- @ o7 | Max skill's # f7 E) {& p5 A9 y
: s3 L5 J" _+ Q7 iAll 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& A x7 W X& w1 r. ~/ _0 m2 t3 o% ^; U. y* p
With the TUT can provide the remedy it' W8 Z- Y! b2 m6 I, t" r1 y; J3 V3 S
" v( T8 o( `( a9 [& z
# 1 opens the file SkillInfluence.h0 E/ C* V/ z' u5 K# m3 U8 L) m1 W
# 2 Search. a6 Z; A# I; [, @2 h" z
Code:" o6 u& ]0 L4 v( K Y5 |
0 ^ ]+ ~1 X! n/ K# Define MAX_SKILLBUFF_COUNT 14/ I k, P) q# \% N
w( Q: ]" e5 M5 a( A1 c/ }# 3 Change the 14 to your number (eg 21) and save it from
( [6 p3 b% M' Q# h# 4 compilation and ready& z; f8 y- S8 f* _$ k! c: [5 c
0 K& o) ^& B! r9 Z% g' l1 |& G
. J( X3 d8 k1 n3 ?; L8 \
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:
# k1 a' ]% R% \/ n3 C! U8 A8 M/ V0 k2 ]) W$ R
dennisdra, Q/ P, x4 f- O) s: N
.Crasy
% q& ~ I" N6 n9 l: t2 \©ross, Z: x3 J# H5 E0 R. z) p
Sedrika; C' Q9 `" m1 Y
: i* @! `( @5 V% | o, e
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! : Q* V0 }9 V9 h4 K/ Q+ s/ L
! p: W9 G% ]- L# w
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less% D* E x' y1 F) n5 X
5 s1 f' }6 Q2 f' w1 h/ d1 }# Q2 c& Y7 S/ S: {
Update 1: how to turn off "Profiler" in worldserver.exe 9 ~( ?+ ~# }$ t: Y; H3 R
1 D" j) q! I" C# n7 S% _& C
- ?0 Y& F5 E# [ @/ P Tin VersionCommon.h of Worldserver Solution( B" a3 h: S5 |* ~
Look for
5 d5 l0 `. ? @0 r. {. ^1 {, ~# ~. U" k8 Z" A: j
#define __PROFILE_RUN
" ? ]5 ?9 A5 R& X/ ~' {( S0 C
: u( s7 P7 C! O/ u6 X" V: |comment it or simply' P1 U! z* P. x! U. |; @
7 y! S/ j$ \+ J( V' h/ p
//#define __PROFILE_RUN 2 V+ H) a( ?" _: U t% ^# F
" c3 r( K5 w2 t" C0 ?* O& P+ k) r+ Q. y% B# G
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投寄。谢谢。我添加更多的很快如果你有病加太 & f. ]0 t; M h5 E9 P. ]
|