Hi,
I try to get the list of ServerGroups for a User.
I need to count the number in the futur.
But when try my script, the log return :
My script :
Thank's for your help.
Best regards
I try to get the list of ServerGroups for a User.
I need to count the number in the futur.
But when try my script, the log return :
Code:
'Floflobel_Test2' is connected. Checking for the server groups...
ServerGroup : [object Object],[object Object],[object Object],[object Object].
My script :
Code:
registerPlugin({
name: 'LimitIcone',
version: '1.0',
description: 'Limit icone',
author: 'Floflobel',
vars: {
limit: {
title: 'Set the limit of Server Groups',
type: 'number',
placeholder: "Max ?"
},
option: {
title: 'Select the punition',
type: 'select',
options: [
'Message',
'Poke'
]
},
}
}, function(sinusbot, config) {
sinusbot.on('clientMove', function(ev) {
if(ev.oldChannel == 0) {
sinusbot.log("'" + ev.clientNick + "' is connected. Checking for the server groups...");
sinusbot.log("ServerGroup : " + ev.clientServerGroups + ".");
}
});
});
Thank's for your help.
Best regards
Last edited: