|
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 5 @5 I/ `! g0 Z& z
change level without Rebirth
1 o: E" \: E6 V' x, H; _8 c0 u- @: r
Now, let us begin.5 {- u& p& o: a/ }+ i3 C
* @! B+ ?0 U! ^2 f1 ~- i5 \
Requirements:
' m; q! F5 h; I* W6 rSource2 ~" N! _; ]: S- ~! x0 ]* F
Notepad / Editor2 K. Y. k! `4 I8 y6 U Q1 k* v9 w
4 Q; J/ {2 }' }; L3 P/ / Tips by Sedrika* J1 R$ z( N0 Z. n' p% ^$ I
! |! y& m; N9 ^3 G7 cIt is up to you how you do it ^ ^/ I# T3 X B: ]2 t+ w b1 s7 f
8 w$ B8 Z: m9 j! w5 n% `& o
Go into your source folder and open the definejob.h
) t1 _) C+ C# L% W' hSearch there for:- P$ d Y, D; ^% _5 N% ^
* N d8 s$ l2 I2 N" a2 M
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
. m7 t9 ?, F2 S/ H o& U- R#define MAX_LEGEND_LEVEL 129
5 f8 _ J2 K8 H* k, j#define MAX_MONSTER_LEVEL 160
: c$ ?2 ?" g# g* f#else // 15Â÷ è÷¾î·Î ·1o§è®àå% v" u6 U. ~" G- H
#define MAX_LEGEND_LEVEL 121* x- h+ R6 |% H2 q' S8 e
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå 7 D; A2 h" d$ r+ M1 Z
9 \* h9 E: |9 S" [/ O5 M, j; G/ e8 [; _/ v1 i; F
Red: Player Max. Level
0 w, D7 k2 g9 W1 s7 w/ xGreen: Monster Max. Level
9 U% t. p2 U* S0 G' h ]
1 b4 D( X$ I! E4 u" F8 {0 R* GThese changes as simple as you want.
/ t$ N k2 Z- F8 L F' p1 Z. b# d8 D0 @- z8 [1 ^& I
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
7 j) N0 {7 [, m. L
: m9 A; \* K" o; B5 d Part 1 of blocking CE " O6 z- R F( O9 ~* h$ T l
4 L3 N9 A6 q+ \5 t% C1 F
In this tutorial I will show you how to change the Head of Mark flyff.1 k; K6 o+ |4 }! o$ ~
The current Head Mark is well known, 5E, which results as a string ('^').; d; f4 N0 ?. k) }6 y
/ H7 a4 v: o4 R, x9 O/ R
For this we go to the World (Project) and looking at the Buffer.h after thistext
: A( f0 Z# u2 x n! DQuote:* i- u8 e: s0 \( R( C
# Define HEADER MARK '^' / / Normal messageheader6 c0 H' z; v/ |6 c- ?" { J
# Define SYSHEADERMARK '%' / / System message header
Z4 B% J! O1 g+ _8 sWhat the Sysheadmark is looking for is not even the top 5E.
$ q. P" K1 S3 F/ r5 e- m1 qChange this and it makes the CE Not work on server.7 }8 l3 _9 `- }. G" H h
9 c3 V9 ?) A) j2 sThen Tom's anti-hack is no longer useful.- f& E' r2 k, x
, P+ W" K7 i! N
LG Sedrika Part 2 of blocking CE ( r4 D& N- n- W8 |$ L+ m% y
3 X; g# }0 l/ ^( U1 Q7 ^, {4 S: p0 EIn 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. 5 o3 L0 ^( x" n
What does this have an advantage?( R! X- G+ `- m1 g* k# T: @& j
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
- @- f( \: n; \1 S( E" }# e. j# ?% C& h, P- b# Y+ G- j# [
; k& x; @( K) Z; G0 }First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
+ O& j2 q4 h5 K, x8 z9 Y. b( p
v x( v! V! s+ g* s2 N5 X$ \Then search for the following content in HwOption.cpp
# t+ g/ W0 N5 e7 D' ]7 m
2 M$ c1 L# c: C* s9 M2 U' P
) M! W1 }7 }7 A: n/ W1 @7 fif (scan.Token == _T ("ip"))- Y" P& k: M- S
{, ?4 }0 e$ i/ ~+ j
scan.GetTokenEx ();
1 N; Y. g5 G _7 O* {. M( tstrcpy (m_IPAddress scan.Token);
, |% {* R. P! [% d}# F! R; s, H6 a1 \8 {0 y5 |3 j: V a
and turn it into this:1 r2 T' {' s( W' u. f
Quote:7 d% i% f! g5 s, e5 D: N1 e. ]
if (scan.Token == _T ("ip"))4 c3 l! k' V _) \; x# D
{+ x' y- P5 ~5 T# V p. V+ [4 W
/ / Scan.GetTokenEx ();% ~, e3 Z* ?7 {& ^' C0 \; d
/ / Strcpy (m_IPAddress, scan.Token);
' U; ^2 L3 y9 v) ]& k}6 b; K8 C7 O6 N+ t
And you created the solution.
* p+ Q% |) E6 B3 I' ~) t
1 C; }5 {& x' K# ^5 X: j7 v7 Y9 }3 ?- E
/ Z5 F: k6 p6 r) W1 B2 A; x2 pThen read the Neuz not the IP from the INI anymore. even if put in it
) D6 E( _. m$ a" u2 l0 Y. {
% `3 Z. f! @' q; N Max skill's 8 {) b' H( s+ ~& j
8 F% z2 y7 V$ u4 U5 K" L6 J0 T) u
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
, O' s/ ~0 J; e! v* H8 U% s( | |3 C) J* F" Y) ?) Z3 V2 i* P' R
With the TUT can provide the remedy it. \6 k+ x2 K+ s! ^7 y+ ^; B2 U
. u; t7 W" `( {4 H
# 1 opens the file SkillInfluence.h+ z# F8 {2 i/ o3 I
# 2 Search+ D0 ^7 e5 K# T! Q
Code:3 F9 w l# k8 | O6 L
7 u' @5 f7 x4 C# R# Define MAX_SKILLBUFF_COUNT 14/ D, C2 s5 b# g- u7 |3 \
- j2 ^8 Q& Z4 f
# 3 Change the 14 to your number (eg 21) and save it from
" }1 x" p8 z3 k L# 4 compilation and ready2 [" M8 n5 Z5 Q2 d6 D( i. ^
& K$ L8 h( Z2 _# e5 n9 |& b0 ~
: |# n& D. g8 u5 x# M$ zI 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:; B) [% e" C3 j, }! z& G3 P$ ?" Q. I
3 o2 e+ q; Y5 T+ Z5 A! {dennisdra; U) p8 J4 }( m" E8 _4 [. K6 w
.Crasy* j, @" `% y: X* d( t8 T+ k
©ross
/ N# a+ x7 D& [- ?( RSedrika
5 \& q2 g$ d% U0 [9 _2 v* p0 E3 l2 w- @6 r+ h
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!
8 G% g: q& d( [
$ I9 O% C" D }( b+ }3 o8 l1 y% q- JP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
+ q1 [; J( i3 v# ]% F( W0 l, O2 v+ \
; n- L- ?( q4 O1 @3 H
Update 1: how to turn off "Profiler" in worldserver.exe + z/ y, p% G8 u& o9 z: G/ g3 S- k
2 s7 N7 ]& G" c5 j' t, |
$ }/ S2 u" g" m& q5 L/ x- t& Jin VersionCommon.h of Worldserver Solution
- p# V! Y! U0 V( B( kLook for
, O3 h$ H5 h! I( [/ j5 q4 ?8 Y/ ^; b0 [7 R e$ M' p$ G7 m3 _( u$ H
#define __PROFILE_RUN
& \9 ~, `' e# o9 F X
b8 W& a. U5 Y! w% scomment it or simply9 ?! s7 H" {$ F+ F) Q( W c' q+ S
5 g2 l; J" ^" `, s6 z//#define __PROFILE_RUN
3 m3 o2 S0 J$ k/ @1 w, s, Z1 p0 b& a' z# r0 S4 j
! x. r1 f: d0 Y# q5 M
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投寄。谢谢。我添加更多的很快如果你有病加太
. c. [# `- I& Z$ t, l: c |