mirricraft-skript/mirricraft-gamemode.sk
Christer Warén 8332516600 Update
2023-04-26 17:44:54 +03:00

47 lines
1.9 KiB
Plaintext

#--------------------------------------------------
#
# MIRRICRAFT
# by Christer Warén / Warén Group
#
#--------------------------------------------------
command /gamemode [<string>] [<player>]:
description: Game Mode
aliases: /gm
executable by: console and players
trigger:
if arg-2 is not set:
if arg-1 is "0" or "s" or "survival":
if player has the permission "mirricraft.gamemode.survival":
set gamemode of player to Survival
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
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
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
else:
message "&7[&2MirriCraft&7]&r Valitse pelitila" to player
stop
if arg-2 is set:
if player has the permission "mirricraft.admin":
if arg-1 is "0" or "s" or "survival":
set gamemode of arg-2 to Survival
stop
else if arg-1 is "1" or "c" or "creative":
set gamemode of arg-2 to Creative
stop
else if arg-1 is "2" or "a" or "adventure":
set gamemode of arg-2 to Adventure
stop
else if arg-1 is "3" or "sp" or "spectator":
set gamemode of arg-2 to Spectator
stop