Hallo,
ich habe ein Objekt erstellt, das durch ganz SA bewegt...
Als admin soll man sich zum derzeitigem standort teleportieren können.
Mein code sieht derzeit so aus:
if(strcmp(cmd, "/gotos", true) == 0)
{
if(PlayerInfo[playerid][pAdmin] >= 2)
{
new Float:x, Float:y, Float:z;
GetObjectPos(ABombe, x, y, z);
SetPlayerPos(playerid, x, y, z);
}
return 1;
}
wenn ich jetzt /gotos ingame eingebe, werde ich zur Position 0,0,0 teleportiert, was mache ich falsch?