Files
Holocore/scripts/commands/generic/cmdBroadcastPlanet.groovy
T
2017-06-12 20:17:47 +02:00

8 lines
334 B
Groovy

import resources.objects.SWGObject
import resources.player.Player
import services.galaxy.GalacticManager
import intents.chat.ChatBroadcastIntent;
static def execute(GalacticManager galacticManager, Player player, SWGObject target, String args) {
new ChatBroadcastIntent(args, ChatBroadcastIntent.BroadcastType.PLANET).broadcast();
}