Advertisement
Guest User

Untitled

a guest
Aug 14th, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. stock GetCarFunction(carid)
  2. {
  3. for(new i = 0; i < MAX_VEHICLES; i++)
  4. {
  5. if(carid == LSAirPlanes[i])
  6. {
  7. return 1;
  8. }
  9. if(carid == SFAirPlanes[i])
  10. {
  11. return 2;
  12. }
  13. }
  14. return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement