generated from simtactics/ts4-workspace
7 lines
243 B
Python
7 lines
243 B
Python
import sims4.commands
|
|
|
|
|
|
@sims4.commands.Command('myfirstscript', command_type=sims4.commands.CommandType.Live)
|
|
def myfirstscript(_connection=None):
|
|
output = sims4.commands.CheatOutput(_connection)
|
|
output("This is my first script mod")
|