|
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 % D8 H- f: y3 C6 R
change level without Rebirth
) r6 d! |* p, Y; |5 K# O. v" U1 Z; V8 I' f/ H' b
Now, let us begin.
4 {( e: f6 M# B2 r$ i% h* u; z6 F" Z4 [" X# x1 ?% d
Requirements:$ @5 V" X3 p. F% y6 E5 E# w9 r
Source1 O" P; U* F* {+ C1 h! N! t
Notepad / Editor' q6 V8 U* n! w: U% k/ u& a
. L8 h' d: D3 J$ t5 q8 d
/ / Tips by Sedrika
. D# G9 ~' S: k. R Q6 G
$ \; @, z6 b1 Y8 G' X# cIt is up to you how you do it ^ ^
3 o, Q. ^0 ~ F- `+ C( {* d1 O4 ~2 K$ J+ Y
Go into your source folder and open the definejob.h7 x' s1 [% c' T; }7 O | Z) i s
Search there for:
3 f" i) q4 Q1 y- e# t) m) e5 O! ~; h" V& \4 N1 l: r
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå0 ]# i' B q c, \9 b
#define MAX_LEGEND_LEVEL 129
3 g4 |8 s5 K5 t" j#define MAX_MONSTER_LEVEL 1600 _ x3 K/ h; T9 j7 ]- n# U
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
- G& N( h8 H0 ^' u6 p4 \1 ?0 D, z#define MAX_LEGEND_LEVEL 121
4 f# P5 V' `% G, `6 C+ U9 o#endif // 15Â÷ è÷¾î·Î ·1o§è®àå " ^6 y( Z( @: ^5 j. f2 P. l* c5 S
. o" ^( M/ u5 Q
% j1 h* M" P- n6 @Red: Player Max. Level
4 S; d. f( w- y7 P- Y7 QGreen: Monster Max. Level
" m) P! d( l& l8 G) B: H
7 J3 y) K- Q' qThese changes as simple as you want.( H/ y* j+ M3 k& W# Q: E
; B2 K/ A; Z, ?) WThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
& }: {* R: g- e8 ~/ I4 Q" `6 q) h6 n( L1 D9 n5 l
Part 1 of blocking CE
+ G! n: n* g/ e! z: |: T8 A3 F0 f+ g7 W) R' ~4 r
In this tutorial I will show you how to change the Head of Mark flyff." L. c- h8 n- r6 x; Y& t0 Z
The current Head Mark is well known, 5E, which results as a string ('^').
( _7 M3 F( N) l O5 R, S0 A, S' s
4 p: V& H+ t% K W4 z) [For this we go to the World (Project) and looking at the Buffer.h after thistext1 e7 u. a5 ?( E* S
Quote:
, L2 J: W8 L# c) y' S2 m# Define HEADER MARK '^' / / Normal messageheader
- g. `; @) t ~3 Q7 D# Define SYSHEADERMARK '%' / / System message header$ t7 z1 }1 Z% |$ f0 @+ H3 R3 L0 l. }
What the Sysheadmark is looking for is not even the top 5E.
8 A. _( [) P- K; WChange this and it makes the CE Not work on server.
6 r* ?# ~! K3 g7 B2 m- y. [1 W4 j( k% p3 l/ ?( t
Then Tom's anti-hack is no longer useful.
7 p- I) @& f8 @$ S8 m$ h y4 c* c* P3 Z) S% O& w
LG Sedrika
Part 2 of blocking CE
5 |- ]- K2 i+ h0 j L# e$ O' E: K- Z! e* f$ X: c
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.
+ y% W: D8 n2 J0 OWhat does this have an advantage?
! { b8 g2 y+ _" v. B: ]: b2 q# K7 KThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
2 B2 S' n+ ~) z% g. e: a, A2 Q
( G! _" `1 a2 f- r) b& P) p' O0 b6 R6 C6 I3 H( X3 a5 C% w
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
4 u1 M2 H# F! j3 Y0 t$ m$ G- c
! D& M3 m8 J) [0 iThen search for the following content in HwOption.cpp
: Q0 Y" U# v5 |0 h, r$ G3 E) J2 o0 F U* V; o; ]
% j$ f/ N# N* @. dif (scan.Token == _T ("ip"))! A4 i' Q; t, f2 `. D# S! _* p9 R
{8 J+ e& X: R0 a4 c
scan.GetTokenEx ();3 j$ u4 j6 f' f- g% j
strcpy (m_IPAddress scan.Token);
& o8 ?, s" {5 C" V& M6 E0 Z F, t}% S/ I8 m3 b/ F
and turn it into this:
" T+ Z% F! e7 V1 x3 VQuote:/ \$ I% u/ c- P x5 o1 j: s. i
if (scan.Token == _T ("ip")): T% [1 X- b5 E( ^6 d
{
' }3 G8 C# k' b# u; _7 f' ]/ / Scan.GetTokenEx ();
0 _+ T) P& @. z8 v2 J/ / Strcpy (m_IPAddress, scan.Token);
1 L: C, R: s/ q9 t @1 l6 f2 n$ a}
6 p& u# R1 ]2 H f0 NAnd you created the solution.
" f3 r* O5 Q; g4 T/ V1 r' w- m% m% N0 s& P( \ ]( Z6 C
; C W& a% S# V. v9 N7 K( [
Then read the Neuz not the IP from the INI anymore. even if put in it
. P7 P' ~# Y6 F) \+ x0 @% U2 p* H$ C- l; e
Max skill's 0 A8 Q% {: n- z2 v5 J1 z G7 W
4 R! ~4 P* n% a" u% f" t
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
; M3 r, i8 J5 p3 J) ~" N* O3 L r
With the TUT can provide the remedy it- v. [& T5 G) V7 X& `8 e% h
, y: `( A) A5 { S0 [) N* }# 1 opens the file SkillInfluence.h
8 r# m% R6 H, |9 V# 2 Search: H6 m3 L/ B' ]5 O
Code:9 V! W1 f- _, W9 n) O5 g: _9 m
0 j- {4 _9 a# Y0 [/ y2 V0 t
# Define MAX_SKILLBUFF_COUNT 14
( t$ C% V' P* s* r) \/ u6 b% V2 ^' u' f0 V
# 3 Change the 14 to your number (eg 21) and save it from
. e' N7 ]# v* ~+ F# 4 compilation and ready/ D# x1 R, G' M5 S) |) |
; ~0 }& P9 h: X( v. ]) R2 F5 o
! P% N9 i+ _9 N; E9 s, T
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:4 x! G0 p$ F5 r
. A+ @% h) y T& f& H4 h4 Pdennisdra( ? Y4 V7 f0 j9 G
.Crasy
' i l6 p) {* E/ k4 M4 X; V©ross
, x4 g" V$ |# Y1 y4 [Sedrika
6 d- _: `8 x' \1 l2 m( \$ D7 O; t3 W1 d
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! ) V5 L, X9 Y. i' J: `. i
/ G+ \3 T4 Z; \9 aP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
% X4 v3 d5 B/ J1 ^5 M3 O3 u# S3 c# r; @8 A
' G( J1 {: E2 p+ i. S
Update 1: how to turn off "Profiler" in worldserver.exe ! q; r+ M( S5 S5 C! B+ r6 p
0 ?/ t( Z5 z; r4 ^( a
2 U0 _5 ?6 }4 F& Q! f, vin VersionCommon.h of Worldserver Solution
; r( b% y6 _9 }7 rLook for
8 q# M1 t/ k/ E5 D/ ~
* T) z* h" K o! [7 X0 e# h#define __PROFILE_RUN% X) F1 p* P/ ]! Q- {- x+ R! ]
7 a" t3 H. i* _! acomment it or simply- J* L/ g0 b1 R) t
( g; P# O8 V/ U/ d- E
//#define __PROFILE_RUN 5 e; {! s2 T3 m; \" } [4 u$ W
9 y# F V$ `3 p( S% G
0 g/ c+ r. ]! [5 B" `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投寄。谢谢。我添加更多的很快如果你有病加太
- ?$ A ^' X9 w: \2 ^ |