Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2014
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.62 KB | None | 0 0
  1. e-write of dias cso exhero. to a new server.
  2. --------------------------------------------------------------------
  3. Core:
  4.  
  5. -Zombies need to reduce armor for the human to get infected, Should work with bots too.
  6.  
  7. -Random start sounds, add this function in main .ini file.
  8.  
  9. -Remove old unlock system/buymenu, add new system with level system(more of that below)
  10.  
  11. --------------------------------------------------------------------
  12. Sub-Plugins:
  13.  
  14. -Supplybox, here you can obtain all weapons in the game. totally random(Like cso)
  15.  
  16. -Boss in last round of map(Map will switch to a CSO arena, with an npc boss)
  17. There is bosses to download(Maybe from dias, to recode a bit)
  18.  
  19. -Money bank (200k limit for admins), money limit will increase as u gain levels as a normal player.
  20.  
  21. --------------------------------------------------------------------
  22. Buymenu Config:
  23.  
  24. -you need levels to unlock more weapons and items.
  25.  
  26. -weapons will have levels.
  27.  
  28. -Easy to add weapons/items in an cfg or ini file. with the registered name(todo) in the weapons .sma.
  29.  
  30. --------------------------------------------------------------------
  31. Layout in ini:
  32.  
  33. WPN_PRI
  34. {
  35. name todo cost lvl
  36. "M4a1 Carbine!" "weapon_m4a1" "3500" "10"
  37. }
  38.  
  39. WPN_SEC
  40. {
  41. "Usp!" "weapon_usp" "3500" "10"
  42. }
  43.  
  44. EXTRA_HUMANS
  45. {
  46. "Buy Hp!" "Health_points" "3500" "10"
  47. }
  48.  
  49. EXTRA_ZOMBIES
  50. {
  51. "Buy Hp!" "Health_points" "3500" "10"
  52. }
  53.  
  54. KNIFES_HUMAN
  55. {
  56. "Balrog-IX" "Balrog-9" "5000" "20"
  57. }
  58.  
  59. LEVEL_EXP
  60. {
  61. 1000 //lvl 20
  62. 900 //lvl 19
  63. 800
  64. 700
  65. 600
  66. 500.. etc
  67. }
  68.  
  69. --------------------------------------------------------------------
  70. Layout in cfg:
  71.  
  72. inf_human_win_reward 5000
  73.  
  74. inf_human_lose_reward 500
  75.  
  76. inf_human_no_one_reward 1000
  77.  
  78. inf_human_damage_reward 2 //x money per dmg
  79.  
  80. inf_human_kill_reward 1000
  81.  
  82. inf_zombie_win_reward 5000
  83.  
  84. inf_zombie_lose_reward 500
  85.  
  86. inf_zombie_no_one_reward 1000
  87.  
  88. inf_zombie_kill_reward 500
  89.  
  90. inf_zombie_open_all_menu 1
  91.  
  92. inf_human_open_all_menu 1
  93.  
  94. inf_off_menu_mode_started 1
  95.  
  96. inf_time_to_buy 20.0
  97.  
  98. inf_lvl_system_active 1 // on/off
  99.  
  100. inf_lvl_system_max_levels 30
  101.  
  102. inf_lvl_system_active_zombie 1
  103.  
  104. inf_lvl_system_given_xp_kill 2 //per zombie/human kill
  105.  
  106. inf_lvl_system_given_xp_infect 1 //per human infect
  107.  
  108.  
  109. --------------------------------------------------------------------
  110.  
  111. Example of mainmenu:
  112.  
  113. 1. Zombie Class
  114.  
  115. 2. Unstuck Yourself!
  116.  
  117. 3. Help!
  118.  
  119. 4. Admin Menu(Like zp 4.3).
  120.  
  121.  
  122. Example of Buymenu layout:
  123.  
  124. 1. Buy Previous
  125.  
  126. 2. Primary Weapon
  127.  
  128. 3. Secondary Weapon
  129.  
  130. 4. Extra Items
  131.  
  132. 5. Knifes
  133.  
  134. --------------------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement