Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. if(!ispassenger)
  2.     {
  3.         for(new i = 0; i < MAX_PLAYERS; i++)
  4.         {
  5.             if(IsPlayerInVehicle(i, vehicleid) && GetPlayerState(i) == PLAYER_STATE_DRIVER)
  6.             {
  7.                 if(i != playerid)
  8.                 {
  9.                     SetPlayerHealth(playerid, 0);
  10.                     SendClientMessage(playerid, 0xAA3333AA, " Você foi morto por tentar roubar um veículo!");
  11.                     return 1;
  12.                 }
  13.             }
  14.         }
  15.     }
  16.