I cannot get requesttext() to work.
I trying to do it the same way as your script. Heres all i'm trying to do:
PHP Code:
//#CLIENTSIDE
function onWeaponFired() {
requestText("options", "");
}
function onReceiveText(texttype, textoption, textlines) {
echo("Recieved");
echo(textlines);
}
It doesnt work. onReceiveText never gets called.