11.08.2014, 18:04
Hello!
I'm a new user in zcmd.
I have a cmd for teleport in pos x y z but it's not work, look:
Thx
I'm a new user in zcmd.
I have a cmd for teleport in pos x y z but it's not work, look:
pawn Код:
else if(!strcmp(param, "pos", true, 3))
{
new Float:x,
Float:y,
Float:z;
if(sscanf(params, "fff", x, y, z))
{
return SendClientMessage(playerid, -1, "/tp pos <X Y Z> (Sans les virgules)");
}
SetPlayerPos(playerid, x, y, z);
SetInterior(playerid, 0);
SetVirtualWorld(playerid, 0);
SendClientMessage(playerid, -1, "Vous venez d'кtre tйlйportй.");
}