Advertisement
slownessCollapse

Untitled

Jul 24th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. if (c_config::get().auto_buy)
  2. {
  3. if (c_config::get().buyrifle == 0) {
  4. g_pEngine->ClientCmd("buy scar20;buy g3sg1");
  5. }
  6. else if (c_config::get().buyrifle == 1) {
  7. g_pEngine->ClientCmd("buy ssg08");
  8. }
  9. else if (c_config::get().buyrifle == 2) {
  10. g_pEngine->ClientCmd("buy awp");
  11. }
  12.  
  13. if (c_config::get().buypistol == 0) {
  14. g_pEngine->ClientCmd("buy elite");
  15. }
  16. else if (c_config::get().buypistol == 1) {
  17. g_pEngine->ClientCmd("buy deagle ;buy revolver");
  18. }
  19.  
  20. if (c_config::get().extras[0]) {
  21. g_pEngine->ClientCmd("buy vesthelm");
  22. }
  23. if (c_config::get().extra[1]) {
  24. g_pEngine->ClientCmd("buy vest");
  25. }
  26. if (c_config::get().extra[2]) {
  27. g_pEngine->ClientCmd("buy he");
  28. }
  29. if (c_config::get().extra[3]) {
  30. g_pEngine->ClientCmd("buy molotov;buy incgrenade");
  31. }
  32. if (c_config::get().extra[4]) {
  33. g_pEngine->ClientCmd("buy smoke");
  34. }
  35. if (c_config::get().extra[5]) {
  36. g_pEngine->ClientCmd("buy taser");
  37. }
  38. if (c_config::get().extra[6]) {
  39. g_pEngine->ClientCmd("buy defuser");
  40. }
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement