mirricraft-skript/mirricraft-gamemode.sk
Christer Warén 2c29ac8639 Update
2020-10-24 06:42:03 +03:00

29 lines
1.1 KiB
Plaintext

# --- Game Mode ---
command /gamemode [<string>]:
description: Game Mode
aliases: /gm
executable by: console and players
trigger:
if arg-1 is "0" or "s" or "survival":
if player has the permission "mirricraft.gamemode.survival":
set gamemode of player to Survival
stop
stop
else if arg-1 is "1" or "c" or "creative":
if player has the permission "mirricraft.gamemode.creative":
set gamemode of player to Creative
stop
stop
else if arg-1 is "2" or "a" or "adventure":
if player has the permission "mirricraft.gamemode.adventure":
set gamemode of player to Adventure
stop
stop
else if arg-1 is "3" or "sp" or "spectator":
if player has the permission "mirricraft.gamemode.spectator":
set gamemode of player to Spectator
stop
stop
else
message "&7[&2MirriCraft&7]&r Sy&ouml;t&auml; pelitila"
stop