|
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 . C: K5 \. p X( Q8 m6 R
change level without Rebirth
( Q8 @$ ]$ T/ m. u1 M3 o
9 F: ^# V& x4 m7 Q, p3 m, U" CNow, let us begin.9 s$ a) H5 |0 x5 Q5 x: r f9 N$ K" b
3 A4 F! |; q# T. G+ W. H2 VRequirements:
1 X b4 g5 C5 t$ a! e$ F, YSource
5 w5 l, h6 P- k3 e6 cNotepad / Editor
# T: z; G2 k/ M+ y. }0 j" k, P) T$ j7 [2 Z$ C5 H1 z; O- i
/ / Tips by Sedrika+ ]* \( d" Y% |
' B- L# S# o2 k. }0 w# n; sIt is up to you how you do it ^ ^1 a8 D6 U! b n& P9 t
! c) u. [% Z- n7 S0 U2 K
Go into your source folder and open the definejob.h/ O* c0 Z+ O0 M8 B$ [# W0 P
Search there for:
( p, J1 R/ b& |# D% c) S. Q' M7 V+ q% U6 x& e% P& L
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
. h8 a% F2 U; d4 V' p: A#define MAX_LEGEND_LEVEL 129
4 m) _2 [: P( i5 ?9 u( f: v; j% y#define MAX_MONSTER_LEVEL 160
9 d, g E1 h/ o& E, K( T# Q#else // 15Â÷ è÷¾î·Î ·1o§è®àå
4 c3 R3 L1 n* T/ ^; J#define MAX_LEGEND_LEVEL 121
$ ^2 L4 p8 w9 A( P2 |+ U' h#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
) G; n1 f4 F. j! `0 S
: F `) Y# R* ~; W/ ^7 S2 @$ S8 {- f7 e \) _6 y
Red: Player Max. Level3 o& R* |) Z6 |( P1 K }
Green: Monster Max. Level
: D- {# ?$ _0 u$ X2 L a2 B& P& B- T& ~9 |! z
These changes as simple as you want.
" I' i8 }" K5 r/ p
# U8 E, V/ v% d9 V4 |Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
* c/ n" M7 A$ y5 k
! h& X& r8 q& Z5 _. i Part 1 of blocking CE
- O2 h2 d+ Z9 C3 P
/ R3 @. ~- c4 {) y6 t/ CIn this tutorial I will show you how to change the Head of Mark flyff.3 K: i5 {2 n0 Z; o* k' d
The current Head Mark is well known, 5E, which results as a string ('^').2 J3 B5 M+ \7 x' v5 Z; z6 D
" x/ S. X2 w, W1 p4 O/ hFor this we go to the World (Project) and looking at the Buffer.h after thistext! f3 @6 S8 N |( z% g# o T
Quote:6 J( a+ H, z; V% M3 {
# Define HEADER MARK '^' / / Normal messageheader
# J+ G+ m! C2 b8 X1 q# Define SYSHEADERMARK '%' / / System message header' p' S: s* H2 F) ^+ V
What the Sysheadmark is looking for is not even the top 5E.! D5 ?, Y4 Z6 X
Change this and it makes the CE Not work on server., ^2 c; X, Y/ z R$ T
* X9 A! E2 W( ?! }Then Tom's anti-hack is no longer useful.3 x0 b* W1 j/ w1 r3 E# }2 T( v# O0 A
/ S# B2 R+ j0 u/ @7 l0 B
LG Sedrika
Part 2 of blocking CE 3 C$ I H- r$ F) o& F
* V" d* H( x9 {# |' }6 i6 e0 b9 JIn 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.
j: }: b. e& ~6 I% `' M. M0 bWhat does this have an advantage?( V3 h# H' Q5 p m. S
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
: d; H& {/ S* u, P* x% F' i, a# H8 g/ O9 y% ]9 l
6 b+ U+ w* y' X. d! D6 _First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
' Q( s X9 g% {5 D6 g# J
9 x; t6 f" g5 h, w- F8 @Then search for the following content in HwOption.cpp
$ h" S! w1 A* I4 Y d! V& X$ ]! {8 l/ Z5 i: u/ W3 ]
1 x! s/ n0 }" {4 G9 o) pif (scan.Token == _T ("ip")); i% x' o+ P- \5 X H
{5 |/ ~6 H u; f* ~
scan.GetTokenEx ();$ z- B E: r2 B7 X
strcpy (m_IPAddress scan.Token);! w" T8 w0 t" S
}
8 S$ g, T: Z. `- Y; K9 u9 Sand turn it into this:
8 s7 T# E+ q# {! f$ w" R$ HQuote:+ E, y) g0 I6 ]" F1 V+ l
if (scan.Token == _T ("ip"))
, V% Z) L" N A1 X7 V' O( t3 ]- X{
, V6 R: {& C% J/ S$ ?/ / Scan.GetTokenEx ();
_! B, F0 l) J# ]. o/ / Strcpy (m_IPAddress, scan.Token);
( R! @7 j# s% {1 \" P; u}. P) u/ j8 @4 M1 s
And you created the solution.
) q' H- g$ L9 ~) l+ `0 ]
8 o$ }& l& l3 Q+ s7 l" m2 o" g. }8 j% E
& u& |9 n7 H0 bThen read the Neuz not the IP from the INI anymore. even if put in it# @: d* h( t! o
* K1 ]/ T/ H8 @( x+ a0 n2 _
Max skill's 0 C; K0 E! U- }( w' I+ {
+ @; Q) q4 i# K. D5 ^; Z
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 1 D/ Q/ W) g9 q
1 a! p% {; o& E6 Y1 q9 Y
With the TUT can provide the remedy it+ N7 I6 i6 i2 A# n% T
5 ` O& z) X& f# I) w! |# 1 opens the file SkillInfluence.h
! V7 g0 u2 y( ^# 2 Search
7 H" d4 R% E3 w# lCode:
5 q" r" l: f8 l% U' p- @& i+ t. _" F6 N3 Z, O
# Define MAX_SKILLBUFF_COUNT 14& {) L; V! I7 p1 K6 D
5 O7 [5 t* v: p& d, X/ F* u, p
# 3 Change the 14 to your number (eg 21) and save it from& I0 n; w$ J) X$ z& {
# 4 compilation and ready& u B9 }0 ~1 r
4 ?( B M6 J9 ^$ J$ D- U/ X
, V( M! c' L: T- C+ II 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:: `& _9 {( j- Y8 _2 V
( G7 w, k6 E* i3 {5 `7 N1 ]' N+ F- b
dennisdra
( h+ y# y- Y4 c" P.Crasy% H& G! W! }$ i" x5 v2 Q2 K$ e
©ross: o6 P! v. t6 \& Q: G; b
Sedrika& j( Q1 [1 @# e/ z& |4 }9 V
8 p8 \+ t0 y4 i( U5 G) h) g) b
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! 4 D: T3 j3 L8 f* y- D9 a
1 m% T. j& z' s. K3 e
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
7 l. v; {! i% j) q" e6 V! J* G: \! J. |5 E* `
. v# w5 I& j" V$ I7 \* E/ mUpdate 1: how to turn off "Profiler" in worldserver.exe $ t; o* ?) G, k' _/ y( G! P# y
$ M5 }& ~' o5 o6 I/ Y# S+ k5 }3 U, R, ~/ J; T
in VersionCommon.h of Worldserver Solution
: q0 n- _$ s7 o1 @Look for- R, B5 J9 r0 U3 G, P3 H
! }$ J/ T) Z% D' g, D" w2 }. ~/ F
#define __PROFILE_RUN) o4 e. c+ D0 j6 S
, g: c6 T q" X9 }* \* O5 @9 Gcomment it or simply+ Y+ i: H- c. V+ {: l' Y) y
+ x3 ~% D G# S+ D
//#define __PROFILE_RUN 1 E2 U- t e& h" L2 d
1 U \- [& |# \+ U
/ x. ~2 g9 a; W% W: W& Ncredits 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投寄。谢谢。我添加更多的很快如果你有病加太
; O8 r. T1 n: d$ m( D* x; e |