Quote:
|
Originally Posted by Torankusu_2002
That's what I thought, but someone was telling me that param[1] was for the account...
NPC Code:
function onPM("test",text){
if (text == "test"){
sendpm("Hey it worked *******");
}
}
Or am I overlooking something else?
|
Try:
PHP Code:
function onPM(something, text) {
if (text == "test") {
sendpm("yay");
}
}
Also make sure you have in the onCreated() section: