06.11.2017, 14:30
I'm still exiting on Las Venturas... here's what i've done so far
Any suggestions?
PHP код:
new
Float:IntX[MAX_PLAYERS],
Float:IntY[MAX_PLAYERS],
Float:IntZ[MAX_PLAYERS];
/////
public OnPlayerInteriorChange(playerid,newinteriorid,oldinteriorid)
{
if(oldinteriorid == 0 && newinteriorid == 3)
{
GetPlayerPos(playerid,IntX[playerid],IntY[playerid],IntZ[playerid]);
}
if(oldinteriorid == 3 && newinteriorid == 0)
{
SetPlayerPos(playerid,IntX[playerid],IntY[playerid],IntZ[playerid]);
}
return 1;
}