|
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
1 c% t. D4 t% b$ S# _2 }& l* ~+ kchange level without Rebirth
9 j' Z" b2 F5 u( ?; t7 q! I
/ R+ [9 j$ ]" vNow, let us begin.. O _$ ]* F& _
% f3 I# y. F( w6 D/ K* `
Requirements:
2 [7 |4 G/ r9 x8 j* B, ySource
2 W$ O8 b% K1 ]) j! V1 d9 e" q- E5 bNotepad / Editor& h$ ^& ?% k2 w0 y' k1 v+ c0 a
* b7 \/ n( H5 Q5 ~! q7 t/ / Tips by Sedrika. w8 s3 g s6 y* f$ J4 s% m. T
~5 h9 h7 ]7 U! y
It is up to you how you do it ^ ^; Z: [6 g; ?6 n( u2 \2 `! d( @! G
3 S+ o3 Q2 I3 o- g1 yGo into your source folder and open the definejob.h
2 ~$ k+ C/ Q) ?( [, }; wSearch there for:
. r/ x6 a" T7 E0 \. P! y ~
& Z) A) L! r, F4 F6 r#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå3 A/ n0 I8 F t1 `3 K
#define MAX_LEGEND_LEVEL 129
( G( i7 I' u0 f& j2 d$ t, ], u#define MAX_MONSTER_LEVEL 160& U# q3 a* ^ P2 C; E
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
9 N8 \+ o; L$ A0 H#define MAX_LEGEND_LEVEL 121
6 l/ a9 T4 ]8 D5 L4 T$ F, v#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
$ O. P9 X6 P, v2 e8 s+ x8 i5 e6 m/ Q8 S6 R, Z5 D7 Q
. i5 w5 B& D: W0 uRed: Player Max. Level9 [( p+ t! K( _% v! n0 h
Green: Monster Max. Level
9 v5 z' q$ Q! d" ^. H5 Z2 M* p, N& G. `
These changes as simple as you want.
/ f- M6 x* z4 S" T! E
7 b+ G- g0 n, QThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.( A7 u- s- ^6 V" e. A0 Y
" V# L+ w9 k- X
Part 1 of blocking CE : ~' l, c" }) C! C6 U
' w( c( {/ w6 Z: h3 GIn this tutorial I will show you how to change the Head of Mark flyff.1 p' ~8 q& M% m0 ` k3 _; d
The current Head Mark is well known, 5E, which results as a string ('^').( v* T+ F, a% n. n1 [
2 {- p; N1 ~6 H) J* S2 d- RFor this we go to the World (Project) and looking at the Buffer.h after thistext% } {% V7 }6 H$ D. S* L) i0 k' N w
Quote:0 m) L( g0 C, G) P! h# S7 o0 U, j
# Define HEADER MARK '^' / / Normal messageheader
# i4 I2 C- a. R2 |& _# Define SYSHEADERMARK '%' / / System message header
D. [0 N# t' i; E% G, DWhat the Sysheadmark is looking for is not even the top 5E.
) _' }, \4 D/ T3 x* R/ GChange this and it makes the CE Not work on server.
$ Y+ f, C& a/ B& s
6 N% S4 F1 F& G: \; I' H( k9 LThen Tom's anti-hack is no longer useful.
j* j* p: L" }! B) P
i4 ]8 r0 a3 E" H& O1 N( g: r- tLG Sedrika Part 2 of blocking CE
3 G+ i* ?( x5 T4 J- N: R/ j! ~* ^$ x: @4 W9 |6 E
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. ; r' h* m- Y( j; j- I1 k
What does this have an advantage?
1 A/ J3 o5 q7 U1 ]' w& }The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
. I' S; D( D9 V
$ r0 n/ q9 z7 X2 C) Y6 V( E3 Y/ m" C3 m( w3 [
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
) A4 K/ v: B9 ^! {# M9 b9 e/ w( a( ], b
Then search for the following content in HwOption.cpp 0 d5 P6 A2 n% a2 a6 w$ F) e
$ S/ N3 w E$ H$ S5 G9 O: l) G
# Q5 a9 |7 z* Y( k# r3 m
if (scan.Token == _T ("ip"))
0 {. m. I3 z3 C/ g{, _8 R; g- i6 p5 i# {
scan.GetTokenEx ();; p- S/ X/ \' T; h; n
strcpy (m_IPAddress scan.Token);
4 X& \6 C3 |# P0 q% a}
2 M' `4 R$ `# K7 c+ W/ T7 Z/ E5 aand turn it into this:
. f% t0 a+ E" {( ^3 P) wQuote:
/ _6 l! k( c$ j& |if (scan.Token == _T ("ip"))
% v( @6 ~, V0 [2 J2 u3 g9 p8 F{
( F& h( v& I/ Z( x" a/ / Scan.GetTokenEx ();
" V8 h0 o; | u1 V0 f/ / Strcpy (m_IPAddress, scan.Token);
, t+ w4 g. v( b( D+ W. b! O}
" `- O1 ]# l, k# s. HAnd you created the solution.
0 s4 E9 S! E" G7 D, ~& G1 ^/ \+ i8 O4 l8 b5 r
+ J( z4 G* ^! b; P
Then read the Neuz not the IP from the INI anymore. even if put in it
: T! l8 J9 M7 k! Y2 N. q5 ~6 `
3 g" D7 Q5 r T
Max skill's
7 I }& d0 A/ s4 |
8 X" A1 F" A% H! }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 0 F" n" o9 e J4 S' j. s
: C8 P8 ]6 |5 e$ H8 }* WWith the TUT can provide the remedy it
, a l {2 r$ r H$ Z1 q3 j! v% \3 ^% l2 L& w' K+ O: W5 l) E8 n
# 1 opens the file SkillInfluence.h/ H6 v% O9 A8 X y
# 2 Search& v2 [3 f; [: @( ~2 C
Code:8 S7 _# A9 h2 G5 l _' y
& T- c% A. c0 V( O9 i& g3 J# Define MAX_SKILLBUFF_COUNT 14* O# |/ w1 R) \$ _8 O4 F# a
+ ?9 E) w: O* d" c; }* J% W
# 3 Change the 14 to your number (eg 21) and save it from- u6 s( j) T! B; d& J! A
# 4 compilation and ready
6 T0 m8 C) r4 ]/ v4 I6 F* q- H
6 r/ J( @- V: v ~5 ^2 w: p; b& j9 D3 ]' F1 x
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:
* \ @: l T# O$ g
& b$ m. _5 p& o" V! F% w/ t$ r% tdennisdra4 {# T9 T2 t* P* |+ N
.Crasy; x. g* L/ [, Z
©ross* h- m5 M W% I: y6 n% \
Sedrika
4 M$ E: U( X+ Y' r- i( z0 L$ L- m& O( x$ C
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! ( R' d8 P4 p3 H x4 _4 ]% N' X
$ K* z" F% {' fP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less1 u8 k7 S% f. N' h N
' ^1 o$ q0 ^: Q9 h" k
6 q3 C4 b- r0 e! m N7 Q& m! kUpdate 1:
how to turn off "Profiler" in worldserver.exe , ]+ ^; r& P& i- y) r
7 o, k& u4 W; T1 M
4 ?& b& b% i# ^/ m; }in VersionCommon.h of Worldserver Solution
& Q f% Z$ ~+ l: W( a& qLook for! Z5 v0 Z) F2 q: E$ n) z. I
' W' z4 m% j5 M7 P#define __PROFILE_RUN. i, o: O- F% B) L+ g, A
U' J6 W; a7 M* M" ocomment it or simply, }+ P! V( `2 P+ Y) }
* l5 v7 t `8 V/ t//#define __PROFILE_RUN
; O: h% \! T. e+ ~: z# [9 f! M6 k; J* O4 b) j
, u) G$ M& h" U
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投寄。谢谢。我添加更多的很快如果你有病加太 1 [9 c) V& d, ~: R7 |
|