|
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 # p, h8 C4 G9 n# E+ n* u& U
change level without Rebirth+ Z+ I, W u2 S* l. X
" }! {% U' e/ {( ^4 u4 lNow, let us begin.3 {! @9 D ~" h1 V7 A* H3 A
B5 Z" R+ i! e, j* x& w4 X
Requirements:8 J4 t- q5 z- s( w0 r
Source9 I( u! U8 P$ K
Notepad / Editor) D% c- f9 Z% T8 j: d; e7 u9 w4 Z
$ j3 V- _- b- A" x/ / Tips by Sedrika
1 i) G6 P+ H0 j3 W9 y# K3 g Y" U; B( v" n/ K# `
It is up to you how you do it ^ ^1 O! Z1 A( |; A6 U( ^
" h: F8 W [( W, w3 QGo into your source folder and open the definejob.h6 |8 J' a B; ~% n& ^8 S" a2 {
Search there for:8 C9 z9 X! `( C4 Z
5 W5 T* O, s5 E' b; ^4 d#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå8 n9 u2 Q/ O# @( x7 M( t8 N8 g
#define MAX_LEGEND_LEVEL 129- C! X6 B1 n" [$ P/ s# S$ e' h
#define MAX_MONSTER_LEVEL 160 h% r6 f/ o/ j% S
#else // 15Â÷ è÷¾î·Î ·1o§è®àå: T* ?7 V0 x& E. A* \+ U
#define MAX_LEGEND_LEVEL 121" V- @7 t6 N4 h$ k$ s; w
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
# Z& O6 \% _7 E' L2 W3 l2 a2 @2 u! L1 n% e" L
$ }1 d8 [7 e) \1 [6 t2 p
Red: Player Max. Level6 w; Y+ G: l( p2 J
Green: Monster Max. Level
9 H4 h$ ^# o' a; h5 ]6 Z7 X) ~3 f6 ~4 Q
( T) U' k, t4 ]6 H& |5 [4 mThese changes as simple as you want.
3 D! S, r! z L6 a, z8 j: Y8 v
7 _" \' A+ w3 Q. B$ 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." A# Y% `: l2 S5 [+ t F
, M; S0 `: `0 c
Part 1 of blocking CE
5 c9 C+ e9 c% l
. l% }( J p! m1 N0 QIn this tutorial I will show you how to change the Head of Mark flyff.
* I' _* Y W$ fThe current Head Mark is well known, 5E, which results as a string ('^').# K( _" a9 i( ^: H1 z3 m# [) W
2 ~5 v% Q4 ]9 }7 C: X
For this we go to the World (Project) and looking at the Buffer.h after thistext
! T- j# g8 a& B; w4 e. e9 _Quote:" y: U: m; E0 o; T
# Define HEADER MARK '^' / / Normal messageheader7 u& `, q% M' s p! _* a4 ?
# Define SYSHEADERMARK '%' / / System message header
) d; x. [6 `( }What the Sysheadmark is looking for is not even the top 5E.; e8 k8 |6 {, F* P( g# K5 f
Change this and it makes the CE Not work on server.* G' E! l. s, l
I/ { q; I4 {/ B4 ]# cThen Tom's anti-hack is no longer useful.; ~) E% v. w B/ j7 X* N: j3 f; @5 d$ B
i9 K9 p9 M# R- ?( c& `8 U4 {LG Sedrika
Part 2 of blocking CE ' M9 K4 l- K) G% s
4 @. X4 c0 @* [- nIn 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. 3 i, _0 x& Q( t1 g( j$ y. ~+ k, p
What does this have an advantage?
4 `0 t! a& K9 f/ {4 E- p; ZThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
; t9 M/ d B9 U+ m/ u& b' B7 m
- S% q8 R, g9 ~( \, s& F/ b
) \* y4 q' B6 c% H# }$ V3 AFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.% `6 x9 T4 N1 U% \" _2 K7 G$ B
1 t+ d) p6 k: L1 T1 i3 I7 u
Then search for the following content in HwOption.cpp : @9 t3 ]/ Q+ w) t2 U
2 Y" I* e5 m- n" G5 W) |# V& W: N( a% Z) Z4 @' v
if (scan.Token == _T ("ip")); W8 ~8 k$ o! G
{
7 s/ L6 q; g( o8 c! Lscan.GetTokenEx ();( ]8 @8 ^- t+ r: ?7 ^1 i' n" c
strcpy (m_IPAddress scan.Token);0 Y H* r4 S1 m: ^& e! i$ C
}
$ _3 o6 t$ n; q7 Tand turn it into this:; D; M* s8 z5 A1 N
Quote:2 n( }* ^+ {3 V; L0 T; G, n
if (scan.Token == _T ("ip"))8 p( h! w% J) G( [
{3 k: v! t' u Q1 ]9 y
/ / Scan.GetTokenEx ();
! ]$ Z, w( `) B" k/ / Strcpy (m_IPAddress, scan.Token);! |( }! W- ?( x
}
% c1 h l J& P7 Q: VAnd you created the solution.2 u2 G$ s9 ? q# B
- N! r) t# V! X) O+ e0 F" X
# I7 S, ^6 C0 H& d4 w7 ~, x5 E. rThen read the Neuz not the IP from the INI anymore. even if put in it! U5 Q% R5 o) h( `
$ |3 J9 s7 H; ?' F% K2 A2 n5 T' C
Max skill's
# I" m: a9 s/ _$ N: p3 M. Q
* S' ?8 q- T' b& V, t5 cAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc
: q0 ^9 K- x" K- V* Y! a1 _. t1 c7 O5 p& }* ^- Z0 i
With the TUT can provide the remedy it
$ D8 P6 o" a6 [% f$ S* z3 w" y" o2 O* n5 D
# 1 opens the file SkillInfluence.h) l8 f8 M( e. ?2 G
# 2 Search p" m1 v& X$ b+ ] w4 z: ]6 R
Code:1 K" ~5 ~0 n& B! ^# j9 |& D
3 l2 l; i2 L* M9 O' \- U) R& n1 y. ]# Define MAX_SKILLBUFF_COUNT 14
, D& ]; T" V! G* ^! h+ v7 t# Z/ `* c S9 k9 q f
# 3 Change the 14 to your number (eg 21) and save it from7 q! j/ i* e6 u1 U Z0 @+ U
# 4 compilation and ready
* ]8 s& y1 z- ^" d0 s: g+ t) {4 C4 ^3 @: w- V
" B4 b! L8 W0 w" E' {
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:; i' B" f x3 ?) t s9 S
' H z* u7 d( z* Y! }" ^
dennisdra, M+ E+ R% }* m8 F0 [8 Z2 q
.Crasy+ ?7 N4 e& Y8 ?3 {& ^0 G
©ross
& u" y r X8 ~# T$ ^8 FSedrika
: C1 _" ^' i: _$ i# {; R$ q& ?* {+ s6 ]% [+ m( M4 ]) R
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! $ |/ H$ L% z4 ^* Y
" ]; Z' h; G+ {+ V; g# N2 mP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
% Y0 X4 m3 z* y8 t" B, K. t4 `( W8 e1 s# L% }
9 u$ z: L1 @1 C) n( j
Update 1:
how to turn off "Profiler" in worldserver.exe
4 L' @, R6 @8 x- ~/ L2 G. W) @
( \) V: \1 N j, [. s3 @: S L$ q% q2 a3 O2 F8 V
in VersionCommon.h of Worldserver Solution
' F: @' ?4 U/ J) c& P) sLook for+ M4 }& O( \, l+ V
1 N/ i& J/ F) I! m
#define __PROFILE_RUN3 { f. W9 q! \; i- a! d: Q; m# K
2 n+ D% ^/ v8 ?8 H
comment it or simply3 F! X! n+ ]/ W, g% Z' {- z% U( k
$ T- }. L# L: _1 n, @- m/ x//#define __PROFILE_RUN
9 V+ C; s' M, K; w9 q
+ r: H/ e1 R9 E @2 n' e4 g0 g9 u2 v1 B# `: r
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投寄。谢谢。我添加更多的很快如果你有病加太
3 T# d, v' E# c8 U* m3 I7 \ |