This repository was archived by the owner on Oct 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 1958b07
Showing
189 changed files
with
12,478 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# ReZombiePlague | ||
|
||
## What is this? | ||
ReZombiePlague is the result of the development of a modification for the Counter-Strike game based on the original Zombie Plague modification using modern technologies and deeper integration over the game library. | ||
|
||
## Goals of the project | ||
* Develop a modification architecture from scratch with the experience of previous years. | ||
* Minimum dependencies between plugins. | ||
* Extended API for plugins and minimum boilerplate code coverage. | ||
|
||
## Requirements | ||
ReHLDS, ReGameDLL, Metamod-r (or Metamod-P), AMX Mod X, ReAPI. | ||
* Tip: Recommend using the latest versions. | ||
|
||
## How can I help the project? | ||
Just install it on your game server and report problems you faced. | ||
|
||
## Credits | ||
Thanks to projects: ReGameDLL_CS, AMX Mod X, ReAPI<br/> | ||
Thanks to humans: wellasgood, Nvoymax, Alex, DANDY, steelzzz, Droads, Nordic Warrior, kostikovkirill, CaHTuK, Bodom, DimaS, bristol, wopox1337 and others.<br/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
// Cores | ||
rezp/rz_main.amxx | ||
rezp/rz_gamerules.amxx | ||
rezp/rz_gamemode.amxx | ||
rezp/rz_weapons.amxx | ||
rezp/rz_items.amxx | ||
rezp/rz_player.amxx | ||
rezp/rz_player_class.amxx | ||
rezp/rz_player_subclass.amxx | ||
rezp/rz_player_props.amxx | ||
rezp/rz_player_models.amxx | ||
rezp/rz_player_sounds.amxx | ||
rezp/rz_player_melee.amxx | ||
rezp/rz_player_nightvision.amxx | ||
|
||
// Game Modes | ||
rezp/gamemodes/rz_gamemode_multi.amxx | ||
rezp/gamemodes/rz_gamemode_swarm.amxx | ||
rezp/gamemodes/rz_gamemode_nemesis.amxx | ||
rezp/gamemodes/rz_gamemode_survivor.amxx | ||
rezp/gamemodes/rz_gamemode_plague.amxx | ||
rezp/gamemodes/rz_gamemode_assassin.amxx | ||
rezp/gamemodes/rz_gamemode_sniper.amxx | ||
rezp/gamemodes/rz_gamemode_lnj.amxx | ||
rezp/gamemodes/rz_gamemode_avs.amxx | ||
|
||
// Classes | ||
rezp/classes/rz_class_zombie.amxx | ||
rezp/classes/rz_class_human.amxx | ||
rezp/classes/rz_class_nemesis.amxx | ||
rezp/classes/rz_class_survivor.amxx | ||
rezp/classes/rz_class_assassin.amxx | ||
rezp/classes/rz_class_sniper.amxx | ||
|
||
// Sub-Classes | ||
rezp/subclasses/rz_subzombie_jumper.amxx | ||
rezp/subclasses/rz_subzombie_sprinter.amxx | ||
rezp/subclasses/rz_subzombie_stone.amxx | ||
rezp/subclasses/rz_subhuman_techno.amxx | ||
rezp/subclasses/rz_subhuman_dead.amxx | ||
|
||
// Weapons | ||
rezp/weapons/rz_wpn_fire_grenade.amxx | ||
rezp/weapons/rz_wpn_frost_grenade.amxx | ||
rezp/weapons/rz_wpn_flare_grenade.amxx | ||
rezp/weapons/rz_wpn_infection_bomb.amxx | ||
rezp/weapons/rz_wpn_sniperawp.amxx | ||
|
||
// Items | ||
rezp/items/rz_item_madness.amxx | ||
rezp/items/rz_item_antidote.amxx | ||
rezp/items/rz_item_grenades.amxx | ||
rezp/items/rz_item_weapons.amxx | ||
rezp/items/rz_item_nightvision.amxx | ||
rezp/items/rz_item_armor.amxx | ||
|
||
// Menus | ||
rezp/menus/rz_menu_game.amxx | ||
rezp/menus/rz_menu_weapons.amxx | ||
rezp/menus/rz_menu_items.amxx | ||
rezp/menus/rz_menu_choose_zombie.amxx | ||
rezp/menus/rz_menu_admin.amxx | ||
rezp/menus/rz_menu_admin_respawn.amxx | ||
rezp/menus/rz_menu_admin_gamemodes.amxx | ||
rezp/menus/rz_menu_admin_changeclass.amxx | ||
rezp/menus/rz_menu_instant_zombie.amxx | ||
rezp/menus/rz_menu_join_human.amxx | ||
|
||
// Addons | ||
rezp/addons/rz_addon_round_notice.amxx | ||
rezp/addons/rz_addon_respawn.amxx | ||
rezp/addons/rz_addon_awards.amxx | ||
rezp/addons/rz_addon_playerinfo.amxx | ||
rezp/addons/rz_addon_statusbar.amxx | ||
rezp/addons/rz_addon_buyammo.amxx | ||
rezp/addons/rz_addon_flashlight.amxx | ||
rezp/addons/rz_addon_bleeding.amxx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
{ | ||
"server_browser_info": "Re Zombie Plague", | ||
"custom_sky_names": | ||
[ | ||
"space", | ||
"blue" | ||
], | ||
"global_lighting": "c", | ||
"nightvision_lighting": "z", | ||
"roundover_ct_win": false, | ||
"award_notice": true, | ||
"chat_prefix": "[RZ]", | ||
"prepare_time": 20, | ||
"round_time": 180, | ||
"warmup": | ||
{ | ||
"enabled": true, | ||
"time": 40 | ||
}, | ||
"ammopacks": | ||
{ | ||
"enabled": true, | ||
"join_amount": 100 | ||
}, | ||
"useless_entities": | ||
[ | ||
"func_bomb_target", | ||
"info_bomb_target", | ||
"info_vip_start", | ||
"func_vip_safetyzone", | ||
"func_escapezone", | ||
"func_hostage_rescue", | ||
"info_hostage_rescue", | ||
"hostage_entity", | ||
"armoury_entity", | ||
"player_weaponstrip", | ||
"game_player_equip", | ||
"env_fog", | ||
"env_rain", | ||
"env_snow", | ||
"monster_scientist" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[en] | ||
RZ_AWARD_PLAYER_KILLED = Award for neutralizing an enemy. | ||
RZ_AWARD_PLAYER_INFECT = Award for infecting an enemy. | ||
RZ_AWARD_TEAM_WIN = Team award. | ||
RZ_AWARD_TEAM_LOSER = Income for losing. | ||
RZ_AWARD_TEAM_DRAW = Team award. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[en] | ||
RZ_ZOMBIE = Zombie | ||
RZ_HUMAN = Human | ||
RZ_NEMESIS = Nemesis | ||
RZ_SURVIVOR = Survivor | ||
RZ_ASSASSIN = Assassin | ||
RZ_SNIPER = Sniper |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
[en] | ||
RZ_FMT_DOLLARS = $%d | ||
RZ_FMT_AMMOPACKS = %d ammo packs | ||
RZ_FRIEND = Friend | ||
RZ_ENEMY = Enemy | ||
RZ_HEALTH = Health | ||
RZ_SPECTATING = Spectating | ||
RZ_AMMOPACKS = Ammo packs | ||
RZ_CLASS = Class | ||
RZ_TURN_INTO = Turn into | ||
RZ_DEAD = *DEAD* | ||
RZ_EMPTY = Empty | ||
RZ_NEXT = Next | ||
RZ_BACK = Back | ||
RZ_EXIT = Exit | ||
RZ_CLOSE = Close | ||
RZ_AUTOSELECT = Auto Select | ||
RZ_TIME_LEFT = Time Left | ||
RZ_MENU_GAME_TITLE = Game Menu | ||
RZ_MENU_GAME_SELECT_WPNS = Select Weapons | ||
RZ_MENU_GAME_BUY_EXTRA = Buy Extra Items | ||
RZ_MENU_GAME_JOIN_GAME = Join Game | ||
RZ_MENU_GAME_JOIN_SPECS = Join Spectators | ||
RZ_MENU_GAME_ADMIN = Admin Menu | ||
RZ_MENU_WPN_TITLE = Select Weapons | ||
RZ_MENU_WPN_TIMER = Remaining time | ||
RZ_MENU_WPN_FIELD_WPN = Weapons | ||
RZ_MENU_WPN_FIELD_EQUIP = Equipment | ||
RZ_MENU_WPN_SEC_TITLE = Select | ||
RZ_MENU_WPN_SEC_PISTOL = Pistol | ||
RZ_MENU_WPN_SEC_SHOTGUN = Shotgun | ||
RZ_MENU_WPN_SEC_SMG = SMG | ||
RZ_MENU_WPN_SEC_RIFLE = Rifle | ||
RZ_MENU_WPN_SEC_MACHINEGUN = Machine Gun | ||
RZ_MENU_WPN_SEC_EQUIP = Equipment | ||
RZ_MENU_WPN_SEC_MELEE = Melee | ||
RZ_MENU_WPN_BUY_SELECT = Buy Selection | ||
RZ_WIN_HUMAN = Humans Win! | ||
RZ_WIN_ZOMBIE = Zombies Win! | ||
RZ_WIN_NO_ONE = No one won... | ||
RZ_SELECT_SUBCLASS = Select %l Class | ||
RZ_PRESS_GAME_MENU = Press ^4«M» ^1to show the game menu | ||
RZ_PRESS_BUY_AMMO = Press ^4«,» ^1or ^4«.» ^1to purchase ammo | ||
RZ_WARMUP = WARMUP %d:%02d | ||
RZ_WARMUP_END = WARMUP ENDING IN %d:%02d | ||
RZ_WARMUP_START = WAR STARTING IN %d... | ||
RZ_NOTICE_VIRUS_FREE = The virus has been set loose... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[en] | ||
RZ_GAMEMODE_FMT = ~ %L ~ | ||
RZ_GAMEMODE_MULTI = Multiple Infection Mode | ||
RZ_GAMEMODE_SWARM = Swarm Mode | ||
RZ_GAMEMODE_NEMESIS = Nemesis Mode | ||
RZ_GAMEMODE_SURVIVOR = Survivor Mode | ||
RZ_GAMEMODE_PLAGUE = Plague Mode | ||
RZ_GAMEMODE_ASSASSIN = Assassin Mode | ||
RZ_GAMEMODE_SNIPER = Sniper Mode | ||
RZ_GAMEMODE_LNJ = Armageddon Mode | ||
RZ_GAMEMODE_AVS = Assassins vs Snipers Mode | ||
RZ_GAMEMODE_NOTICE_MULTI = Multiple Infection | ||
RZ_GAMEMODE_NOTICE_SWARM = Swarm Mode | ||
RZ_GAMEMODE_NOTICE_NEMESIS = Nemesis Mode | ||
RZ_GAMEMODE_NOTICE_SURVIVOR = Survivor Mode | ||
RZ_GAMEMODE_NOTICE_PLAGUE = Plague Mode | ||
RZ_GAMEMODE_NOTICE_ASSASSIN = Assassin Mode | ||
RZ_GAMEMODE_NOTICE_SNIPER = Sniper Mode | ||
RZ_GAMEMODE_NOTICE_ARMAGEDDON = Armageddon Mode | ||
RZ_GAMEMODE_NOTICE_AVS = Assassins vs Snipers Mode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
[en] | ||
RZ_ITEMS_TITLE = Extra Items | ||
RZ_ITEM_MADNESS = Madness | ||
RZ_ITEM_ANTIDOTE = Antidote | ||
RZ_ITEM_NIGHTVISION = Nightvision | ||
RZ_ITEM_ARMOR = Armor | ||
RZ_ITEM_WPN_AWP = AWP Magnum Sniper | ||
RZ_ITEM_WPN_M249 = M249 Para Machinegun | ||
RZ_ITEM_WPN_SG550 = SG550 Auto-Sniper | ||
RZ_ITEM_WPN_G3SG1 = G3SG1 Auto-Sniper | ||
RZ_ITEM_NADE_INFECTION = Infection Bomb | ||
RZ_ITEM_NADE_FIRE = Napalm Grenade | ||
RZ_ITEM_NADE_FROST = Frost Grenade | ||
RZ_ITEM_NADE_FLARE = Flare Grenade |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[en] | ||
RZ_SUBZOMBIE_JUMPER_NAME = Jumper | ||
RZ_SUBZOMBIE_JUMPER_DESC = Gravity+ | ||
RZ_SUBZOMBIE_SPRINTER_NAME = Sprinter | ||
RZ_SUBZOMBIE_SPRINTER_DESC = Speed+ | ||
RZ_SUBZOMBIE_STONE_NAME = Stone | ||
RZ_SUBZOMBIE_STONE_DESC = HP+ | ||
RZ_SUBHUMAN_TECHNO_NAME = Techno Dancer | ||
RZ_SUBHUMAN_TECHNO_DESC = HP+ | ||
RZ_SUBHUMAN_DEAD_NAME = Dead Inside | ||
RZ_SUBHUMAN_DEAD_DESC = Armor+ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[ru] | ||
RZ_AWARD_PLAYER_KILLED = Награда за нейтрализацию врага. | ||
RZ_AWARD_PLAYER_INFECT = Награда за заражение врага. | ||
RZ_AWARD_TEAM_WIN = Командная награда. | ||
RZ_AWARD_TEAM_LOSER = Награда за проигрыш. | ||
RZ_AWARD_TEAM_DRAW = Командная награда. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[ru] | ||
RZ_ZOMBIE = Зомби | ||
RZ_HUMAN = Человек | ||
RZ_NEMESIS = Немезида | ||
RZ_SURVIVOR = Выживший | ||
RZ_ASSASSIN = Убийца | ||
RZ_SNIPER = Снайпер |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
[ru] | ||
RZ_FMT_DOLLARS = $%d | ||
RZ_FMT_AMMOPACKS = %d кр. | ||
RZ_FRIEND = Друг | ||
RZ_ENEMY = Враг | ||
RZ_HEALTH = Здоровье | ||
RZ_SPECTATING = Наблюдение | ||
RZ_AMMOPACKS = Кредиты | ||
RZ_CLASS = Класс | ||
RZ_TURN_INTO = Превратить в | ||
RZ_DEAD = *МЕРТВ* | ||
RZ_EMPTY = Пусто | ||
RZ_NEXT = Далее | ||
RZ_BACK = Назад | ||
RZ_EXIT = Выход | ||
RZ_CLOSE = Закрыть | ||
RZ_AUTOSELECT = Авто-выбор | ||
RZ_TIME_LEFT = Осталось времени | ||
RZ_MENU_GAME_TITLE = Игровое меню | ||
RZ_MENU_GAME_SELECT_WPNS = Выбрать оружие | ||
RZ_MENU_GAME_BUY_EXTRA = Купить Спец-вещи | ||
RZ_MENU_GAME_JOIN_GAME = Войти в игру | ||
RZ_MENU_GAME_JOIN_SPECS = В зрители | ||
RZ_MENU_GAME_ADMIN = Админ-меню | ||
RZ_MENU_WPN_TITLE = Выбор оружия | ||
RZ_MENU_WPN_TIMER = Осталось | ||
RZ_MENU_WPN_FIELD_WPN = Оружие | ||
RZ_MENU_WPN_FIELD_EQUIP = Экипировка | ||
RZ_MENU_WPN_SEC_TITLE = Выбор | ||
RZ_MENU_WPN_SEC_PISTOL = Пистолет | ||
RZ_MENU_WPN_SEC_SHOTGUN = Дробовик | ||
RZ_MENU_WPN_SEC_SMG = Пистолет-пулемет | ||
RZ_MENU_WPN_SEC_RIFLE = Винтовка | ||
RZ_MENU_WPN_SEC_MACHINEGUN = Тяжелое | ||
RZ_MENU_WPN_SEC_EQUIP = Снаряжение | ||
RZ_MENU_WPN_SEC_MELEE = Нож | ||
RZ_MENU_WPN_BUY_SELECT = Купить | ||
RZ_WIN_HUMAN = Люди победили! | ||
RZ_WIN_ZOMBIE = Зомби победили! | ||
RZ_WIN_NO_ONE = На этот раз ничья... | ||
RZ_SELECT_SUBCLASS = Выбор класса %l | ||
RZ_PRESS_GAME_MENU = Нажмите ^4«M» ^1чтобы открыть игровое меню | ||
RZ_PRESS_BUY_AMMO = Нажмите ^4«,» ^1или ^4«.» ^1для покупки патронов | ||
RZ_WARMUP = РАЗМИНКА %d:%02d | ||
RZ_WARMUP_END = РАЗМИНКА ЗАКОНЧИТСЯ ЧЕРЕЗ %d:%02d | ||
RZ_WARMUP_START = ВОЙНА НАЧНЕТСЯ ЧЕРЕЗ %d... | ||
RZ_NOTICE_VIRUS_FREE = Вирус витает в воздухе... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[ru] | ||
RZ_GAMEMODE_FMT = ~ %L ~ | ||
RZ_GAMEMODE_MULTI = Массовое Заражение | ||
RZ_GAMEMODE_SWARM = Куча на кучу | ||
RZ_GAMEMODE_NEMESIS = Дьявол | ||
RZ_GAMEMODE_SURVIVOR = Выживший | ||
RZ_GAMEMODE_PLAGUE = Чума расползается | ||
RZ_GAMEMODE_ASSASSIN = Убийца | ||
RZ_GAMEMODE_SNIPER = Снайпер | ||
RZ_GAMEMODE_LNJ = Армагеддон | ||
RZ_GAMEMODE_AVS = Убийцы против Снайперов | ||
RZ_GAMEMODE_NOTICE_MULTI = Массовое Заражение | ||
RZ_GAMEMODE_NOTICE_SWARM = Куча на кучу | ||
RZ_GAMEMODE_NOTICE_NEMESIS = Дьявол | ||
RZ_GAMEMODE_NOTICE_SURVIVOR = Выживший | ||
RZ_GAMEMODE_NOTICE_PLAGUE = Чума расползается | ||
RZ_GAMEMODE_NOTICE_ASSASSIN = Убийца | ||
RZ_GAMEMODE_NOTICE_SNIPER = Снайпер | ||
RZ_GAMEMODE_NOTICE_LNJ = Армагеддон | ||
RZ_GAMEMODE_NOTICE_AVS = Убийцы против Снайперов |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
[ru] | ||
RZ_ITEMS_TITLE = Специальные вещи | ||
RZ_ITEM_MADNESS = Бешенство | ||
RZ_ITEM_ANTIDOTE = Антидот | ||
RZ_ITEM_NIGHTVISION = Ночное видение | ||
RZ_ITEM_ARMOR = Бронежилет | ||
RZ_ITEM_WPN_AWP = Винтовка AWP | ||
RZ_ITEM_WPN_M249 = Пулемет M249 | ||
RZ_ITEM_WPN_SG550 = Винтовка SG550 | ||
RZ_ITEM_WPN_G3SG1 = Винтовка G3SG1 | ||
RZ_ITEM_NADE_INFECTION = Граната-вирус | ||
RZ_ITEM_NADE_FIRE = Граната Napalm | ||
RZ_ITEM_NADE_FROST = Граната Frost | ||
RZ_ITEM_NADE_FLARE = Граната Flare |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[ru] | ||
RZ_SUBZOMBIE_JUMPER_NAME = Попрыгунчик | ||
RZ_SUBZOMBIE_JUMPER_DESC = Гравитация+ | ||
RZ_SUBZOMBIE_SPRINTER_NAME = Спринтер | ||
RZ_SUBZOMBIE_SPRINTER_DESC = Скорость+ | ||
RZ_SUBZOMBIE_STONE_NAME = Камень | ||
RZ_SUBZOMBIE_STONE_DESC = Здоровье+ | ||
RZ_SUBHUMAN_TECHNO_NAME = Техно-танцор | ||
RZ_SUBHUMAN_TECHNO_DESC = Здоровье+ | ||
RZ_SUBHUMAN_DEAD_NAME = Мертвый внутри | ||
RZ_SUBHUMAN_DEAD_DESC = Броня+ |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+2.96 KB
extra/addons/amxmodx/plugins/rezp/gamemodes/rz_gamemode_assassin.amxx
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+2.77 KB
extra/addons/amxmodx/plugins/rezp/gamemodes/rz_gamemode_survivor.amxx
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+4.84 KB
extra/addons/amxmodx/plugins/rezp/menus/rz_menu_admin_changeclass.amxx
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.54 KB
extra/addons/amxmodx/plugins/rezp/subclasses/rz_subzombie_jumper.amxx
Binary file not shown.
Binary file added
BIN
+1.6 KB
extra/addons/amxmodx/plugins/rezp/subclasses/rz_subzombie_sprinter.amxx
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.