09.12.2009, 11:19
[size=14px]GetPlayerPosInt(playerid, &Float, &Float:y, &Float:z, &interior);[/size]
playerid - id of the player you want to return values from.
&Float, &Float:y, &Float:z, &interior - variables for x-coord, y-coord, z-coord and interior
Should work, lol xp
EDIT: Thanks Seif_ :P
playerid - id of the player you want to return values from.
&Float, &Float:y, &Float:z, &interior - variables for x-coord, y-coord, z-coord and interior
pawn Код:
stock GetPlayerPosInt(playerid, &Float:x, &Float:y, &Float:z, &interior)
{
GetPlayerPos(playerid, x, y, z);
interior = GetPlayerInterior(playerid);
}
EDIT: Thanks Seif_ :P