Advertisement
KaLu17

CrashedObject, SAMP

Mar 19th, 2014
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.39 KB | None | 0 0
  1. stock bool:CrashedObject(model)
  2. {
  3.     new found = false;
  4.  
  5.     switch(model)
  6.     {
  7.         case 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 1573:
  8.             {
  9.                 found = true;
  10.             }
  11.     }
  12.     return found;
  13. }
  14.  
  15. lub:
  16.  
  17. stock bool:CrashedObject(model)
  18. {
  19.     switch(model)
  20.     {
  21.         case 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 1573:
  22.         {
  23.             return true;
  24.         }
  25.     }
  26.     return false;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement