15.03.2014, 09:41
Run this filterscript:
You'll need zcmd and the sscanf plugin.
USAGE: /tp [x] [y] [z]
pawn Код:
#include <a_samp>
#include <zcmd>
#include <sscanf2>
CMD:tp(playerid, params[])
{
new Float:x, Float:y, Float:z;
if(sscanf(params, "fff", x, y, z)) return 1;
SetPlayerPos(playerid, x, y, z);
return 1;
}
USAGE: /tp [x] [y] [z]