24.05.2016, 17:05
hello.
When i leave the server, i want it to destroy my vehicle.
But, nothing happends
This is my code for OnPlayerDisconnect:
When i leave the server, i want it to destroy my vehicle.
But, nothing happends
This is my code for OnPlayerDisconnect:
PHP код:
for(new i=0; i<sizeof(cInfo); i++)
{
if(cInfo[i][carteam]==255)
{
if(cInfo[i][id_x]==0)continue;
if(cInfo[i][carowner] != PlayerInfo[playerid][pusername])continue;
DestroyVehicle(cInfo[i][id_x]);
cInfo[i][id_x]=0;
}