Skip to content
This repository has been archived by the owner on Oct 26, 2023. It is now read-only.

Commit

Permalink
me
Browse files Browse the repository at this point in the history
  • Loading branch information
fl0werD committed Feb 27, 2021
1 parent 77d790c commit f9b0c47
Show file tree
Hide file tree
Showing 135 changed files with 10,009 additions and 7,355 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,14 @@ jobs:
run: |
cp -Rf ./rezombieplague/* ./addons/amxmodx/scripting
mkdir -p ./addons/amxmodx/plugins/rezp/addons
mkdir -p ./addons/amxmodx/plugins/rezp/classes
mkdir -p ./addons/amxmodx/plugins/rezp/gamemodes
mkdir -p ./addons/amxmodx/plugins/rezp/items
mkdir -p ./addons/amxmodx/plugins/rezp/menus
mkdir -p ./addons/amxmodx/plugins/rezp/subclasses
mkdir -p ./addons/amxmodx/plugins/rezp/weapons
mkdir -p ./addons/amxmodx/plugins/rezombieplague/api
mkdir -p ./addons/amxmodx/plugins/rezombieplague/addons
mkdir -p ./addons/amxmodx/plugins/rezombieplague/player
mkdir -p ./addons/amxmodx/plugins/rezombieplague/gamemodes
mkdir -p ./addons/amxmodx/plugins/rezombieplague/items
mkdir -p ./addons/amxmodx/plugins/rezombieplague/menus
mkdir -p ./addons/amxmodx/plugins/rezombieplague/weapons
mkdir -p ./addons/amxmodx/plugins/rezombieplague/configs
cd addons/amxmodx/scripting
chmod +x amxxpc32.so
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
/_PUBLISH
ReZP_publish.*
*compiler
*compiler
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ ReHLDS, ReGameDLL, Metamod-r (or Metamod-P), AMX Mod X, ReAPI.
## How can I help the project?
Just install it on your game server and report problems you faced.

## Credits
## Acknowledgments
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/>
Thanks to humans: wellasgood, Nvoymax, Alex, DANDY, steelzzz, Droads, Nordic Warrior, kostikovkirill, CaHTuK, Bodom, DimaS, bristol, wopox1337, nrjdemon, PurposeLess and others.<br/>
88 changes: 88 additions & 0 deletions extra/addons/amxmodx/configs/plugins-rezombieplague.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
; API
rezombieplague/api/rz_api_main.amxx
rezombieplague/api/rz_api_gamemodes.amxx
rezombieplague/api/rz_api_weapons.amxx
rezombieplague/api/rz_api_items.amxx
rezombieplague/api/rz_api_player.amxx
rezombieplague/api/rz_api_player_class.amxx
rezombieplague/api/rz_api_player_subclass.amxx
rezombieplague/api/rz_api_player_props.amxx
rezombieplague/api/rz_api_player_models.amxx
rezombieplague/api/rz_api_player_sounds.amxx
rezombieplague/api/rz_api_player_nightvision.amxx

; General
rezombieplague/rz_main.amxx
rezombieplague/rz_gamerules.amxx
rezombieplague/rz_gamemodes.amxx
rezombieplague/rz_weapons.amxx
rezombieplague/rz_player.amxx

; Player & yours
rezombieplague/player/rz_class_zombie.amxx
rezombieplague/player/rz_class_human.amxx
rezombieplague/player/rz_class_nemesis.amxx
rezombieplague/player/rz_class_survivor.amxx
rezombieplague/player/rz_class_assassin.amxx
rezombieplague/player/rz_class_sniper.amxx
rezombieplague/player/rz_subzombie_jumper.amxx
rezombieplague/player/rz_subzombie_sprinter.amxx
rezombieplague/player/rz_subzombie_stone.amxx
rezombieplague/player/rz_subhuman_techno.amxx
rezombieplague/player/rz_subhuman_dead.amxx

; Game Modes & yours
rezombieplague/gamemodes/rz_gamemode_multi.amxx
rezombieplague/gamemodes/rz_gamemode_swarm.amxx
rezombieplague/gamemodes/rz_gamemode_nemesis.amxx
rezombieplague/gamemodes/rz_gamemode_survivor.amxx
rezombieplague/gamemodes/rz_gamemode_plague.amxx
rezombieplague/gamemodes/rz_gamemode_assassin.amxx
rezombieplague/gamemodes/rz_gamemode_sniper.amxx
rezombieplague/gamemodes/rz_gamemode_lnj.amxx
rezombieplague/gamemodes/rz_gamemode_avs.amxx

; Weapons & yours
rezombieplague/weapons/rz_wpn_fire_grenade.amxx
rezombieplague/weapons/rz_wpn_frost_grenade.amxx
rezombieplague/weapons/rz_wpn_flare_grenade.amxx
rezombieplague/weapons/rz_wpn_infect_grenade.amxx
rezombieplague/weapons/rz_wpn_sniperawp.amxx

; Items & yours
rezombieplague/items/rz_item_madness.amxx
rezombieplague/items/rz_item_antidote.amxx
rezombieplague/items/rz_item_grenades.amxx
rezombieplague/items/rz_item_weapons.amxx
rezombieplague/items/rz_item_nightvision.amxx
rezombieplague/items/rz_item_armor.amxx

; Menus
rezombieplague/menus/rz_menu_game.amxx
rezombieplague/menus/rz_menu_weapons.amxx
rezombieplague/menus/rz_menu_items.amxx
rezombieplague/menus/rz_menu_choose_zombie.amxx
rezombieplague/menus/rz_menu_admin.amxx
rezombieplague/menus/rz_menu_admin_respawn.amxx
rezombieplague/menus/rz_menu_admin_gamemodes.amxx
rezombieplague/menus/rz_menu_admin_changeclass.amxx
rezombieplague/menus/rz_menu_instant_zombie.amxx
rezombieplague/menus/rz_menu_join_human.amxx

; Addons
rezombieplague/addons/rz_addon_round_notice.amxx
rezombieplague/addons/rz_addon_awards.amxx
rezombieplague/addons/rz_addon_playerinfo.amxx
rezombieplague/addons/rz_addon_statusbar.amxx
rezombieplague/addons/rz_addon_buyammo.amxx
rezombieplague/addons/rz_addon_flashlight.amxx
rezombieplague/addons/rz_addon_longjump.amxx
rezombieplague/addons/rz_addon_bleeding.amxx

; Configs (with final precaching)
rezombieplague/configs/rz_config_gamemodes.amxx
rezombieplague/configs/rz_config_weapons.amxx
rezombieplague/configs/rz_config_items.amxx
rezombieplague/configs/rz_config_player.amxx

; Add 3rd party plugins here
77 changes: 0 additions & 77 deletions extra/addons/amxmodx/configs/plugins-rezp.ini

This file was deleted.

43 changes: 0 additions & 43 deletions extra/addons/amxmodx/configs/rezp/main.json

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ 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_CHOOSE_SUBCLASS = Choose %l Class
RZ_MENU_GAME_JOIN_GAME = Join Game
RZ_MENU_GAME_JOIN_SPECS = Join Spectators
RZ_MENU_GAME_ADMIN = Admin Menu
Expand All @@ -33,7 +34,7 @@ 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_SEC_KNIFE = Knife
RZ_MENU_WPN_BUY_SELECT = Buy Selection
RZ_WIN_HUMAN = Humans Win!
RZ_WIN_ZOMBIE = Zombies Win!
Expand All @@ -44,4 +45,6 @@ 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_INFECTION_START = INFECTION STARTING IN %d...
RZ_ROUND_END = ROUND ENDING IN %d...
RZ_NOTICE_VIRUS_FREE = The virus has been set loose...
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
[en]
RZ_ITEMS_INSUFFICIENT_FUNDS = Insufficient funds to purchase! ^3%L^1 cost: ^4%L
RZ_ITEMS_PLAYER_BOUGHT = Player ^3%n ^1bought ^4%l
RZ_ITEMS_TITLE = Extra Items
RZ_ITEM_MADNESS = Madness
RZ_ITEM_ANTIDOTE = Antidote
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
[en]
RZ_ZOMBIE = Zombie
RZ_HUMAN = Human
RZ_NEMESIS = Nemesis
RZ_SURVIVOR = Survivor
RZ_ASSASSIN = Assassin
RZ_SNIPER = Sniper

RZ_SUBZOMBIE_JUMPER_NAME = Jumper
RZ_SUBZOMBIE_JUMPER_DESC = Gravity+
RZ_SUBZOMBIE_SPRINTER_NAME = Sprinter
Expand Down
45 changes: 45 additions & 0 deletions extra/addons/amxmodx/data/lang/rezombieplague/en/weapons.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
[en]
RZ_WPN_GLOCK18 = Glock-18
RZ_WPN_USP = USP
RZ_WPN_P228 = 228 Compact
RZ_WPN_DEAGLE = Desert Eagle
RZ_WPN_ELITE = Dual Berettas
RZ_WPN_FIVESEVEN = Five-SeveN

RZ_WPN_M3 = M3
RZ_WPN_XM1014 = XM1014

RZ_WPN_MAC10 = MAC-10
RZ_WPN_TMP = TMP
RZ_WPN_MP5NAVY = MP5
RZ_WPN_UMP45 = UMP-45
RZ_WPN_P90 = P90

RZ_WPN_GALIL = Galil
RZ_WPN_FAMAS = FAMAS
RZ_WPN_AK47 = AK-47
RZ_WPN_M4A1 = M4A1
RZ_WPN_SG552 = SG 552
RZ_WPN_AUG = AUG
RZ_WPN_SCOUT = Scout
RZ_WPN_AWP = AWP
RZ_WPN_G3SG1 = G3SG1
RZ_WPN_SG550 = SG 550

RZ_WPN_M249 = M249

RZ_WPN_HEGRENADE = HE Grenade
RZ_WPN_HE_SHORT = HE
RZ_WPN_FLASHBANG = Flashbang
RZ_WPN_FB_SHORT = FB
RZ_WPN_SMOKEGRENADE = Smoke Grenade
RZ_WPN_SMOKE_SHORT = Smoke

RZ_WPN_FIRE_GRENADE = Fire Grenade
RZ_WPN_FIRE_SHORT = Fire
RZ_WPN_FROST_GRENADE = Frost Grenade
RZ_WPN_FROST_SHORT = Frost
RZ_WPN_FLARE_GRENADE = Flare Grenade
RZ_WPN_FLARE_SHORT = Flare

RZ_WPN_KNIFE = Knife
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ RZ_TIME_LEFT = Осталось времени
RZ_MENU_GAME_TITLE = Игровое меню
RZ_MENU_GAME_SELECT_WPNS = Выбрать оружие
RZ_MENU_GAME_BUY_EXTRA = Купить Спец-вещи
RZ_MENU_GAME_CHOOSE_SUBCLASS = Выбрать %l класс
RZ_MENU_GAME_JOIN_GAME = Войти в игру
RZ_MENU_GAME_JOIN_SPECS = В зрители
RZ_MENU_GAME_ADMIN = Админ-меню
Expand All @@ -33,7 +34,7 @@ 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_SEC_KNIFE = Нож
RZ_MENU_WPN_BUY_SELECT = Купить
RZ_WIN_HUMAN = Люди победили!
RZ_WIN_ZOMBIE = Зомби победили!
Expand All @@ -44,4 +45,6 @@ RZ_PRESS_BUY_AMMO = Нажмите ^4«,» ^1или ^4«.» ^1для покуп
RZ_WARMUP = РАЗМИНКА %d:%02d
RZ_WARMUP_END = РАЗМИНКА ЗАКОНЧИТСЯ ЧЕРЕЗ %d:%02d
RZ_WARMUP_START = ВОЙНА НАЧНЕТСЯ ЧЕРЕЗ %d...
RZ_INFECTION_START = ЗАРАЖЕНИЕ НАЧНЕТСЯ ЧЕРЕЗ %d...
RZ_ROUND_END = РАУНД ЗАКОНЧИТСЯ ЧЕРЕЗ %d...
RZ_NOTICE_VIRUS_FREE = Вирус витает в воздухе...
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
[ru]
RZ_ITEMS_INSUFFICIENT_FUNDS = Недостаточно средств для покупки! Стоимость ^3%L^1: ^4%L
RZ_ITEMS_PLAYER_BOUGHT = Игрок ^3%n ^1купил ^4%l
RZ_ITEMS_TITLE = Специальные вещи
RZ_ITEM_MADNESS = Бешенство
RZ_ITEM_ANTIDOTE = Антидот
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
[ru]
RZ_ZOMBIE = Зомби
RZ_HUMAN = Человек
RZ_NEMESIS = Немезида
RZ_SURVIVOR = Выживший
RZ_ASSASSIN = Убийца
RZ_SNIPER = Снайпер

RZ_SUBZOMBIE_JUMPER_NAME = Попрыгунчик
RZ_SUBZOMBIE_JUMPER_DESC = Гравитация+
RZ_SUBZOMBIE_SPRINTER_NAME = Спринтер
Expand Down
16 changes: 16 additions & 0 deletions extra/addons/amxmodx/data/lang/rezombieplague/ru/weapons.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[ru]
RZ_WPN_HEGRENADE = Осколочная граната
RZ_WPN_HE_SHORT = Осколочная
RZ_WPN_FLASHBANG = Световая граната
RZ_WPN_FB_SHORT = Световая
RZ_WPN_SMOKEGRENADE = Дымовая граната
RZ_WPN_SMOKE_SHORT = Дымовая

RZ_WPN_FIRE_GRENADE = Поджигающая граната
RZ_WPN_FIRE_SHORT = Поджигающая
RZ_WPN_FROST_GRENADE = Замораживющая граната
RZ_WPN_FROST_SHORT = Замораживющая
RZ_WPN_FLARE_GRENADE = Освещающая граната
RZ_WPN_FLARE_SHORT = Освещающая

RZ_WPN_KNIFE = Нож
Loading

0 comments on commit f9b0c47

Please sign in to comment.