|
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
6 Y( _; ?/ Q* r) C% @change level without Rebirth
1 t1 [) O5 l* K' W( o+ p: \# {0 o* k, T* |
Now, let us begin.
* Z' c7 F9 l4 Z8 K: @. J" c( s9 y# G1 c
Requirements:
& i2 K* W5 z8 b$ j. USource# V, K+ y# `# J" D7 l
Notepad / Editor
& q3 ]* a( l0 e1 K6 G8 X
& N4 x4 b/ o; e/ / Tips by Sedrika2 }& F/ q% t- T/ B
% x, {4 D9 B" C( A: YIt is up to you how you do it ^ ^
+ Y2 P S1 W( ]$ @$ E- j( }0 u( j3 t. ?; [' ~+ V
Go into your source folder and open the definejob.h; e+ w- f. v* d8 [, I) |
Search there for:! G& L5 I( E/ I/ {. Y' H
2 K3 M3 g4 a2 a+ R0 B" x0 W6 L' _#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
6 Z2 k( _% ^" |: Z) y#define MAX_LEGEND_LEVEL 129
" W/ P3 Q% ], d2 ~#define MAX_MONSTER_LEVEL 160$ m- R8 @5 ]* J0 k$ e+ k% S
#else // 15Â÷ è÷¾î·Î ·1o§è®àå( @5 h5 r- L: Y8 W+ T6 B& H# o
#define MAX_LEGEND_LEVEL 121
6 _; x+ r! _( ^4 O# C( }% R#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
2 z& Q0 O2 J" p2 j" K3 s, o, I
1 r/ A) V9 Q: n n7 }( K6 u, ^' N7 N% `* }
Red: Player Max. Level6 Z5 }% `+ }+ q* I
Green: Monster Max. Level7 ]) y$ L9 n1 v/ F8 G- X# b
( t9 }1 X; |/ t& b% F7 C! V& J
These changes as simple as you want.
8 w& X4 {. ^. F' B; D
, [& V8 [6 j; mThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.# s I+ j; S. b# n- }- d
, h' I: {3 f2 ^+ }6 f6 K2 l. [
Part 1 of blocking CE 5 ^- ] F* F. a+ Y- l
# e8 H" I+ i7 c/ P; I# TIn this tutorial I will show you how to change the Head of Mark flyff.
1 {! l+ F/ V$ S1 k3 tThe current Head Mark is well known, 5E, which results as a string ('^').3 X6 U; L' `/ L- y
6 l/ u& C$ w5 v' X' p W
For this we go to the World (Project) and looking at the Buffer.h after thistext
2 U% u0 c! z' iQuote:
7 [. Z# q- E. P" }! c, Z* ]# Define HEADER MARK '^' / / Normal messageheader! ?, S) N8 }! N; N n. d& B+ O
# Define SYSHEADERMARK '%' / / System message header
# l+ d) {3 z# ^9 p: R F% aWhat the Sysheadmark is looking for is not even the top 5E.
& `9 ~5 E# }9 { F0 p! R# ]( AChange this and it makes the CE Not work on server.! n' n1 J; s8 v
2 K0 |- O5 b' f! j2 s. O( ]- N
Then Tom's anti-hack is no longer useful.
4 ]8 ~5 B3 L* o% y) e' M. z6 w8 U* ~2 X
LG Sedrika Part 2 of blocking CE
5 l3 L) ?& e- l* n9 r( u7 P* M( M. Y3 ?" X k
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.
$ a9 T" W# i5 ]2 J3 K. TWhat does this have an advantage?! k! [; z- f8 S3 L) F
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
- c7 G: y( e9 g- }, G9 |+ y$ N
, }: r$ ^/ G [2 T
' y% q% S. D* a4 q0 k" d6 b/ _First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
( d0 x" m! Q/ D7 G, y- f2 _9 l F! x$ _5 i! n
Then search for the following content in HwOption.cpp
& @( s) X* [/ D" s$ d. A# \
7 H% o7 q3 l; |( F! L4 a, x/ G! B! f7 ?$ Y
if (scan.Token == _T ("ip"))
* Y; K. \ ^. J* G2 X/ Z; f- }. e{
/ t" ]6 H q- v8 pscan.GetTokenEx ();5 g! ]0 _4 V# c- p8 {
strcpy (m_IPAddress scan.Token);
+ |5 t( Z( L7 `8 P: `6 |+ M}
$ Q# u( y) v% kand turn it into this:
& ]* F1 Z& @0 u4 g1 c' p4 t8 I: iQuote:$ A) @: A+ h: W0 k/ Z
if (scan.Token == _T ("ip"))
" z/ Z& O) w% D2 {8 l{
5 a8 L7 d7 l3 y, r" S/ / Scan.GetTokenEx ();
4 s& k6 m! q& d, i/ / Strcpy (m_IPAddress, scan.Token);
$ F6 ^% K$ I( g" f& s}8 N y5 ^# `+ V3 F
And you created the solution.* t# Z( O3 l4 z3 Q [1 s3 _( I
4 k, s9 u. Z/ z- i' \; {' [2 Z* z% | A8 X# s; e
Then read the Neuz not the IP from the INI anymore. even if put in it5 W4 x& c. |4 i: p5 y" W
; w& G" r1 p. Q+ z
Max skill's / K, I8 w- U' a( f+ I, P+ A
% q7 I0 _: i) O" J+ I% P1 x; }
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 4 _5 F7 n' k8 B' H' h2 V
8 Q- t: y2 I. z* u9 Z% \3 u
With the TUT can provide the remedy it
6 A" C9 _% {7 e# ?1 C- [
2 O5 ~+ u9 ~% B; C4 c* G9 P d# 1 opens the file SkillInfluence.h
1 u$ C5 B# S# h# 2 Search
! B' w2 K8 @- t& g# R9 DCode:
- n8 H9 H4 R# z& n C, t$ V4 A6 c& P& d: ~$ ]
# Define MAX_SKILLBUFF_COUNT 14! O) s0 \9 J( V
7 M/ K4 i# w+ F n: J6 S4 k, F/ [# 3 Change the 14 to your number (eg 21) and save it from
: s; o0 R2 N! u5 i8 H# 4 compilation and ready
. I" @! r/ e/ M1 G# O+ i% H+ [6 J+ D8 M; [" X6 y
- H I7 @0 z7 n
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:
" C4 O E f O& S; @; {' r$ [3 G+ L
dennisdra; e3 b, x1 \* G) v* h r
.Crasy
9 _' ~2 Y/ d2 V©ross
8 V) J" [4 J" T) A& P5 YSedrika
* x* H3 G$ J3 ?9 p- w. u+ q! j- k0 r. J; }3 U9 K Q
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!
. E; V* K, w' t. u" I
6 C2 M8 V1 A# G$ \P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less3 W( ?& l% o4 Z, a- N
% ]/ L7 O6 ~! h0 z: E
# b3 I6 ~' h! c) I' Z6 zUpdate 1: how to turn off "Profiler" in worldserver.exe
; E2 x; B/ G0 R/ G4 A: z
9 c8 S X% t6 ^( q! M2 w0 m0 R u1 L
in VersionCommon.h of Worldserver Solution* H* s5 t0 x2 F/ E- W5 g- X+ ]5 L; l5 w0 H
Look for
; X: g8 y2 S( h# m! X: m) G, d2 a7 B! Y
#define __PROFILE_RUN
1 ?9 ]; L* I4 z1 b$ \) s5 x4 C) @, Q4 p7 T$ U
comment it or simply
* @/ |( {) E2 v$ j0 P
7 X- r9 l1 x! w. }. t//#define __PROFILE_RUN ' v6 p+ x9 c+ e4 k( w% j+ o$ Z% G
8 q e6 {5 h8 f! e) I9 j
, n/ D" Z. P, J, J5 r L% E' g Ecredits 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投寄。谢谢。我添加更多的很快如果你有病加太 / j! v( j7 h7 r
|