Advertisement
ijontichy

<stdin>

Oct 28th, 2012
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. if (GetCvar("sv_lmslife") == 1)
  2. {
  3. GiveInventory("GreenArmor", 1);
  4. }
  5. else
  6. {
  7. if (GetCvar("sv_lmslife") == 2)
  8. {
  9. GiveInventory("Megasphere", 1);
  10. }
  11. else
  12. {
  13. if (GetCvar("sv_lmslife") == 3)
  14. {
  15. GiveInventory("LMSHealth",300);
  16. GiveInventory("LMSArmor",1);
  17. }
  18. else
  19. {
  20. if (GetCvar("sv_lmslife") == 4)
  21. {
  22. GiveInventory("LMSHealth2",400);
  23. GiveInventory("LMSArmor2",1);
  24. }
  25. else
  26. {
  27. if (GetCvar("sv_lmslife") == 5)
  28. {
  29. GiveInventory("LMSHealth3",500);
  30. GiveInventory("LMSArmor3",1);
  31. }
  32. }
  33. }
  34. }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement