Advertisement
Guest User

Untitled

a guest
Aug 14th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. if(GetPlayerVehicleID(playerid) != 0)
  2. {
  3. if(GetPVarInt(playerid, "State") == 1)
  4. {
  5. if(GetPlayerVehicleSeat(playerid) == 0)
  6. {
  7. foreach(new i: Player)
  8. {
  9. if(GetPlayerVehicleID(i) == GetPlayerVehicleID(playerid) && GetPlayerVehicleSeat(i) == 0 && i != playerid)
  10. {
  11. BanPlayer(playerid, 1, "Troll Car", -1);
  12. break;
  13. }
  14. }
  15. }
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement