Helló!
if(strcmp(cmdtext, \"/myvc\", true) == 0)
{
new myvc;
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
myvc = GetPlayerVelocity(playerid, x, y, z);
format(string, sizeof(string), \"%.5f\", myvc);
SendClientMessage(playerid, COLOR_YELLOW, string);
return 1;
}
Ezzel a magasságomat szeretném lekérni, de 0.00000 -t ír ki... Mindenhol
a VeloCity vagy mi az elmozdulást méri asszem.
if(strcmp(cmdtext, \"/myvc\", true) == 0)
{
new myvc;
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
format(string, sizeof(string), \"%.5f\", z);
SendClientMessage(playerid, COLOR_YELLOW, string);
return 1;
}
Ez írja ki a magassságot.