|
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 c2 g4 o7 R1 M) ~# k% p) [- r
change level without Rebirth
0 a) N( a$ q# P1 N$ s* l6 X- o8 P
Now, let us begin.
2 r9 R. t |9 l8 n, q0 r, u7 r5 U; e& K( S# ^
Requirements:
% y7 m& g1 A$ f7 | Q7 lSource
% B* w# Q8 j( C7 UNotepad / Editor( z; m' P% @7 Y8 C! j
$ W! I6 I$ G: Y+ o+ S4 t) B9 g9 A/ / Tips by Sedrika
a5 D5 w7 `; w: j. V9 x; I
- t! b$ h* o, s7 A: aIt is up to you how you do it ^ ^6 r$ m% h1 w/ @( k0 E
0 t3 Z6 t* T- N/ Y+ q3 m; Z
Go into your source folder and open the definejob.h
* A5 F! Y: i0 W qSearch there for: c8 [8 t7 |3 K$ o& k9 I2 q) H5 m
& K, x& `3 g5 X9 z. j#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå: u/ @- k0 G3 O* c
#define MAX_LEGEND_LEVEL 129" o/ } H. w0 R) V
#define MAX_MONSTER_LEVEL 160 d- w2 k3 w W$ ]
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
6 R! p. S8 S$ ]6 Q2 J" E+ e#define MAX_LEGEND_LEVEL 121# M' O( I! R2 O: e2 w9 V4 S
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
; ^3 x$ y8 y8 R @. n L6 W. ?
5 [4 _# r0 J' O4 ~8 V1 L) g/ L1 U5 J, ~' i5 y7 Y C- Y
Red: Player Max. Level
J3 H' _$ U- ?Green: Monster Max. Level
% W1 s( y6 o- |0 h: K- l; c
8 j' L1 L {( Y* i& g# JThese changes as simple as you want.
7 c- p. Y+ l$ g, a
' N% S8 k: |4 `' qThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
' v: Q, t1 s4 @) K9 a9 _
' H3 Z* c/ j, o Part 1 of blocking CE
" ^' \1 ]2 o' x1 G" \/ f: j& v; R7 f& {
; B* M$ p' R. n* \In this tutorial I will show you how to change the Head of Mark flyff.; Z4 |8 d7 M& ]& v) k
The current Head Mark is well known, 5E, which results as a string ('^').
6 A# Z- R: W7 p5 F" [ G$ p" @ F1 @0 s1 k$ y6 ^
For this we go to the World (Project) and looking at the Buffer.h after thistext
5 k0 l) [) B3 O& y0 P4 D: i3 f c2 ^Quote:8 U* @6 @% l, P! \/ N- F
# Define HEADER MARK '^' / / Normal messageheader
( C1 V* U, w- c6 I# Define SYSHEADERMARK '%' / / System message header9 n* F: @ I# e0 a
What the Sysheadmark is looking for is not even the top 5E.
0 r: z2 _, h9 D! r# _" oChange this and it makes the CE Not work on server.& J( X) S& {9 y. v" U
$ c* C$ Y6 U# `& C6 a3 s8 Y- mThen Tom's anti-hack is no longer useful.$ Q* U5 Y1 y- ~% b, v5 t
* h+ x$ P1 f2 M# f4 Q- C1 S; L5 [: j1 C
LG Sedrika
Part 2 of blocking CE
- R5 Y1 }) y& U9 ^5 O/ Z; T4 L" g/ A+ n6 ]; E3 P1 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. m8 M/ z" z7 Z
What does this have an advantage?3 T+ g2 x$ Z( k( ]- k# e0 x
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself ! R# F: U% u; @; T. ~0 r1 ?
# I- }- o& c1 v( y/ ~1 q T( b) J1 Y2 N5 X
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.# `* A( C( u% y
0 e3 ]2 ?4 H" w8 P
Then search for the following content in HwOption.cpp 8 Q7 V) p' B6 r* h
" V) {1 t. R! b4 g0 ^# z
/ |+ r4 t9 W+ f. r
if (scan.Token == _T ("ip"))
2 a, a/ L( a$ f( H L x{* `$ p8 N* Y0 c- P5 o- w
scan.GetTokenEx ();2 E' Y9 B+ P. X( ~+ W
strcpy (m_IPAddress scan.Token);7 A! }" {2 C8 c8 ~6 M" l: _8 @2 {
}
7 ]4 J! C1 F7 J: v- [2 E0 y' g0 Gand turn it into this:
5 r7 X9 _5 @$ k' _8 ~Quote:
8 v* ?. C* H' l, S) t$ U( b; Z1 Sif (scan.Token == _T ("ip"))
, w* v; ]( S* y0 n9 K9 w{
8 L3 v ]" v! J0 S/ / Scan.GetTokenEx ();. }* d! L: W- z8 e" }
/ / Strcpy (m_IPAddress, scan.Token);
$ v2 H2 x: u9 r) @}3 g, y1 x' G0 Z1 `- L a9 e$ ]5 J* o
And you created the solution.
% i! T" h# v3 w/ m
. @& [! c# z' E( Z
v+ B, o3 }' o8 KThen read the Neuz not the IP from the INI anymore. even if put in it8 g- n% s) M/ w
" @1 E7 ?2 h' ]. _+ Z+ H1 G
Max skill's
, _! J+ e+ {8 B* n+ E# l4 Z; c9 N. t7 P
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
$ s0 P8 J; h# e* G# _9 J( v3 U; i2 {3 y/ Z: Q* k6 L2 E
With the TUT can provide the remedy it
! ^9 P( r u' D
3 f/ H+ m. J. B/ U- `& F5 p# 1 opens the file SkillInfluence.h1 b$ I M9 N# V7 C0 b
# 2 Search
8 L, }5 x3 @6 L8 o# ~( zCode:$ Q- Z+ U/ u! v j f
+ P- Q9 U7 p: j% m! ^
# Define MAX_SKILLBUFF_COUNT 147 A0 I2 Q/ Q$ p" ?! I9 {
1 _+ E& }4 n3 e) e+ |7 x
# 3 Change the 14 to your number (eg 21) and save it from2 g+ w! R6 D3 p0 C1 u- ]
# 4 compilation and ready
6 i; _- _5 x. r# V% B# A) U6 P4 \# F( n0 o1 y$ l
. m5 }! A' f8 _3 T0 X# y5 w5 W" C% q% SI 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:
# l+ H: \! ?+ }; B/ j! k6 x- l2 |* t; ^; m& J
dennisdra
* \: ]% h6 ]8 P( D5 }.Crasy
. j D) }- f3 x1 y9 D1 D/ `©ross
- S) M( W* O" m# nSedrika
/ ]- n& J- _. G* l
+ o3 \* a9 E8 o! N3 ~: p/ }) m. qeverything 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!
( b3 N6 H% ]& [% l5 f
8 y0 l; J/ s, _+ n7 X, yP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less2 j3 A7 y: \" s+ K+ E; n7 z( }
& Q L5 e, C# r8 {' r' Z# o V
. p: x3 b! Z2 x# R1 Q8 o# t
Update 1:
how to turn off "Profiler" in worldserver.exe
% Z2 J/ k7 A7 S8 M6 U0 \9 E9 i/ q% _# M5 A: e" z8 g
3 f; a5 j i+ _, b% I1 B- Pin VersionCommon.h of Worldserver Solution1 ]8 D( p, S* [4 i0 x- w. Y
Look for
+ M# F* j0 h0 p! g' K$ R. z4 A6 n9 l/ d( X& w
#define __PROFILE_RUN
* e m$ L' R( v
9 h/ Y! w. h* L; Q Rcomment it or simply2 b; N0 }) a. x( a- F
2 X+ J- }( j# j
//#define __PROFILE_RUN
& l4 ^; f8 T, f) D
/ C5 k( o: Z0 r! u1 j: K1 L0 X% X
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投寄。谢谢。我添加更多的很快如果你有病加太 6 X) b1 z& W* ^- e) }4 |
|