diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-05-13 06:59:05 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-05-13 06:59:05 -0300 |
commit | 6bbd93d222cdf42f7656088825f311700d4b1ffa (patch) | |
tree | 803326eb02cbb1439f22d8fd86f165861cd79f03 | |
parent | 0aa6ccc6001d25b39664f387cf1cd211a1a50659 (diff) | |
download | serverdata-6bbd93d222cdf42f7656088825f311700d4b1ffa.tar.gz serverdata-6bbd93d222cdf42f7656088825f311700d4b1ffa.tar.bz2 serverdata-6bbd93d222cdf42f7656088825f311700d4b1ffa.tar.xz serverdata-6bbd93d222cdf42f7656088825f311700d4b1ffa.zip |
Aeros cannot be used on HC
-rw-r--r-- | npc/001-1/eventmaster.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/npc/001-1/eventmaster.txt b/npc/001-1/eventmaster.txt index 61bc9e8cc..dea7e9064 100644 --- a/npc/001-1/eventmaster.txt +++ b/npc/001-1/eventmaster.txt @@ -56,6 +56,7 @@ .@curmobc=mobcount("001-1", "Mana Being#001-1::OnAerosMobDeath"); if (!is_gm()) goto L_Unauthorized; + if ($HARDCORE) goto L_Unauthorized; @log_spawns=0; @log_mode=$@AEROS_SPWN; @@ -653,6 +654,10 @@ OnCall: dispbottom "This command can only be used at aeros."; end; } + if ($HARDCORE) { + dispbottom "Aeros cannot be used on Hardcore servers."; + end; + } //.@atcmd_parameters$ = strtoupper(strip( // nah if (.@atcmd_numparameters != 2) { |