forked from GitHub/dbot
ab0a110a8e
* Stats functionality disabled until completion of SamStudio8/dbot-stats#98 * Profile grid currently only works with dbType set to memory * Merge user functionality temporarily disabled
40 lines
1.2 KiB
JavaScript
40 lines
1.2 KiB
JavaScript
var _ = require('underscore')._;
|
|
|
|
var commands = function(dbot){
|
|
var commands = {
|
|
|
|
"~getprop": function(event){
|
|
if(event.params[1]){
|
|
if(_.has(this.config.schema.profile, event.params[1])){
|
|
this.api.getProperty(event.server, event.user, event.params[1], function(reply){
|
|
event.reply(reply);
|
|
});
|
|
}
|
|
else{
|
|
event.reply("Invalid property. Go home.");
|
|
}
|
|
}
|
|
},
|
|
|
|
"~setprop": function(event){
|
|
if(event.input[1] && event.input[2]){
|
|
if(_.has(this.config.schema.profile, event.input[1])){
|
|
this.api.setProperty(event.server, event.user, event.input[1], event.input[2], function(reply){
|
|
event.reply(reply);
|
|
});
|
|
}
|
|
else{
|
|
event.reply("Invalid property. Go home.");
|
|
}
|
|
}
|
|
},
|
|
};
|
|
commands['~setprop'].regex = [/~setprop ([^ ]+) (.+)/, 3];
|
|
|
|
return commands;
|
|
};
|
|
|
|
exports.fetch = function(dbot){
|
|
return commands(dbot);
|
|
};
|