|
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 ' G; {% A! D$ x, [( c. j
change level without Rebirth( X' ~! O1 f7 r
2 x$ O! h' s$ kNow, let us begin.
, q6 d X' O3 L! a+ l# _
! c8 }! c# ?1 k! t0 Q/ xRequirements:0 K2 b2 ?! ?7 ^, N* ~* b4 Y
Source( f. m- [; j2 c4 r% B6 H9 K1 S
Notepad / Editor
; w2 R! c( U4 H. M8 f8 W* b
0 N! W+ q5 |2 P- x" v! g O, O/ / Tips by Sedrika4 ]7 o) g& P3 A4 |8 n/ a6 S
- O+ U9 [) ^; @' D
It is up to you how you do it ^ ^1 s$ \/ i! ~! X) }0 T5 R+ y
2 J( h: k2 d# [Go into your source folder and open the definejob.h9 D- `2 M2 I1 F0 c3 I
Search there for:
- I* u1 k! l% A3 C% `& g) K7 ] ]+ q
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
* N+ D n" P: i" s8 a7 W/ M#define MAX_LEGEND_LEVEL 1292 \+ \& F6 ~3 A& I. q
#define MAX_MONSTER_LEVEL 160/ a3 p5 i2 v% A' X# Q( F2 i
#else // 15Â÷ è÷¾î·Î ·1o§è®àå n, ^6 S, w' _
#define MAX_LEGEND_LEVEL 121
$ J+ e# `) { a# G3 K6 s3 G0 O#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
7 _# d: o$ z6 H1 } [1 O% ~: ?1 F9 b) h. q8 w v# a2 l) {9 R) `
+ N6 [; E) t7 U5 q% _" ~( SRed: Player Max. Level f: g$ I5 v; z# n7 Y8 C1 l
Green: Monster Max. Level6 y" O& [9 X6 W# P. [ Z+ H
# {- z$ R9 N- q$ l0 l% N( d' Z+ EThese changes as simple as you want.! F9 V1 M% ]. f1 Y2 {# _0 E" d
/ p: t; Q, C0 pThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.# {& H7 T- C. G: j; S& I
$ y% l% p! l% C" a. v, r% X& c
Part 1 of blocking CE
X$ s j$ M8 c9 U+ b6 t/ q
* x, t! w+ O3 s ^8 }9 V/ P. o" PIn this tutorial I will show you how to change the Head of Mark flyff.+ j# R9 L; P, H8 s1 y G
The current Head Mark is well known, 5E, which results as a string ('^').5 h6 L( ]8 u% D7 r! n+ o: O/ |, I
% g3 j( h7 B3 \% r% x' |, t3 [For this we go to the World (Project) and looking at the Buffer.h after thistext( O( n( r; L+ ]1 h
Quote:% @4 n: k" b; s
# Define HEADER MARK '^' / / Normal messageheader, a# G( x: r- ?
# Define SYSHEADERMARK '%' / / System message header
4 `; h& K9 K- s0 c* vWhat the Sysheadmark is looking for is not even the top 5E.# }8 w+ p3 W! E& B+ {
Change this and it makes the CE Not work on server.
; H; ^1 x/ x; h, V: y# J# N
2 T2 U# s6 u+ [6 N" lThen Tom's anti-hack is no longer useful.1 H* q4 ~- S, I
' C0 z$ P: d" U# q* ?7 VLG Sedrika
Part 2 of blocking CE
) k1 m! _) G" t+ |5 \" Y. C: Y% u0 C% l3 c4 I6 D* t6 Y5 u1 U* 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.
% ~& R1 T+ w9 g/ [" D' }8 RWhat does this have an advantage?
) m% Z* Y" B. q+ o2 IThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
; K+ v! D t" T% _* q1 D/ r% Z7 i; u! P% m
0 @- Z' f) l% `$ A' ~8 }First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz." L5 O2 a! e5 Y2 I( f6 l9 u( i
5 J$ a; x) _& Z' z P/ C8 L
Then search for the following content in HwOption.cpp
4 m9 }+ K+ [0 J' v4 K& D' X8 ]2 a0 U
, S$ u/ y) e* ?& m& @' V8 B5 z6 {
if (scan.Token == _T ("ip"))
5 j: G! m' W6 S* r7 h3 L" K: p{
7 s0 T5 G, k6 e8 Z5 k# q8 }scan.GetTokenEx ();
4 X* \: e f5 W" q* y* Kstrcpy (m_IPAddress scan.Token);- D( i2 \5 C$ j) x: V7 e" t
}, Q+ }$ v- S. t) Y; _; C
and turn it into this:! ^- w0 y2 y& R- _/ W6 G
Quote:" L+ }3 z8 t! @3 z% d9 o! K1 v2 t
if (scan.Token == _T ("ip"))
7 U" w2 K! L( a{ i. `; @2 [ e+ d8 S4 @
/ / Scan.GetTokenEx ();/ J& F* L8 G/ _/ O4 p f; ~* Y
/ / Strcpy (m_IPAddress, scan.Token);
! k1 n0 B( q9 G, a}0 Y" I0 D/ [* q q7 g
And you created the solution.
6 P4 P l+ _ m* d# k7 \) `* d+ S
7 {) N H+ H3 Z { m
2 P" t& O! p( CThen read the Neuz not the IP from the INI anymore. even if put in it
: C, [4 k3 o( V$ Z- c8 V$ L F4 `
" S! _) d" ]) z s
Max skill's 3 \- j& b7 k: p4 U! G
3 A1 z% e+ @! P' _7 n& k5 z7 D
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
4 y) w3 C" }0 M4 w0 o
) H& K9 ?0 I4 y# F& H7 g% C& XWith the TUT can provide the remedy it
7 b% `2 h2 w( E/ p
3 ~; b8 }4 [5 u8 e+ F# 1 opens the file SkillInfluence.h
4 X( D. S5 i* P! v# 2 Search
! q" d. f4 y% p& j }9 `5 MCode:3 q7 ]0 A0 E! A% N. O$ N3 V9 M, U6 V
* a2 i* y( o7 |! n' h7 p# Define MAX_SKILLBUFF_COUNT 14
! K& c& A a% J6 l( W* j! q$ H) F) g2 N5 V1 y6 b( _- z+ f
# 3 Change the 14 to your number (eg 21) and save it from( c/ ]7 o* v7 i( P8 a5 G: X
# 4 compilation and ready
# x9 n- b& j# ~: z/ p: G9 R9 \
) Q; H& `( z, ^; Q6 o) k
$ @1 E) `+ d8 U- qI 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:" o1 @& D$ X N& b& B! D, p
) v0 G/ |+ y; e) ldennisdra
, L. g+ S: j/ I O.Crasy
2 k( ?) C o4 K) {: j% S# @©ross
- k( J+ G, c4 u: ]. u5 PSedrika
% d/ F+ L- E0 V" Z5 }* e) {
1 h8 M0 y5 l" ~2 S& J; S+ |3 F/ W1 ceverything 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!
9 K- A; h, h/ U+ q. l3 H
5 c& h3 E4 `( W; Q8 m- SP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
- F1 |2 a" k$ p2 R! n1 d8 y
9 t7 ^4 e% {' M( } B$ ]/ e, T0 r1 E$ ^: T& y! ~* R
Update 1: how to turn off "Profiler" in worldserver.exe / h+ V: _3 [2 O0 [
0 m9 l1 L+ ~( y( m: r9 N- z4 }) E
in VersionCommon.h of Worldserver Solution; G3 \! q: Y+ g, c# [% q
Look for
: e2 o: E8 N* e* R- `( A( X9 {# F2 u8 e# a( F s5 Z* j
#define __PROFILE_RUN. A% \. I7 \$ V
, M; _" s$ n% ~% o9 G
comment it or simply" z7 O, w$ W# q
7 Q$ w7 ^" I$ n$ c% Y
//#define __PROFILE_RUN
) e2 G5 ~2 I& L' M- z# S- q# A6 k7 a' @# L! i* b- p
# F1 z2 H x: z) dcredits 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 z8 d4 v% P) F: J- P
|