matty
Scripting Guru
Posts: 8336 Reputation: 109
39 / /
Joined: Dec 2002
Status: Away
|
RE: [Request] Random Number Generator
js code: function OnEvent_ChatWndSendMessage(oChatWnd, sMessage){
if (/^\/([^\s\/]+)\s*([\s\S]*)$/.exec(sMessage) !== null) {
var Command = RegExp.$1.toLowerCase();
var Param = parseFloat(RegExp.$2);
switch (Command) {
case 'random':
if (Param !== 'NaN') {
return Math.floor((Param)*Math.random());;
} else {
return '';
}
}
}
return sMessage;
}
Something like that lol
|
|