22.01.2015, 11:08
hello, my question is that how can i get all positions of default samp enter/exit all locations of pickups
else if (strcmp(cmd, "/getint", true) == 0)
{
//if(PINFO[playerid][pAdmin] == 0) return SendMe(playerid, CGRADD, YouCanNot);
new Float:X, Float:Y, Float:Z, Float:Angle;
GetPlayerPos(playerid, X, Y, Z);
GetPlayerFacingAngle(playerid, Angle);
SendMes(playerid, CBLUEE, "Int: %i | Virt World: %i | Pos: [%.2f, %.2f, %.2f] | FacingAngle: %0.2f",GetPlayerInterior(playerid),GetPlayerVirtualWorld(playerid),X,Y,Z,Angle);
return 1;
}