Files
Holocore/scripts/commands/generic/setMoodInternal.py
T

10 lines
200 B
Python

from intents.chat import SpatialChatIntent
import sys
#Args: moodId
def execute(objManager, player, target, args):
if " " in args:
return
player.getCreatureObject().setMoodId(int(args))
return