mirror of
https://github.com/ProjectSWGCore/Holocore.git
synced 2026-07-31 01:15:50 -04:00
7 lines
225 B
Python
7 lines
225 B
Python
from intents.chat import SpatialChatIntent
|
|
import sys
|
|
|
|
def execute(objManager, player, target, args):
|
|
#Args: unkInt chatType moodId unkInt2 langId message
|
|
SpatialChatIntent(player, args.split(' ', 5)[5]).broadcast()
|
|
return |