|
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 * Z# m9 o: v7 ^
change level without Rebirth
: e" i5 z8 _% o0 `! o: E; Y+ ]" G$ A. `+ z
Now, let us begin.
9 L5 P3 r9 S% F J1 C$ A* y) p% u1 S
" j* X0 Z5 t! n. w6 L ZRequirements:
f' {' m! w V6 x1 @+ ^Source* R" N( E- n; r1 a2 ^
Notepad / Editor
7 i' J2 u+ F+ ]
8 a- ^ N& ~3 ]; e0 A& j/ @+ m/ / Tips by Sedrika
0 a6 v9 ~: W" R$ s+ O' d# H7 L- l: g4 Q1 ?3 c1 T3 f$ J9 t7 }0 H4 ^4 b
It is up to you how you do it ^ ^
& Z4 v! V4 b% r: s- Q4 K$ S4 d! j1 q" t: z% T% ]
Go into your source folder and open the definejob.h
! g" |! ? a* GSearch there for:0 M; p6 Y1 F2 a+ B3 Z) @
8 p0 l4 B& }' n2 g! ^#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
/ N' {# Q, }. q7 A#define MAX_LEGEND_LEVEL 129; {" h# u9 T x) d3 m. n
#define MAX_MONSTER_LEVEL 160
1 P; u( _) T0 r! E( S3 y9 E- ]3 `2 L#else // 15Â÷ è÷¾î·Î ·1o§è®àå0 O5 Y7 l. |7 }! U9 F9 r
#define MAX_LEGEND_LEVEL 121
+ X! h5 P9 K* y+ Z#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
! L/ ~4 g/ N E) Q4 a$ @. q& [+ t; i$ S& c
P6 E) t' Z& v, e( _+ V' yRed: Player Max. Level
% x Z; Q9 q5 Y% P4 xGreen: Monster Max. Level0 l% p, E( _5 `' [* ^# o
1 y( B/ e5 [- J) y4 [. |5 bThese changes as simple as you want.3 `! D9 m8 j& S) k" W3 Y% N H
3 c1 q) h2 `0 C$ s- jThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
, f# w( _3 s' v- o
; ^3 L" L) p- }- D% Y Part 1 of blocking CE
0 {$ i$ f" @* H0 A" h( H% t7 r$ ^/ N+ e5 C
In this tutorial I will show you how to change the Head of Mark flyff.1 g) D: f7 X0 u/ E: {
The current Head Mark is well known, 5E, which results as a string ('^').
" c, }9 s) G# r2 g3 l; r6 f& E, z( P9 f
For this we go to the World (Project) and looking at the Buffer.h after thistext
# b' K) V$ i9 E# I: }Quote:( ~- Y; S- |4 F2 [
# Define HEADER MARK '^' / / Normal messageheader# Q& E c2 P" `; e- p( k0 Z; F
# Define SYSHEADERMARK '%' / / System message header+ g5 P% W) N$ I' n* G5 L
What the Sysheadmark is looking for is not even the top 5E.+ g# ^( C# u/ s& P- ]/ j
Change this and it makes the CE Not work on server.
! Z, W' F9 k: E+ T
6 r. L% A( f# a/ { SThen Tom's anti-hack is no longer useful.! o, w- G5 ?8 X
' |, c: d3 O ^) ^
LG Sedrika
Part 2 of blocking CE
) q( k1 G# k, f; z
+ s. M9 H7 y' m& _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. 7 P( j5 e/ P4 g& ?" J; W
What does this have an advantage?
% X8 K* ~9 }; J! `6 PThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
1 {0 X/ L% T S7 ]& s; T: p" K4 c+ c0 E
. N% c: l* N8 w# a& a! s3 {
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
) R# _1 o: m, K& K) a
6 M; ^9 P# Y( jThen search for the following content in HwOption.cpp + t. j1 w" \ W9 P8 l) f% b
, `2 q) K: f9 E# l4 w* _2 x5 d
0 X3 [" b+ `) W" h0 kif (scan.Token == _T ("ip"))
# j7 L$ z' P5 W{; s1 a4 z' u, C0 F/ ~5 q
scan.GetTokenEx ();
6 |6 E4 @ k6 sstrcpy (m_IPAddress scan.Token);/ q9 ~# i5 d6 A2 B! x5 j, ?6 L% `& A4 l* l
}
, L: H7 N" ~8 {. J0 v) F* L3 band turn it into this:' s. J: L9 j( k+ p' m
Quote:
9 B2 o0 ?7 A2 i+ r# v$ _2 Bif (scan.Token == _T ("ip"))
4 l8 A& b0 C6 s3 Q! r9 o) W{
, n5 f% ^" B1 Y$ o+ r n/ / Scan.GetTokenEx ();
s- d/ ]/ g* F4 `( M% |/ / Strcpy (m_IPAddress, scan.Token);$ \* [0 q' T$ b H
}3 A% M+ p/ e6 Y$ j5 M& l# {
And you created the solution.( z$ k1 l3 B: L) C8 E. T
+ t! p$ X9 T; y4 q4 @
* ]& d( x# w1 C
Then read the Neuz not the IP from the INI anymore. even if put in it
5 W' l5 ]: ^* e
' \9 w4 q. g- U: d3 u
Max skill's # w/ `4 q2 u3 x8 z' ^" L! n# V$ h
% u0 Q& Y0 u# q+ D9 X
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
6 P4 D3 I% s4 L8 }' F! T4 X' l' \* N1 v1 k
With the TUT can provide the remedy it
$ t( W) L7 `, ~& B9 T+ I) k9 Z$ Y% x" [% Q8 v! C! P. W1 b
# 1 opens the file SkillInfluence.h0 p7 [) u8 M: g O5 o8 c# o
# 2 Search
* s/ G$ q1 K" {2 g' ?Code:# Y3 M3 [7 ~' a5 s
& A" V8 u. A/ G' G& s, j' ~% @: x# Define MAX_SKILLBUFF_COUNT 14, N7 i& m1 H* B5 |2 u
- k$ A: {: ^5 d2 H" ?1 Q; T
# 3 Change the 14 to your number (eg 21) and save it from
" C$ R) t8 q9 v* d7 O4 x5 ?) n# 4 compilation and ready# w! ]+ { a* q' }% E3 M
" y% p/ P* q3 u% h i* U$ f
9 o! P: V9 _) A5 q7 ?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:& w' V4 `& B. C: _
* V* \& P" k8 L+ \* o9 n0 `dennisdra
1 _4 y0 C! J( k. z: T.Crasy
9 M& V2 u$ d; [) `+ {; M2 b5 V1 D" {©ross* M& D( ^) k/ R* U7 m
Sedrika
) V2 \5 l- Z* N% N/ M8 p& [
5 F- b; H; c6 O( p) A8 yeverything 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 Q- g x* @% _' |
' @0 T7 q% v' P9 w7 T% L) @P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less7 G6 s' q. R4 ~& j! C
& u8 z* K5 c" ~/ V9 Y- a- E
& H: j- X! M: p
Update 1: how to turn off "Profiler" in worldserver.exe
% u3 ]% G% p9 ~
' z9 { @: n) H8 d @ I% S" g d1 X9 @0 F/ X
in VersionCommon.h of Worldserver Solution" l9 |2 J' g+ K1 U
Look for& Y6 V1 }7 N0 k8 |; e! p. E" |5 i
8 l% V3 B% F! l& F- M0 e#define __PROFILE_RUN
$ i3 u1 R! \; S3 u. L
( _. X2 x- v7 z% ~2 Ycomment it or simply
( M* O' a/ R1 U9 ~) k3 v
/ {8 {) y6 N# ~9 z) g" i& \//#define __PROFILE_RUN # p3 z( Y/ z: O0 `' O: H4 t
. v* j/ N' G+ ~4 d
' t: X* R& P) S- A5 W; m' Vcredits 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投寄。谢谢。我添加更多的很快如果你有病加太 : @: t, ^( K i
|