Find everything you need for Zombie Mod servers in CS 1.6 – plugins, models, skins, and full addons. All in one place, ready to download and use instantly.
Bring a terrifying and iconic CSO enemy to your server with the CSO Zombie Banshee pack, inspired by Counter-Strike Online. This release includes 8 different Banshee variants, along with custom sound effects and sprites, delivering a fully immersive zombie experience.
Version
Author
Requirements
Mod for
N/A
N/A
N/A
Zp / Bio / Ze
CSO Zombie Blotter Pack (6 Types + Variants)
Counter-Strike
01-09-2026, 05:38 PM Downloads: 7 • Views: 217
CSO Zombie Blotter Pack (6 Types + Variants)
Add a powerful and intimidating enemy to your server with the CSO Zombie Blotter, inspired by Counter-Strike Online. This pack includes 6 different Blotter types, each bringing visual variety and a more immersive zombie experience, along with custom sound effects.
Version
Author
Requirements
Mod for
N/A
N/A
N/A
Zp / Bio / Ze
CSO Zombie Chaser (3 Variants + Sounds)
Counter-Strike
01-09-2026, 05:29 PM Downloads: 16 • Views: 208
CSO Zombie Chaser (3 Variants + Sounds)
Introduce a fast and aggressive enemy to your server with the CSO Zombie Chaser, inspired by Counter-Strike Online. This pack includes 3 different variants of the Zombie Chaser, along with custom sound effects, delivering intense and dynamic zombie gameplay.
Enhance your zombie gameplay with the CSO Sting Finger Zombie Pack, inspired by Counter-Strike Online. This pack includes 6 different variants of the iconic Sting Finger Zombie, each designed to add diversity and intensity to your server, along with custom sound effects for a complete experience.
Version
Author
Requirements
Mod for
N/A
N/A
N/A
Zp / Bio / Ze
Xmas cs1.6 Playermodels
Counter-Strike
12-20-2025, 05:47 AM Downloads: 8 • Views: 383
Xmas cs1.6 Playermodels
Give your server a holiday makeover with the Christmas Player Models Pack, featuring the classic CS 1.6 default player models dressed in festive Christmas outfits. Keep the original feel of the game while adding a cheerful winter atmosphere!
Version
Author
Requirements
Mod for
1.0.0
Dinscurt
N/A
Any Mod
Model Xmas Lasermine cs1.6
Counter-Strike
12-20-2025, 05:42 AM Downloads: 17 • Views: 309
=
Model Xmas Lasermine cs1.6
Add a festive twist to your Zombie Mode server with this special XMAS Lasermine! This version replaces the classic lasermine with a Christmas-themed model, complete with holiday colors, glowing effects, and a fresh seasonal design that fits perfectly into any winter or Christmas event.
Version
Author
Requirements
Mod for
1.0.0
Dinscurt
N/A
Any Mod
Xmas Hats Models 3 New Designs
Counter-Strike
12-14-2025, 02:15 AM Downloads: 12 • Views: 272
Xmas Hats Models 3 New Designs
3 new Xmas hat models Each model has a color coded version: red for the T team blue for the CT team and green as the original color These models are ready to use on the server and can add a festive touch.
Version
Author
Requirements
Mod for
1.0.0
sp-saad
N/A
Any Mod
Model Knife Xmas Dsword
Counter-Strike
12-12-2025, 03:32 AM Downloads: 11 • Views: 261
Model Knife Xmas Dsword
Get into the holiday spirit with this special Christma Knife Model, Perfect for winter events or festive servers
Version
Author
Requirements
Mod for
1.0.0
N/A
N/A
Any Mod
Plugin Xmas Santa Flying
Counter-Strike
12-12-2025, 03:21 AM Downloads: 8 • Views: 270
Plugin Xmas Santa Flying
Bring true Christmas magic to your CS 1.6 server with the Flying Santa Plugin, a festive addon that lets you place a fully animated Santa Claus flying across the sky with his sleigh and reindeers. Perfect for creating an immersive holiday atmosphere on any map!
Code:
Call command:
ghost_menu
Version
Author
Requirements
Mod for
1.0.0
OsuDesu
N/A
Any Mod
Xmas Snowman Nade Pack
Counter-Strike
12-12-2025, 03:07 AM Downloads: 14 • Views: 224
Xmas Snowman Nade Pack
Bring winter chaos to your server with the Snowman Grenade Pack, a festive collection of adorable (but deadly) snowman-themed grenades made specially for the Christmas season. Each grenade is redesigned as a cute mini snowman, turning every throw into a fun holiday moment!
Version
Author
Requirements
Mod for
1.0.0
THRASHSTALKER
N/A
Any Mod
[Plugin] Skin arme doar la Vip
Counter-Strike
12-11-2025, 10:15 PM Downloads: 0 • Views: 248
Pluginu asta îl am de când aveam server de cs. E plugin cu skin pe arme doar pentru vip, activat prin comanda /skins
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
set_pcvar_string(register_cvar("Weapons Model Vip", VERSION, FCVAR_SERVER|FCVAR_SPONLY), VERSION)
for (new i = 1; i < sizeof WEAPONENTNAMES; i++)
{
if(WEAPONENTNAMES[i][0]) RegisterHam(Ham_Item_Deploy, WEAPONENTNAMES[i], "fw_Item_Deploy_Post", 1)
}
register_clcmd("say /skins", "new_menu")
g_maxplayers = get_maxplayers()
}
public plugin_precache()
{
for(new i = 0;i < sizeof new_weapons;i++)
{
precache_model(new_weapons[i][V_WEAPONS]);
}
}
public client_putinserver(id)
{
g_weapons[id] = 0
}
public event_round_start()
{
for (new id = 1; id <= g_maxplayers; id++)
{
if (!is_user_connected(id))
continue;
}
}
public new_menu(id)
{
if (!is_user_alive(id))
return PLUGIN_HANDLED
public fw_Item_Deploy_Post(weapon_ent)
{
if(!pev_valid(weapon_ent))
return
// Get weapon's owner
static owner
owner = fm_cs_get_weapon_ent_owner(weapon_ent)
// Get weapon's id
static weaponid
weaponid = cs_get_weapon_id(weapon_ent)
switch (weaponid)
{
case CSW_AK47:
{
if (g_weapons[owner] == 1)
{
set_pev(owner, pev_viewmodel2, new_weapons[V_AK47][V_WEAPONS])
}
}
case CSW_M4A1:
{
if (g_weapons[owner] == 2)
{
set_pev(owner, pev_viewmodel2, new_weapons[V_M4A1][V_WEAPONS])
}
}
case CSW_AWP:
{
if (g_weapons[owner] == 3)
{
set_pev(owner, pev_viewmodel2, new_weapons[V_AWP][V_WEAPONS])
}
}
}
}
stock fm_cs_get_weapon_ent_owner(ent)
{
// Prevent server crash if entity's private data not initalized
if (pev_valid(ent) != 2)
return -1;
return get_pdata_cbase(ent, 41, 4);
}
Cel de sus e pluginul inițial, foarte simplist, cu acces pentru toată lumea. Și la asta am modificat niște linii. Deci e pluginul inițial cu mici modificări dar nu majore.
Mai jos aveți cel care îl foloseam eu pe server, modificat de mine.
// CVar simplu, nu afectează funcționalitatea
set_pcvar_string(register_cvar("Weapons Model Vip", VERSION, FCVAR_SERVER|FCVAR_SPONLY), VERSION);
// Înregistrăm toate armele pentru Ham Sandwich
for (new i = 1; i < sizeof WEAPONENTNAMES; i++)
{
if(WEAPONENTNAMES[i][0])
RegisterHam(Ham_Item_Deploy, WEAPONENTNAMES[i], "fw_Item_Deploy_Post", 1);
}
// Comanda pentru meniu
register_clcmd("say /skins", "new_menu");
g_maxplayers = get_maxplayers();
}
// =================== Precache Modele ===================
public plugin_precache()
{
for(new i = 0; i < sizeof new_weapons; i++)
{
precache_model(new_weapons[i][V_WEAPONS]);
}
}
// =================== Jucător în server ===================
public client_putinserver(id)
{
g_weapons[id] = 0;
}
// =================== Round Start ===================
public event_round_start()
{
for (new id = 1; id <= g_maxplayers; id++)
{
if (!is_user_connected(id))
continue;
}
}
// =================== Meniu VIP ===================
public new_menu(id)
{
if (!is_user_alive(id))
return PLUGIN_HANDLED;
// Verificare VIP: flag "z"
if (!(get_user_flags(id) & ADMFLAG_ROOT)) // Înlocuiește cu flagul VIP corect dacă e altul
{
client_print(id, print_chat, "\x04[Vip] \x01Only VIP can use this menu.");
return PLUGIN_HANDLED;
}
Am pus la fiecare sma-ul, le puteți personaliza cum vreți, am zis sa îl pun, nici nu prea ma mai joc cs și nu avea rost sa îl țin prin laptop aiurea.
Xmas Grenade Minecraft TNT
Counter-Strike
12-11-2025, 12:44 AM Downloads: 6 • Views: 180
Xmas Grenade Minecraft TNT
Add a fun and explosive twist to your Christmas server with the XMAS TNT Grenade, a festive Minecraft-style throwable redesigned especially for the 2025 holiday season. This gren grenade replaces the classic HE grenade with a blocky
Version
Author
Requirements
Mod for
1.0.0
N/A
N/A
Any Mod
Knife Model Xmas Tree
Counter-Strike
12-11-2025, 12:40 AM Downloads: 13 • Views: 195
Knife Model Xmas Tree
Bring the festive spirit straight into combat with the brand-new XMAS Tree Knife, a unique and creative holiday-themed melee weapon designed especially for Christmas 2025. Shaped like a miniature Christmas tree, this knife delivers both style and nostalgia
Version
Author
Requirements
Mod for
1.0.0
N/A
N/A
Any Mod
XMAS New Pack 2025
Counter-Strike
12-11-2025, 12:32 AM Downloads: 32 • Views: 294
XMAS New Pack 2025
Celebrate the holiday season with the brand-new 2025 Xmas Weapon Pack — a complete festive overhaul bringing winter vibes and Christmas magic to your CS 1.6 server. This pack gives classic weapons a cheerful seasonal makeover with holiday skins,
Version
Author
Requirements
Mod for
1.0.0
N/A
N/A
Any Mod
Knife Model Xmas Knife OG
Counter-Strike
12-11-2025, 12:21 AM Downloads: 7 • Views: 186
Knife Model Xmas Knife OG
Bring back the nostalgia of old-school Christmas servers with the OG Christmas Knife, a legendary skin remembered by many players from the golden days of CS 1.6 winter events. This festive knife comes decorated with colorful glowing holiday lights, making it one of the most iconic seasonal skins ever used.
Version
Author
Requirements
Mod for
2.0.0
eLLectro
N/A
Any Mod
Knife Model M9 Bayonet XMAS
Counter-Strike
12-10-2025, 06:57 PM Downloads: 12 • Views: 219
Knife Model M9 Bayonet XMAS
Take your knife gameplay to the next level with this beautifully ported M9 Bayonet from CSGO, fully adapted and optimized for Counter-Strike 1.6. This version comes with a custom modified skin and is equipped with CSO hands for a clean, modern, and stylish look.
Version
Author
Requirements
Mod for
2.2.0
eLLectro
N/A
Any Mod
Xmas Snowball cannon
Counter-Strike
12-10-2025, 06:49 PM Downloads: 4 • Views: 192
Xmas Snowball Cannon Weapon Model
Bring the true Christmas spirit into your server with the SnowCannon XMAS skin! This special holiday-themed weapon pack transforms your classic snow launcher into a fully decorated winter blaster, complete with custom sprites, unique sounds, and a polished festive design.
Version
Author
Requirements
Mod for
1.0.0
Отчим
N/A
Any Mod
Xmas Weapon Pack Skins #13
Counter-Strike
12-10-2025, 06:45 PM Downloads: 14 • Views: 313
Xmas Weapon Pack Skins #12
Bring the magic of the holidays straight into your Counter-Strike 1.6 server with this festive XMAS Skin Pack! Perfect for themed servers, winter events, or special rounds, this pack transforms your game into a cheerful winter battlefield.
Version
Author
Requirements
Mod for
N/A
N/A
N/A
Any Mod
Xmas Call Of Duty Weapon Pack Skins
Counter-Strike
12-08-2025, 06:25 PM Downloads: 2 • Views: 204
Xmas Call Of Duty Weapon Pack Skins
Bring a fresh and festive feel to your Counter-Strike 1.6 with this exclusive Christmas-themed skin pack, featuring high-quality weapon models inspired by Call of Duty animations. Each skin comes with smooth, modern reload, draw, and shooting animations, giving your CS 1.6 a completely upgraded look while keeping the holiday spirit alive.
Version
Author
Requirements
Mod for
1.0.0
Dinscurt
N/A
Any Mod
Xmas Zombie Escape Ambient Sounds
Counter-Strike
11-28-2025, 03:23 AM Downloads: 16 • Views: 331
Xmas Zombie Escape Ambient Sounds
Immerse yourself in the ultimate Christmas Zombie Escape atmosphere with these high-quality ambient sounds. Frozen winds, eerie whispers, distant growls, and holiday-themed horror effects create the perfect mood for intense zombie escape gameplay. Ideal for servers, maps, and events looking to add a chilling festive vibe. Download and enhance your Christmas zombie experience!
Version
Author
Requirements
Mod for
1.0.0
eLLectro
N/A
Bio / Zp / Ze
Xmas Pack Killing Floor Christmas Zeds
Counter-Strike
11-28-2025, 03:12 AM Downloads: 17 • Views: 251
Xmas Pack Killing Floor Christmas Zeds
Bring the terrifying holiday madness of Killing Floor into Counter-Strike 1.6 with this Christmas Zeds Pack! Specially designed for Biohazard and Zombie Infection servers, this pack transforms the legendary Zeds into festive, creepy Christmas monsters.
Version
Author
Requirements
Mod for
1.0.0
eLLectro
N/A
Bio / Zp / Ze
Xmas Jump Grenade Pack ALL MODELS
Counter-Strike
11-28-2025, 03:08 AM Downloads: 17 • Views: 202
Xmas Jump Grenade ALL MODELS
Boost your zombie gameplay with this Xmas Grenade Jump Pack for Zombie Plague or Biohazard.
Version
Author
Requirements
Mod for
1.0.0
eLLectro
N/A
Bio / Zp / Ze
Xmas Zombie Pack Left4dead 2
Counter-Strike
11-28-2025, 03:03 AM Downloads: 9 • Views: 269
Xmas Zombie Pack Left4dead 2
Bring the iconic terror of Left 4 Dead 2 into your Counter-Strike 1.6 server with a festive twist! This XMAS L4D2 Zombie Pack transforms classic infected models into winter-themed horrors, perfect for Biohazard, Zombie Infection, or special holiday events.
Version
Author
Requirements
Mod for
1.0.0
eLLectro
N/A
Bio / Zp / Ze
Xmas Zombie Pack CSO
Counter-Strike
11-28-2025, 02:59 AM Downloads: 17 • Views: 242
Xmas Zombie Pack CSO
Turn your Counter-Strike 1.6 server into a winter horror wonderland with this Christmas Zombie Skin Pack! Ideal for Biohazard, Zombie Infection, or special holiday events, this pack gives your zombies a fun and terrifying festive makeover.
Version
Author
Requirements
Mod for
1.0.0
eLLectro
N/A
Bio / Zp / Ze
Xmas Weapon Pack Skins #12
Counter-Strike
11-27-2025, 12:28 AM Downloads: 15 • Views: 319
Xmas Weapon Pack Skins #12
Bring the magic of the holidays straight into your Counter-Strike 1.6 server with this festive XMAS Skin Pack! Perfect for themed servers, winter events, or special rounds, this pack transforms your game into a cheerful winter battlefield.
Version
Author
Requirements
Mod for
N/A
N/A
N/A
Any Mod
Xmas Weapon Pack Skins #11
Counter-Strike
11-27-2025, 12:26 AM Downloads: 10 • Views: 163
Xmas Weapon Pack Skins #11
Bring the magic of the holidays straight into your Counter-Strike 1.6 server with this festive XMAS Skin Pack! Perfect for themed servers, winter events, or special rounds, this pack transforms your game into a cheerful winter battlefield.
Version
Author
Requirements
Mod for
N/A
N/A
N/A
Any Mod
Xmas Weapon Pack Skins #10
Counter-Strike
11-27-2025, 12:23 AM Downloads: 12 • Views: 180
Xmas Weapon Pack Skins #10
Bring the magic of the holidays straight into your Counter-Strike 1.6 server with this festive XMAS Skin Pack! Perfect for themed servers, winter events, or special rounds, this pack transforms your game into a cheerful winter battlefield.
Version
Author
Requirements
Mod for
N/A
N/A
N/A
Any Mod
Xmas Weapon Pack Skins #9
Counter-Strike
11-27-2025, 12:22 AM Downloads: 8 • Views: 187
Xmas Weapon Pack Skins #9
Bring the magic of the holidays straight into your Counter-Strike 1.6 server with this festive XMAS Skin Pack! Perfect for themed servers, winter events, or special rounds, this pack transforms your game into a cheerful winter battlefield.
Version
Author
Requirements
Mod for
N/A
N/A
N/A
Any Mod
Xmas Weapon Pack Skins #8
Counter-Strike
11-27-2025, 12:20 AM Downloads: 7 • Views: 170
Xmas Weapon Pack Skins #8
Bring the magic of the holidays straight into your Counter-Strike 1.6 server with this festive XMAS Skin Pack! Perfect for themed servers, winter events, or special rounds, this pack transforms your game into a cheerful winter battlefield.
Version
Author
Requirements
Mod for
N/A
N/A
N/A
Any Mod
Xmas Weapon Pack Skins #7
Counter-Strike
11-27-2025, 12:17 AM Downloads: 9 • Views: 166
Xmas Weapon Pack Skins #7
Bring the magic of the holidays straight into your Counter-Strike 1.6 server with this festive XMAS Skin Pack! Perfect for themed servers, winter events, or special rounds, this pack transforms your game into a cheerful winter battlefield.
Version
Author
Requirements
Mod for
N/A
N/A
N/A
Any Mod
Xmas Weapon Pack Skins #6
Counter-Strike
11-27-2025, 12:15 AM Downloads: 15 • Views: 186
Xmas Weapon Pack Skins #6
Bring the magic of the holidays straight into your Counter-Strike 1.6 server with this festive XMAS Skin Pack! Perfect for themed servers, winter events, or special rounds, this pack transforms your game into a cheerful winter battlefield.
Version
Author
Requirements
Mod for
N/A
N/A
N/A
Any Mod
Xmas Weapon Pack Skins #5
Counter-Strike
11-27-2025, 12:13 AM Downloads: 16 • Views: 166
Xmas Weapon Pack Skins #5
Bring the magic of the holidays straight into your Counter-Strike 1.6 server with this festive XMAS Skin Pack! Perfect for themed servers, winter events, or special rounds, this pack transforms your game into a cheerful winter battlefield.
Version
Author
Requirements
Mod for
N/A
N/A
N/A
Any Mod
Xmas Weapon Pack Skins #4
Counter-Strike
11-27-2025, 12:12 AM Downloads: 0 • Views: 205
Xmas Weapon Pack Skins #4
Bring the magic of the holidays straight into your Counter-Strike 1.6 server with this festive XMAS Skin Pack! Perfect for themed servers, winter events, or special rounds, this pack transforms your game into a cheerful winter battlefield.
Version
Author
Requirements
Mod for
N/A
N/A
N/A
Any Mod
Xmas Weapon Pack Skins #3
Counter-Strike
11-27-2025, 12:10 AM Downloads: 9 • Views: 151
Xmas Weapon Pack Skins #3
Bring the magic of the holidays straight into your Counter-Strike 1.6 server with this festive XMAS Skin Pack! Perfect for themed servers, winter events, or special rounds, this pack transforms your game into a cheerful winter battlefield.
Version
Author
Requirements
Mod for
N/A
N/A
N/A
Any Mod
Xmas Weapon Pack Skins #2
Counter-Strike
11-27-2025, 12:08 AM Downloads: 8 • Views: 156
Xmas Weapon Pack Skins #2
Bring the magic of the holidays straight into your Counter-Strike 1.6 server with this festive XMAS Skin Pack! Perfect for themed servers, winter events, or special rounds, this pack transforms your game into a cheerful winter battlefield.
Version
Author
Requirements
Mod for
N/A
N/A
N/A
Any Mod
Xmas Weapon Pack Skins #1
Counter-Strike
11-26-2025, 12:35 AM Downloads: 12 • Views: 265
Xmas Weapon Pack Skins #1
Bring the magic of the holidays straight into your Counter-Strike 1.6 server with this festive XMAS Skin Pack! Perfect for themed servers, winter events, or special rounds, this pack transforms your game into a cheerful winter battlefield.
Version
Author
Requirements
Mod for
N/A
N/A
N/A
Any Mod
Plugin Xmas Trees On Maps
Counter-Strike
11-24-2025, 05:45 AM Downloads: 13 • Views: 415
Plugin Xmas Trees On Maps
This plugin allows server administrators to place fully modeled Christmas trees directly on any map in Counter-Strike 1.6. Using an easy in-game menu, you can spawn, move, or delete Christmas tree models in real time, without needing to edit the map or restart the server. Every Christmas tree you place is automatically saved into a separate .ini configuration file for each map. When the map loads again, the plugin instantly restores all saved tree positions, making it simple to decorate every map with a unique holiday atmosphere. Perfect for servers that want to create a warm and festive Christmas environment.
Version
Author
Requirements
Mod for
N/A
N/A
N/A
Any Mod
Map fy_aztecs_xmas
Counter-Strike
11-24-2025, 05:31 AM Downloads: 2 • Views: 181
Map fy_aztecs_xmas
Bring the magic of Christmas to your server with this special collection of Christmas-themed maps! Each map is beautifully decorated with snow, lights, trees, gifts, and festive music
Version
Author
Requirements
Mod for
1.0.0
Tatu Eugen
N/A
N/A
Playermodel Xmas Stamper Zombie
Counter-Strike
11-24-2025, 04:40 AM Downloads: 8 • Views: 220
Playermodel Xmas Stamper Zombie
This release features a festive Christmas-themed version of the classic ZM Stamper model, fully reworked to match the holiday atmosphere. The model includes redesigned textures with winter and Christmas details such as red clothing, seasonal patterns, and subtle festive accents. Along with the main character model, this pack also includes Xmas-themed hands, matching the style of the Stamper skin. The hands are carefully adapted to blend seamlessly with the model, maintaining proper alignment and preserving all original animations. Perfect for Zombie Mode servers looking to add a unique Christmas twist to their gameplay.
Version
Author
Requirements
Mod for
1.0.0
N/A
ZP / Biohazard
N/A
Xmas Default Player Models
Counter-Strike
11-24-2025, 04:15 AM Downloads: 19 • Views: 440
Xmas Default Player Models
This pack replaces the original Counter-Strike 1.6 player models with festive Christmas-themed versions. All default CT and T models have been redesigned with holiday outfits such as Santa suits, winter jackets, scarves, hats, and other seasonal details — while keeping the classic CS 1.6 look and proportions. The models retain the original animations and hitboxes, ensuring full compatibility with any server. These Christmas skins are perfect for giving your server a warm, festive atmosphere during the holiday season without changing the gameplay experience.
Version
Author
Requirements
Mod for
1.0.0
eLLectro
N/A
Any mod
Plugin Xmas Lights On Maps!
Counter-Strike
11-24-2025, 03:56 AM Downloads: 14 • Views: 276
Plugin Xmas Lights On Maps
This plugin adds a simple and intuitive menu that allows server administrators to create decorative sprites on any map — perfect for adding Christmas lights, festive effects, or other visual elements. Using the in-game menu, you can place sprites anywhere on the map in real time, without needing to edit the map or restart the server. The plugin automatically generates a separate .ini configuration file for each map. Every sprite you place is saved with its coordinates, so the decorations load automatically the next time the map is played. This makes it extremely easy to customize every map with unique holiday lights and decorations.
COMMANDS:
light
Code:
#include <amxmisc>
#include <engine>
#include <fakemeta>
#define pev_light pev_iuser1
enum _:STRSPRPARAM {
Float:RP_STR_CORDX, //Координаты начала
Float:RP_STR_CORDY,
Float:RP_STR_CORDZ,
Float:RP_END_CORDX, //Координаты конца
Float:RP_END_CORDY,
Float:RP_END_CORDZ,
RP_SEGMENT, //Количество точек.
bool:RP_CURVE, //Кривизна.
bool:RP_BLINK, //Мерцание.
bool:RP_COLOR_RAND, //Цвет случайный/сохранённый (1/0)
RP_COL_R, //Если не случайный то тут сохранён цвет.
RP_COL_G,
RP_COL_B,
bool:RP_START,
RP_COLOR
};
new Array:g_ArrSprPar;
new g_PlArrParam[33][STRSPRPARAM];
new g_iCount;
new g_szSprite[][] = {
"sprites/redspr.spr"
}
new g_szPathFile[256];
new g_szClassName[] = "class_light";
enum _:COLORTYPE {
COL_R,
COL_G,
COL_B,
COL_NAME[32]
}
new g_szColor[][COLORTYPE] = { // <= Цвета добавлять здесь. Но случайный не трогать и только после него!
{0,0,0,"Random"},
{255,0,0,"Red"},
{0,255,0,"Green"},
{0,0,255,"Blue"},
{55,163,221,"Light Blue"},
{235,206,41,"Yellow"},
{176,43,234,"Purple"}
}
public plugin_precache() {
for(new i=0;i<sizeof(g_szSprite);i++)
precache_model(g_szSprite[i]);
g_ArrSprPar = ArrayCreate(STRSPRPARAM);
ReadSaveParam();
}
public ReadSaveParam() {
new szLoadDir[128],szMapName[64];
get_mapname(szMapName,charsmax(szMapName));
get_configsdir(szLoadDir, charsmax(szLoadDir));
formatex(szLoadDir, charsmax(szLoadDir), "%s/lightMap",szLoadDir)
if(!dir_exists(szLoadDir)) mkdir(szLoadDir);
formatex(g_szPathFile, charsmax(g_szPathFile), "%s/%s.ini",szLoadDir,szMapName)
if(file_exists(g_szPathFile)) {
enum STRCORD {STR_X,STR_Y,STR_Z,END_X,END_Y,END_Z};
new szParse[256],szCord[STRCORD][8],szSegment[8],szCurve[5],szBlink[5],szColRand[5],szColR[8],szColG[8],szColB[8];
new ArrSprPar[STRSPRPARAM];
len = formatex(menu[len], charsmax(menu) - len, "\rGarland Menu. Total \d[\r%d\d]^n\yLights in garland \d[\r%d\d]^n^n",g_iCount,g_PlArrParam[id][RP_SEGMENT]+1);
len += formatex(menu[len], charsmax(menu) - len, "\r[1] \w%s^n",g_PlArrParam[id][RP_START] ? "End":"Start");
len += formatex(menu[len], charsmax(menu) - len, "\r[2] \wColor: \d[\y%s\d]^n",g_szColor[g_PlArrParam[id][RP_COLOR]][COL_NAME]);
len += formatex(menu[len], charsmax(menu) - len, "\r[3] \wAdd lights^n");
len += formatex(menu[len], charsmax(menu) - len, "\r[4] \wRemove lights^n^n");
len += formatex(menu[len], charsmax(menu) - len, "\r[5] \wShape \d[\y%s\d]^n",g_PlArrParam[id][RP_CURVE] ? "Curved":"Straight");
if(g_PlArrParam[id][RP_COLOR] == 0)
len += formatex(menu[len], charsmax(menu) - len, "\r[6] \wBlinking \d[\y%s\d]^n^n",g_PlArrParam[id][RP_BLINK] ? "On":"Off");
else len += formatex(menu[len], charsmax(menu) - len, "^n^n");
len += formatex(menu[len], charsmax(menu) - len, "\r[7] \wDelete last^n");
len += formatex(menu[len], charsmax(menu) - len, "\r[8] \wDelete all^n");
len += formatex(menu[len], charsmax(menu) - len, "\r[9] \wSave^n");
len += formatex(menu[len], charsmax(menu) - len, "^n\r[0] \wExit");
new keys = MENU_KEY_0|MENU_KEY_1|MENU_KEY_2|MENU_KEY_3|MENU_KEY_4|MENU_KEY_5|MENU_KEY_6|MENU_KEY_7|MENU_KEY_8|MENU_KEY_9;
show_menu(id, keys, menu, -1, "lightmenu");
return PLUGIN_HANDLED;
}
public lightmenu_function(id,key) {
switch(key) {
case 0: {
new Origin[3],Float:fOrigin[3];
get_user_origin(id, Origin, 3);
for(new i=0;i<sizeof(fOrigin);i++)
fOrigin[i] = float(Origin[i]);
Bring the holiday spirit straight to your CS 1.6 server with the XMAS Hats plugin! This lightweight and fully optimized addon allows players to wear festive Christmas hats during gameplay, adding a fun and cheerful atmosphere to any map.
Version
Author
Requirements
Mod for
1.0.0
xPaw
N/A
XMAS
Xmas Frog Grenade
Counter-Strike
11-13-2025, 01:06 AM Downloads: 12 • Views: 252
Xmas Frog Grenade
Get into the holiday spirit with this special Christmas grenade Model, Perfect for zombie mode servers, winter events or festive servers,
Version
Author
Requirements
Mod for
1.0.0
N/A
N/A
N/A
Xmas Snowball Grenade
Counter-Strike
11-13-2025, 12:44 AM Downloads: 7 • Views: 262
Xmas Snowball Grenade
Get into the holiday spirit with this special Christmas grenade Model, Perfect for winter events or festive servers,
Version
Author
Requirements
Mod for
1.0.0
eLLectro
N/A
Any Mod
Knife Model Butterfly XMAS
Counter-Strike
11-11-2025, 07:02 PM Downloads: 15 • Views: 259
Butterfly Xmas 2025
Get into the holiday spirit with this special Christma Knife Model, Perfect for winter events or festive servers,
Version
Author
Requirements
Mod for
1.0.0
N/A
N/A
N/A
Knife Model Hammer Santa XMAS
Counter-Strike
11-11-2025, 06:59 PM Downloads: 7 • Views: 243
Knife Model Hammer Santa XMAS
Get into the holiday spirit with this special Christma Knife Model, Perfect for winter events or festive servers,
Version
Author
Requirements
Mod for
1.0.0
N/A
N/A
N/A
Knife Model Xmas Katana Candys
Counter-Strike
11-11-2025, 06:54 PM Downloads: 14 • Views: 274
Model Xmas Katana Candys
Get into the holiday spirit with this special Christma Knife Model, Perfect for winter events or festive servers
Version
Author
Requirements
Mod for
1.0.0
N/A
N/A
N/A
Knife Model Xmas New Year's Branch
Counter-Strike
11-11-2025, 06:40 PM Downloads: 8 • Views: 202
Model New Year's Branch
Get into the holiday spirit with this special Christma Knife Model, Perfect for winter events or festive servers,
Version
Author
Requirements
Mod for
1.0.0
N/A
N/A
N/A
Plugin Xmas Sounds
Counter-Strike
11-07-2025, 02:19 PM Downloads: 20 • Views: 390
xmas sounds for round end
Add a touch of Christmas spirit to your server with this festive sound plugin! This plugin plays cheerful Christmas-themed sounds or music at the end of each round, bringing a warm holiday vibe to your gameplay.
Bring the magic of Christmas to your server with this special collection of Christmas-themed maps! Each map is beautifully decorated with snow, lights, trees, gifts, and festive music