12.05.2011, 18:43
I really need help with this! D:
everything is right and gives no error BUT the goto command don't work right. it sends you to somewhere else
here is the code:
can someone help me?
everything is right and gives no error BUT the goto command don't work right. it sends you to somewhere else
here is the code:
pawn Код:
dcmd_goto(playerid,params[])
{
if(PlayerInfo[playerid][AdminLevel] < 1) return SendClientMessage(playerid, COLOR_RED, "You are not authorized to use that command!");
new player1;
if(sscanf(params, "u", player1)) return SendClientMessage(playerid, COLOR_RED, "Usage: /goto [playerid]");
new Float:XX, Float:YY, Float:ZZ;
if(IsPlayerConnected(player1) && player1 != INVALID_PLAYER_ID) {
SetPlayerPos(playerid, XX, YY, ZZ);
SetPlayerVirtualWorld(player1, GetPlayerVirtualWorld(playerid));
SetPlayerInterior(player1,GetPlayerInterior(playerid));
}
return true;
}