iSmooch
New Member
I tried finding more information to help me out before posting. But at this point I do not know what else to do.
I will make this script, name it <something>.js and then drop it in the scripts folder. It does not appear on the web UI and when attempting to reload through the api, I get 'Script-Reload deactivated'.
Code:
registerPlugin({
name: 'test',
version: '1.0',
description: 'This is just testing',
author: 'Mr. Test',
vars: {}
}, function(sinusbot, config) {
sinusbot.on('api:test', function(ev) {
return 'Tested';
});
});
I will make this script, name it <something>.js and then drop it in the scripts folder. It does not appear on the web UI and when attempting to reload through the api, I get 'Script-Reload deactivated'.