Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Derplib command file
- var MM = module.parent,
- commands = MM.plugin.load('commands');
- commands.register({
- key: 'nick',
- access: 1,
- description: 'set your nick with this command',
- run: function(req){
- if(req.message.args.length > 0){
- req.user.data.nickname = req.message.args.join(' ').replace(/'#/gi, '"#').replace(/'>/gi, '">').replace(/' /gi, "' ").replace(/\\"#/gi, '"#').replace(/\\">/gi, '">').replace(/\\" /gi, '" ');
- req.write("Your nickname is now "+req.user.data.nickname);
- }else{
- req.write('Your nickname is '+req.user.data.nickname);
- }
- },
- });
Advertisement
Add Comment
Please, Sign In to add comment