This commit is contained in:
deathbybandaid 2022-02-09 12:46:07 -05:00
parent 76bb39221b
commit b375d463a3
2 changed files with 4 additions and 1 deletions

View File

@ -4,6 +4,7 @@ class SpiceBotCore_OBJ():
def __init__(self):
self.script_dir = None
self.increment = 1
self.bot = None
def setup(self, script_dir, bot):

View File

@ -19,4 +19,6 @@ sbcore.script_dir = SCRIPT_DIR
@plugin.nickname_command('test')
def test(bot, trigger):
bot.say("Testing the bot")
bot.say("%s" % sbcore.script_dir)
bot.say("Test #%s" % sbcore.increment)
sbcore.increment += 1