|
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 `- u) S* {3 Y. C( H! g/ f* Achange level without Rebirth" i. V9 e( g* f- |6 O
4 Z0 b! o0 D b! X/ T4 r7 j. pNow, let us begin.# D& v7 K" R5 H( V
8 g2 R4 e5 P) K
Requirements:
3 ^% s4 P# X2 X; |Source
4 r2 M0 x8 ] ^5 vNotepad / Editor3 m$ h; i1 ^: R8 N0 t4 `/ y4 `" k; n
; }# U" x- d" A- ^6 v& @
/ / Tips by Sedrika
8 c7 B! `) y# T) N3 e
4 ^- v3 d J6 R1 x- q7 H I6 FIt is up to you how you do it ^ ^* v E0 T8 q( q# W
$ K; k0 N4 X' W9 ~ `0 [
Go into your source folder and open the definejob.h3 l4 I* [0 A2 [7 D7 s
Search there for:
, x4 e# P% N S1 S3 v. F6 ?$ A+ \5 `. @
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
+ M4 J( ?8 h' M- w" H#define MAX_LEGEND_LEVEL 129
4 u# O, {% E. L! ]* N, Q#define MAX_MONSTER_LEVEL 160
5 j6 \( g# }- F$ j0 p) u8 D2 o u#else // 15Â÷ è÷¾î·Î ·1o§è®àå
6 v: T G% o$ f R' m#define MAX_LEGEND_LEVEL 121' P$ }( Y4 d2 l/ Q3 G
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
; F- z: p. |* S: \1 d( Y- U0 F8 B) ]' x1 q- M6 `$ k7 ~+ f
5 N" y- K& X9 f; _1 p& [Red: Player Max. Level/ C! ]8 s' ?' Z9 {, R. X
Green: Monster Max. Level! k. v) s4 p. ]* _( N
' }2 h' q6 o4 UThese changes as simple as you want.& y( f1 _. H' G# E0 E9 m& s
( a* t u7 i1 W4 iThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
) B9 ^. ^1 [+ M
, A* n) _$ g2 \( B7 A& I4 B
Part 1 of blocking CE ' ~) \5 j8 ~2 r% H9 j8 L3 j
8 x5 k! \$ h/ O
In this tutorial I will show you how to change the Head of Mark flyff.
+ t, M& i9 Q( @, U3 vThe current Head Mark is well known, 5E, which results as a string ('^').
9 z% d) G! j) N L- }2 P( `5 h: c: U( G1 q7 y" F% b D0 N: x$ u! D: t. F
For this we go to the World (Project) and looking at the Buffer.h after thistext+ H. l8 y$ c& [% A8 G! u( ?
Quote:" H, f8 |0 A ], {& M2 y
# Define HEADER MARK '^' / / Normal messageheader6 k: u6 f- ~$ m
# Define SYSHEADERMARK '%' / / System message header
+ _4 E: s4 X! `! c R, U0 ~What the Sysheadmark is looking for is not even the top 5E.
% Y5 T! r$ q9 ^$ OChange this and it makes the CE Not work on server.4 ^; y1 `) s8 V+ G! E# q
& Z) D, \" V7 X3 X
Then Tom's anti-hack is no longer useful.
# k2 P! q: I: N, J/ M4 L) K5 S5 i; L% D8 s# e/ n3 z8 m( d
LG Sedrika Part 2 of blocking CE 8 h7 S* N7 k, \( b, ]8 K* h4 {
7 X% R" F4 l/ }* hIn 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.
( A6 a6 J1 C7 P6 T1 n! AWhat does this have an advantage?4 q2 v/ a" R) K' i* `' a0 g
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
; H$ j1 _8 Q* i2 f) O. Y
( F- X/ ?; b+ x; K2 ^9 a8 h6 \6 M
6 l" d4 L4 |( Z/ _9 ]First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
: J* y/ I) }3 ] Y" a+ {' b' K5 F* K3 D9 s; |& D4 i
Then search for the following content in HwOption.cpp f/ ^" K, U# E/ z
0 b+ T2 y2 M' t4 F$ O U3 N/ k) n
) s4 t. X: h/ tif (scan.Token == _T ("ip"))
; \6 }/ ~8 g5 g9 L1 W8 S{8 f/ [, Z' s& [8 G- S! \
scan.GetTokenEx ();
. a7 i8 F" `! z; R$ @" f! `# vstrcpy (m_IPAddress scan.Token);
& t" y: b. E. Z7 j* I6 q" w& \7 i3 F}* C8 D% \2 |2 B9 s( ]+ y
and turn it into this:
# w r! L/ S& K2 tQuote:
6 J" G- ~2 M7 H% U3 C( e" w) `if (scan.Token == _T ("ip"))1 r. U0 V) p) d. G( k
{
& ~$ a+ e1 k1 B5 p9 R# Y6 b/ / Scan.GetTokenEx ();6 W! h, m) U2 G& n' [/ Q
/ / Strcpy (m_IPAddress, scan.Token);
9 I7 ?6 k; A& T}, E( E6 c; Y; w3 \ k( h* ^
And you created the solution.; T+ b: i& _% X8 {/ o3 n* y
1 h/ ^1 k) m9 F6 W/ ~
) ]% `' b# y$ X/ H% [& ^+ [Then read the Neuz not the IP from the INI anymore. even if put in it
0 ^0 y' I p, u, v, B" ~* Y7 h- z+ B& j0 m2 J
Max skill's
/ }, W3 C# e% D6 O" G7 `
/ Z4 q; H2 g3 |. OAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc 0 B- L* N5 b/ @- u! g1 J! L/ ~
: e, g9 }4 H- }; B+ ~/ mWith the TUT can provide the remedy it
( t" M5 b# I. d8 p5 K7 X9 @: }$ P p% }0 F4 ]
# 1 opens the file SkillInfluence.h
2 s! Z$ ?( c8 e! {% M# 2 Search
3 g2 @# v3 V2 K y, U+ q6 ~Code:
$ v) p* @1 C% g9 ^ Q6 M4 K3 r( l$ Z: ^% U% F' V$ a
# Define MAX_SKILLBUFF_COUNT 140 G9 A/ I+ L3 {$ C- U! T
& t" |8 X1 D1 J* L# 3 Change the 14 to your number (eg 21) and save it from
$ k: ]7 W: _" K# 4 compilation and ready
, R& l4 ]( S' } o D3 P/ N g- f) w5 j, _/ b( p
3 h% r7 ~ c$ EI 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:
/ _( I1 }( i5 c2 V. ?
& m0 P( l. t) Y: |dennisdra
# t% e( @: h% H.Crasy
" G5 A: Z1 e; @* E) ?+ r: E" x7 H©ross
5 X' C) h6 z) y9 `* }, A1 I/ NSedrika
9 Y9 Y4 e4 ]) H8 l: m( H; U1 p. Z
* I' ?& O x! ^; Ieverything 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!
$ ?1 k0 j8 M1 u5 U& ?
. ~/ h# x" z$ ?7 zP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
+ e: J) y2 o% _5 f8 W( O8 J7 q. c. p6 f
# M# x+ S9 r) ]/ F2 ?" T- x
Update 1:
how to turn off "Profiler" in worldserver.exe + u7 x1 }2 E3 b j& D, K( p& j
: \& I: f( n' O7 Z
2 a. W- ]& q( S& vin VersionCommon.h of Worldserver Solution D2 g& M1 x1 P0 A. T
Look for7 v' X( ]+ M. b6 m. K# o+ l
$ ^6 S' t" L4 T9 K$ r* i* V R3 ^#define __PROFILE_RUN
6 v; _- R1 q2 r" C n1 U: f' n; l( V
comment it or simply
- z7 p1 }+ }& c7 [$ i! q
2 ~, v/ j) ~' ?6 W" y6 u6 q6 h//#define __PROFILE_RUN
& D$ l( a* B5 s- F1 O4 [9 X
$ w2 T; z5 c: @) B2 [) |0 q& x6 L$ \
3 Z6 p: _' W3 R; J: w L. Rcredits 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! a# Q! M8 t( x( O
|