/v command help
#7

pawn Код:
public OnVehicleDeath(vehicleid, killerid)
{
  for(new i = 0; i < MAX_PLAYERS; i ++)
  {
    if(TmpVehicle[i] == vehicleid && vehicleid != INVALID_VEHICLE_ID)
    {
      SetTimerEx("DestroyIt", 60000, true, "d", vehicleid);
    }
  }
  return 1;
}
pawn Код:
forward DestroyIt(vehicleid);
public DestroyIt(vehicleid)
{
  DestroyVehicle(vehicleid);
  return 1;
}
Reply


Messages In This Thread
/v command help - by cssbart - 11.03.2010, 17:50
Re: /v command help - by StreetGT - 11.03.2010, 17:56
Re: /v command help - by cssbart - 11.03.2010, 17:57
Re: /v command help - by Miguel - 11.03.2010, 18:28
Re: /v command help - by cssbart - 11.03.2010, 18:38
Re: /v command help - by Correlli - 11.03.2010, 18:41
Re: /v command help - by Miguel - 11.03.2010, 18:52
Re: /v command help - by cssbart - 11.03.2010, 19:13
Re: /v command help - by Miguel - 11.03.2010, 19:19
Re: /v command help - by cssbart - 11.03.2010, 19:20
Re: /v command help - by Miguel - 11.03.2010, 19:22
Re: /v command help - by cssbart - 12.03.2010, 16:09

Forum Jump:


Users browsing this thread: 1 Guest(s)