Advertisement
Guest User

Untitled

a guest
Jul 3rd, 2015
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. static const WeaponSlots[] =
  2. {
  3. 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 10, 10, 10, 10, 10,
  4. 10, 8, 8, 8, 0, 0, 0, 2, 2, 2, 3, 3, 3, 4, 4, 5, 5,
  5. 4, 6, 6, 7, 7, 7, 7, 8, 12, 9, 9, 9, 11, 11, 11
  6. };
  7.  
  8. //Использование:
  9. //Было
  10.  
  11. if(GetWeaponSlot(weaponid) == 7) //bla-bla-bla
  12.  
  13. //Стало
  14.  
  15. if(WeaponSlots[weaponid] == 7) //bla-bla-bla
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement