|
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
m8 R; w# O) N4 jchange level without Rebirth
% A! b9 O+ m4 V8 J; B9 `/ @) x! v1 `- i6 R* ~! ^+ G0 K. Y2 B7 `
Now, let us begin.
' M. ?( M* k& c* `9 z4 y
/ Y1 {1 t( @" P# dRequirements:' K @' ~ g+ A
Source
- ]+ Q& e6 s p* N" n: y7 ~( DNotepad / Editor( e( M* `3 c. p5 i8 h% t
* K, W1 s8 S( _3 v! p
/ / Tips by Sedrika; A: L, |$ G# g7 K9 }( z
3 g% X2 M3 Q: U* d" v& I3 K1 w
It is up to you how you do it ^ ^- E# Z4 f- q8 R4 o& J
' T1 p3 T( i% g5 [# ^" SGo into your source folder and open the definejob.h) T4 ~8 x! Z9 I3 ?+ r2 G
Search there for:% U3 w* L% p" r7 v" x2 B J/ g+ s1 X
* f) J; Y' e: m0 A; e! x" C1 z( c8 w
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå( [( V4 M0 K# X0 S% z- W
#define MAX_LEGEND_LEVEL 129; W- p+ a1 L" ^
#define MAX_MONSTER_LEVEL 160
5 p& ^! n5 w! Q#else // 15Â÷ è÷¾î·Î ·1o§è®àå* W& T& ^- x( }: l3 X8 E* l" @
#define MAX_LEGEND_LEVEL 121$ f: [! A6 c* C, ~
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå ) n% B& U" Z( s) u* u( C
w" ]7 O' S3 a7 H" W. l9 v3 S/ c
8 N1 z7 M) S' B6 i0 u+ r% ?Red: Player Max. Level: h* K' ?9 \$ e" L* n, g* A2 h5 t
Green: Monster Max. Level
: B: p( `* H7 ?$ U9 p
- q; Z4 M S$ Z3 ZThese changes as simple as you want.
/ y' a: Q6 m7 j2 E0 b" f O1 k
/ G3 Z* [$ i5 b6 u5 i9 fThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
8 P# I5 U$ T9 f( z( t
* E" q5 E0 G3 M$ A& ~5 v
Part 1 of blocking CE ' Q9 n, S9 F+ l4 @2 N% c7 r
; N9 X' P3 |. l3 z
In this tutorial I will show you how to change the Head of Mark flyff.
/ C4 K( I! O8 cThe current Head Mark is well known, 5E, which results as a string ('^').
1 _8 z! L& h* Q) z9 k3 A* b2 k: `& f" n4 W' t2 j
For this we go to the World (Project) and looking at the Buffer.h after thistext o4 n4 B' O& [4 N8 C5 k! F0 P8 g c
Quote:
# \3 _" s- E# n/ [+ R# Define HEADER MARK '^' / / Normal messageheader6 v$ e5 @9 h! P1 J! h% e
# Define SYSHEADERMARK '%' / / System message header. h! K9 F. ~. P% ]+ k
What the Sysheadmark is looking for is not even the top 5E.
- G& @, W& p+ O; T, HChange this and it makes the CE Not work on server.
" Y2 e" Z6 W9 D4 O" ~4 o8 ~$ P, n
+ E5 }/ r* b# }7 B VThen Tom's anti-hack is no longer useful.4 a8 g6 Y% z% s, a+ B% W
8 p" ^2 `; ?, ?) [% ~. n. q, ALG Sedrika Part 2 of blocking CE ; Q$ f& e6 ~9 K i* ?# E
1 x) ?# S- T0 o( U i' @1 ]
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. * c' k: H" L/ J/ t
What does this have an advantage?" n7 ]8 {( M S5 ]
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself ' x2 N. y" J+ W
2 B+ |* H1 {7 n( j
; g! `( M) N5 w: W8 }First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.% `$ m* {# k7 G0 H5 c
% u2 s# |% v2 M$ k% c" I; AThen search for the following content in HwOption.cpp 2 S @/ d4 v+ }; [ D
1 ?; @+ f" Y M; H/ m. p- D
, X8 C. G. S* n1 X e* }+ r/ F
if (scan.Token == _T ("ip"))) a- q3 t( A- |" C+ G
{
* \# R+ A l7 Q# u8 fscan.GetTokenEx ();
7 M* N+ Z) v0 m' Y- S+ kstrcpy (m_IPAddress scan.Token);
# k" n& Z7 z7 }* A, j/ ?1 n}
" L5 g1 K' ]" N# wand turn it into this:
3 M. k& i5 c, d9 f8 {Quote:
" l6 y4 h5 M5 H/ I3 r4 ]7 J- q7 d% jif (scan.Token == _T ("ip"))/ }: S4 l1 i% H- ~
{. Q! R9 a3 Y" g% p) u; c$ ]
/ / Scan.GetTokenEx ();
+ ?1 W: A. C$ r2 y* M% q/ i/ / Strcpy (m_IPAddress, scan.Token);& L5 I4 t9 o% R
}
) W0 S7 T# T# B8 E+ gAnd you created the solution.- Q. |+ E B4 y4 y' [( M/ z
) q @0 n2 O$ |! b7 o8 C, x$ r: |& d) R6 ?$ x8 ?4 d
Then read the Neuz not the IP from the INI anymore. even if put in it
" T$ d6 W( G" z1 W2 h& g5 r3 A; H }& W( i
Max skill's
% P9 X$ n0 l0 s+ ^- Z; ~! @* [, ^2 D7 }% F' w6 P, X5 r- F
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 j: t; q0 R4 M! h1 c
1 Z8 Z( s6 z+ A9 }
With the TUT can provide the remedy it' [9 a- n' W. R* [2 a/ d
5 b( t" n9 O$ \% w# 1 opens the file SkillInfluence.h* `/ A% N! V x
# 2 Search3 s7 }9 q4 f# l6 D5 w
Code:! J" j/ a7 z# k
! i- J4 L, V4 h# J- Q" E
# Define MAX_SKILLBUFF_COUNT 14; ?) e" d$ O! @ t
+ H- y2 ]0 |; [ N5 i+ p! }; P' Q) {! D# 3 Change the 14 to your number (eg 21) and save it from
4 q+ K9 R2 A! E ?! H: Z# 4 compilation and ready' u f V4 u/ ?2 _4 w
" Q; Y: U% l+ ~; ~6 h/ Z! E+ d! I+ J; q. X& F
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 Q8 J2 J0 D3 E) {" t+ U8 S7 g( ?6 W" G% W2 l. v. ?' V `
dennisdra; S! T: r/ c% ]& n# N( N" R W
.Crasy x( n- d) v% O9 V' v- G
©ross
9 c! t; t0 k. E4 c+ {' mSedrika; M- @) X0 y/ ~
: l8 n0 Z7 W5 R: p. d3 V. o
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! . Y. H. p6 S( U& @1 f
) m7 Q2 _1 \( Z& ZP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
% ~: A. E* W- l; A3 N) ?: F8 [+ \5 \8 K* a4 U% g/ D: t
( t7 _" O, d/ C1 D8 S" {5 U$ [0 [
Update 1:
how to turn off "Profiler" in worldserver.exe & Z1 t, ]; `& R6 U m' v
" W" @ u/ K1 c: D# t, [+ l
* |; ^. O# O j0 S! i, Xin VersionCommon.h of Worldserver Solution
5 n5 X# y |* I2 h5 q9 CLook for6 e8 j8 w4 o1 B) O4 P# x% P
9 g* u M( Q5 k#define __PROFILE_RUN
u$ N& B" t& o$ a1 C% C0 X z; R4 r U* f9 z5 j
comment it or simply
6 k$ a) Y( G* V4 P% G
& H' S( x6 ~, }" k8 c" d7 [0 B//#define __PROFILE_RUN # F% `8 ~# A6 k. S
; {+ J( Z: i( E6 U
8 s. |) i* l0 }/ F0 qcredits 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投寄。谢谢。我添加更多的很快如果你有病加太
8 t4 ?1 d, g1 P! ~& u' c |