so i've got this now, but it still doen't work...
(please be patient with me...
)
code:
function OnEvent_ChatWndSendMessage(Wnd,Msg) {
if(Msg == "!picknum") {
return Begin();
}
function Begin() {
var rndnumber = Math.random() * 100;
return "Pick a number between 1 and 100.";
}
function OnEvent_ChatWndReceiveMessage(Wnd,Sender,Msg,MsgKind){
if(Msg == rndnumber) {
return rndnumber + "was the correct number.";
}
I am afriad I don't see the extra brackets...