Advertisement
Guest User

Untitled

a guest
Jun 10th, 2022
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.76 KB | None | 0 0
  1. int spawnchance[7][2] = {
  2.                         {"weapon",5},
  3.                         {"ammo", 20},
  4.                         {"mobsm", 10},
  5.                         {"mobbig", 10},
  6.                         {"mobboss", 0},
  7.                         {"picks", 13},
  8.                         {"pwrup", 1},
  9.                     };
  10. int oddsweight = 0;
  11.  
  12. int weapodds[6][2] = {
  13.                         {"shotgun", 10},
  14.                         {"chaingun",5},
  15.                         {"supershotgun", 5},
  16.                         {"rocketlauncher", 3},
  17.                         {"plasmarifle", 3},
  18.                         {"bfg9000", 1},
  19.                     };
  20. int weapweight = 0;
  21.  
  22. int ammodds[8][2] = {
  23.                         {"Shell", 5},
  24.                         {"Shellbox", 8},
  25.                         {"Clip", 8},
  26.                         {"ClipBox", 4},
  27.                         {"RocketAmmo", 4},
  28.                         {"RocketBox", 2},
  29.                         {"Cell", 2},
  30.                         {"CellPack", 1}
  31.                     };
  32. int ammoweight = 0;
  33.  
  34. int mobsmodds[8][2] = {
  35.                         {"WolfensteinSS", 0},
  36.                         {"ZombieMan", 6},
  37.                         {"ShotgunGuy", 7},
  38.                         {"ChaingunGuy", 4},
  39.                         {"DoomImp", 5},
  40.                         {"Demon", 3},
  41.                         {"LostSoul", 4},
  42.                         {"Cacodemon", 2}
  43.                     };
  44. int mobsmweight = 0;
  45.  
  46. int mobbigodds[7][2] = {
  47.                         {"Revenant", 6},
  48.                         {"Hellknight", 8},
  49.                         {"Archvile", 0},
  50.                         {"Arachnotron", 0},
  51.                         {"Fatso", 3},
  52.                         {"PainElemental", 0},
  53.                         {"BaronOfHell", 2},
  54.                     };
  55. int mobbigweight = 0;
  56.  
  57. int mobbossodds[2][2] = {
  58.                         {"CyberDemon",  0},
  59.                         {"SpiderMasterMind",    0},
  60.                     };
  61. int mobbossweight = 0;
  62.  
  63. int picksodds[5][2] = {
  64.                         {"HealthBonus", 10},
  65.                         {"Stimpack", 6},
  66.                         {"Medikit", 3},
  67.                         {"ArmorBonus", 10},
  68.                         {"GreenArmor", 1},
  69.                     };
  70. int picksweight = 0;
  71.  
  72. int pwrupodds[7][2] = {
  73.                         {"SoulSphere", 10},
  74.                         {"MegaSphere", 4},
  75.                         {"BlurSphere", 4},
  76.                         {"BlueArmor", 6},
  77.                         {"InvulnerabilitySphere", 1},
  78.                         {"Berserk", 10},
  79.                     };
  80. int pwrupweight = 0;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement