|
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, s$ n. v5 g" u
change level without Rebirth) G* N- U6 h" l+ Z" s( K
7 |( b8 {+ w7 x; T6 u+ mNow, let us begin.9 J2 c$ L2 O! R9 j
' G* M$ U4 w& I1 x7 d2 x' f' ARequirements:" r1 Q& t, w' m8 I
Source
# X& {: z6 M" A9 y) m1 r+ XNotepad / Editor
1 W: ~3 F* s- [( l! U: p. s, w8 `( @9 f
- T' z4 E \4 u, h) A8 p/ / Tips by Sedrika
% H0 X$ X) \9 J8 ]4 M5 g, K! I1 J# _7 I5 k- _
It is up to you how you do it ^ ^ o( Z2 B2 r3 H. u) g/ ^* k: b4 L
\" s4 E& ?9 t8 N; OGo into your source folder and open the definejob.h
D: x0 F1 ^# [( F2 y7 ~Search there for:1 E/ M) b. J+ L& c, j
5 K U* a- n9 w# T. I# l# ~
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå8 u! E# p) d. l: [8 I3 K) A
#define MAX_LEGEND_LEVEL 129
+ E4 r; q e! Z5 J#define MAX_MONSTER_LEVEL 1603 w) p, F [% U( Z- o
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
5 g; I. T8 z- T5 f# H- A4 N1 k#define MAX_LEGEND_LEVEL 1218 c* d( ]* H3 V/ Q% y- z& [
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
7 }7 G' [5 U1 K2 W
2 }0 {% {5 d% L2 n9 ?% n" t
z! w$ Y1 j0 K' M2 Q# C) s* ^Red: Player Max. Level& B1 v- U! [% s5 s3 T
Green: Monster Max. Level4 [+ y T9 O2 [+ \+ n G* k! Q
% Z5 ?% d5 Q: q
These changes as simple as you want.
" P/ K) e! G- \' f
/ n- F# _7 y4 L5 O, ZThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
j4 J4 |' c. y- F7 t. M+ x* k# O/ ^' d4 N9 |
Part 1 of blocking CE
1 c3 [* e. _) y4 B3 J) o) w3 ^+ D ]& o$ r
In this tutorial I will show you how to change the Head of Mark flyff.2 U3 } o; H$ u) A$ C) `
The current Head Mark is well known, 5E, which results as a string ('^').* L6 L' z+ p+ ]
. N+ v% u9 A( F6 v8 C% c. V
For this we go to the World (Project) and looking at the Buffer.h after thistext
- _$ m) S- e$ I9 x$ \+ d& Z; bQuote:
7 C8 k4 C9 j. \2 O; ~, w# Define HEADER MARK '^' / / Normal messageheader
a; ]4 Z+ J( D7 B4 O, A* D& H# w1 h# Define SYSHEADERMARK '%' / / System message header5 m7 h. R+ Z, B$ X" W& m
What the Sysheadmark is looking for is not even the top 5E.4 O* x- I) x" e6 k
Change this and it makes the CE Not work on server.8 w6 z( o: Q# }# Z, f4 [
0 F, J: m) r( i) Q$ pThen Tom's anti-hack is no longer useful.
; G1 M( U4 g; Z- x8 Y1 o5 D1 h( Y# f0 k4 f
LG Sedrika
Part 2 of blocking CE # d( V1 K; s9 {& v
9 G) g+ c( b8 x4 T) m jIn 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.
' g* h" Y- z3 O1 K L% [9 QWhat does this have an advantage?
- |; N! O- Y5 E- AThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself - L$ v A( W9 Q. |' j% G1 X% A
8 B) R; h% Z3 L" ]: p) x& `4 h! i
- c/ C: t) W' C/ W$ uFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
, d0 ?) R. }6 x. F- O: n6 x# p( W
# { J- r6 e Y8 J) R; gThen search for the following content in HwOption.cpp " E) l. P7 @3 ^) c+ x* n6 A5 E
k4 Z* A$ p2 P4 Z% O( W7 N" R
/ W1 J" X' {( I- \if (scan.Token == _T ("ip"))
# R" B; R2 U$ v. b{
# a4 k1 H! v8 [- J9 C1 tscan.GetTokenEx ();+ G! v$ Z1 i" o5 I$ G
strcpy (m_IPAddress scan.Token);; e9 p: q: @; A+ {
}
# C6 j# ]% y# Zand turn it into this:7 I$ d; }) G, b+ ^; M7 A, u
Quote:
8 W. A. b0 P3 m1 g! hif (scan.Token == _T ("ip"))4 u# m1 U5 X) ?4 \8 h: U
{9 y9 [- j: H: K* ~, c. C! ?' f7 h
/ / Scan.GetTokenEx ();3 u# A3 V' _+ a) N
/ / Strcpy (m_IPAddress, scan.Token);3 Q6 R% l: [1 X' l- x0 V
}- c3 K8 F; I8 d/ I7 C: x
And you created the solution.* b8 K# S( b) ?+ H3 x9 P* p5 n
% k1 h* g9 C/ ~) f3 g9 k$ \; C
8 }; Q$ l! [/ l& r: H+ h, a% Q
Then read the Neuz not the IP from the INI anymore. even if put in it \+ Y4 {, V$ w$ ~& Q( _0 F4 q3 P
: K9 i @4 q0 ~" Y Z
Max skill's
1 Y& o3 \2 y* ^7 B6 P0 j! l
9 l) [; P3 V) Z4 r2 y9 q' A( bAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc ; e2 |9 o1 x3 C$ h( K
+ z% |' w$ C. y T" G/ P
With the TUT can provide the remedy it) E0 N0 x" Q' I# [, o% R l
; S; G/ e, w c3 ?& ]5 x7 \
# 1 opens the file SkillInfluence.h" R) ?, `% U3 O; f
# 2 Search
" a. S6 o1 Y8 i6 q; E% \Code:
6 U, k" ?' p2 z4 v1 r
; {1 |2 E8 k8 o/ e( [% x' i, h; a# Define MAX_SKILLBUFF_COUNT 14* ~3 u; k. P$ C3 H: n& ]# r7 i
" N/ Q) z' I6 F# 3 Change the 14 to your number (eg 21) and save it from
, V/ ]( ~, e+ h# 4 compilation and ready" c+ E+ E2 `% i2 J2 c$ d, B
( ^+ l4 e5 G0 m$ T" |$ C
& a+ E- s4 s9 }6 n; `6 LI 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:- V p( r1 v( A0 |, {
4 Z4 Q+ S/ u) n9 j' L* Ndennisdra n1 C2 u9 _$ X% U1 {8 K# [9 {* {
.Crasy# v% f) h/ k8 l' t. f+ {! b7 P
©ross
8 P, n% M* c0 iSedrika) K6 U- U2 G& h* q2 k3 [, e* |
1 n$ l: r$ }5 f- ~7 u0 ^0 e& L
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! 3 E3 c+ V/ o; J9 Q! J, T
4 e/ A7 [* r! C. M1 Y7 i
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less% {; q& W* ^/ B7 {# Q
# o# A+ V( N' W1 B$ ]) U1 G1 M2 U# l/ @, S
Update 1:
how to turn off "Profiler" in worldserver.exe 5 \# k/ A$ _4 ^2 o6 u0 X+ t+ X
! ]( R, Z( ~, j7 S" d; ?6 _3 ]
in VersionCommon.h of Worldserver Solution
/ D; S( f) O- I7 qLook for( |! m' G' @5 r8 l2 [( d$ M8 M( s4 z
: |: s' g# n/ N! E0 C1 h6 b. C#define __PROFILE_RUN
% F9 b, y* q. a- u4 A
( |' o6 B) n/ {; `$ Ccomment it or simply7 P4 }$ O$ d# ~0 K9 f
/ T8 s s }% E+ B
//#define __PROFILE_RUN
/ }7 J( F0 N2 K9 i& U& F m+ u/ y
% h5 A1 c7 {, H! G+ Tcredits 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投寄。谢谢。我添加更多的很快如果你有病加太
7 G- t% N! Z' w% Q |