19.07.2009, 23:25
fix your PlayerToPoint
it goes (PlayerID, Radius, X, Y, Z) thats the problem, it took me a while to figure that out :/
also, if your using it on a filterscript, and not the actual GameMode file, the server will think its a crazy command, but the filterscript wont
...
If it is in a filterscript, go to the GameMode file and put in, under OnPlayerCommandText:
that should make it to where when you type /epr you dont get that "Unknown command" message thingy
it goes (PlayerID, Radius, X, Y, Z) thats the problem, it took me a while to figure that out :/
also, if your using it on a filterscript, and not the actual GameMode file, the server will think its a crazy command, but the filterscript wont
...If it is in a filterscript, go to the GameMode file and put in, under OnPlayerCommandText:
Код:
if (strcmp("/epr", cmdtext, true)==0) return 1;

