GAMING STORE

Premium Gaming Assets • Instant Downloads • Pro Quality Designs

141+ Downloads
0 New This Week
4 Bestsellers

Search Products

Categories

Price Range

€0.00
€49.99

Gaming Stats

Total Products 20
New This Week 0
Bestsellers 4
Free Products 8
Total Downloads 141
Avg Price €9.99
Categories 6

Trending Now

Most Downloaded
47 downloads
Hot Categories
Content Management Systems • Counter-Strike 1.6 Plugins • Extensions / Addons

Search Results for "addon"

Found 11 product(s)

Page 1 of 2
AMXX Dust2 Short Gravity
Counter-Strike 1.6 Plugins
FREE

AMXX Dust2 Short Gravity

Dust2 Short Gravity PluginA Counter-Strike 1.6 AMX Mod X plugin that provides reduced gravity at a specific location on de_dust2 map, allowing players to jump directly onto "Short" without requiring a boost.FeaturesMap-Specific: Only active on de_dust2Location-Based Gravity: Reduces gravity when players are near coordinates 602, 2370, 76 (Short area)Automatic Detection: Continuously checks player positions every 0.1 secondsVisual Feedback:On-screen message: "Low Gravity Zone - Jump Higher!"Cyan dynamic light effect when entering the zoneSmart Gravity Management:Saves original player gravity before modificationRestores normal gravity when leaving the zoneResets gravity on player respawnConfigurationYou can customize the plugin by modifying these defines in the source code:#define GRAVITY_VALUE 0.3 // Lower = higher jumps (0.1-0.9, normal is 1.0)#define CHECK_RADIUS 80.0 // Detection radius in units around target positionGravity Values Guide:1.0 = Normal gravity0.5 = Half gravity (moderate jump boost)0.3 = Low gravity (high jump boost) - Default0.1 = Very low gravity (extreme jump boost)Radius Values:80.0 = Tight activation zone - Default100.0 = Medium activation zone150.0 = Large activation zoneInstallationCompile the plugin:amxxpc.exe Dust2ShortGravity.sma -iincludeCopy the compiled plugin:Place Dust2ShortGravity.amxx in cstrike/addons/amxmodx/plugins/Enable the plugin:Add to cstrike/addons/amxmodx/configs/plugins.ini:Dust2ShortGravity.amxxRestart server or change map to de_dust2RequirementsAMX Mod X 1.8.2 or higherCounter-Strike 1.6Required Modules:amxmodxamxmiscfakemetafunHow It WorksPlugin checks if the current map is de_dust2If not on de_dust2, the plugin automatically pauses itselfEvery 0.1 seconds, it checks all alive players' positionsWhen a player enters the 80-unit radius around the target coordinates:Their original gravity is savedGravity is reduced to 0.3 (configurable)Visual effects and message are displayedWhen the player leaves the zone, normal gravity is restoredOn respawn, gravity is reset to normalTechnical DetailsTarget Coordinates: 602.0, 2370.0, 76.0 (Short area on de_dust2)Check Frequency: 10 times per second (0.1s interval)Detection Method: 3D distance calculation from player origin to target pointGravity Storage: Per-player original gravity values stored in arrayCustomizationChange Target Location:Modify the coordinates in the source code:new Float:g_fTargetOrigin[3] = {602.0, 2370.0, 76.0}Disable Visual Effects:Comment out or remove the message_begin block (lines 104-115)Change Message:Modify line 101:client_print(id, print_center, "Your Custom Message Here!")TroubleshootingPlugin doesn't work:Ensure you're on de_dust2 mapCheck that all required modules are loadedVerify plugin is listed in plugins.iniGravity zone too large/small:Adjust CHECK_RADIUS value and recompileJump not high enough:Decrease GRAVITY_VALUE (try 0.2 or 0.1)Jump too high:Increase GRAVITY_VALUE (try 0.4 or 0.5)Version Historyv1.0 (2025-01-21)Initial releaseBasic gravity zone functionalityVisual effects and notificationsMap-specific activationAuthorillusionLabs.devLicenseFree to use and modify for personal and commercial servers.SupportFor issues, suggestions, or customization requests, please contact the author.

0
Oct 21
#amxx #cs16 #plugin
AMXX Dust2 Yard Kill
Counter-Strike 1.6 Plugins
FREE

AMXX Dust2 Yard Kill

🚫 Dust2 Yard Hole Kill Plugin📋 DescriptionA Counter-Strike 1.6 plugin that automatically kills players if they stay too long in a specific zone on the de_dust2 map (the yard hole). The plugin works only on de_dust2 and automatically disables itself on other maps.✨ Features🎯 Core Functionality:Automatic zone detection - Checks player positions every secondWarning timer - Counts seconds while player is in the restricted zoneHUD messages - Displays visual warnings on screenAutomatic elimination - Kills the player after time expiresTimer reset - Automatically resets timer when leaving the zone📍 Zone Coverage:Restricted zone coordinates (Yard Hole):X: 1296.0 to 1583.0Y: 48.0 to 753.0 (with -40.0 extension)Z: -144.0 to 36.0 (with -20.0 extension)⚙️ ConfigurationThe plugin automatically creates a configuration file yard_hole.cfg in the configs/ folder.🔧 CVARs (Console Variables):CVAR Default Value Description yard_hole_time10Seconds before killing the playeryard_hole_msg_inside"You are trapped in the yard hole! Leave within %d seconds or you will be eliminated!"Message when entering the zoneyard_hole_msg_death"You stayed too long! You are now dead."Message when killedyard_hole_msg_exit"You have left the yard hole. Timer reset."Message when leaving the zone📝 Configuration Example:// Time before killing (in seconds)yard_hole_time "10"// Messages (you can customize them)yard_hole_msg_inside "You are trapped in the yard hole! Leave within %d seconds or you will be eliminated!"yard_hole_msg_death "You stayed too long! You are now dead."yard_hole_msg_exit "You have left the yard hole. Timer reset."📦 RequirementsDependencies:amxmodx - Core AMX Mod X moduleamxmisc - Miscellaneous functionsengine - Engine functions for coordinate handlingSystem Requirements:AMX Mod X 1.8.2 or newerCounter-Strike 1.6 serverMap: de_dust2🔨 InstallationCompilation:amxxpc d2_yard_hole_kill.smaFile Deployment:Copy d2_yard_hole_kill.amxx to addons/amxmodx/plugins/Add to addons/amxmodx/configs/plugins.ini:d2_yard_hole_kill.amxxRestart:Restart the server or change map to de_dust2🎮 How It WorksMap Check: On startup, the plugin verifies if the map is de_dust2. If not, it automatically disables itself.Player Monitoring: Every second, the plugin checks the position of all alive players.Zone Detection: If a player enters the restricted zone (yard hole):Starts counting secondsDisplays red HUD message with remaining timeKills the player when time expiresZone Exit: If the player leaves the zone before time expires:Displays green HUD messageResets the timer🎨 HUD Messages🔴 Warning (Red):Position: Top center of the screenColor: Red (RGB: 255, 0, 0)Shows remaining seconds🟢 Exit (Green):Position: Top center of the screenColor: Green (RGB: 0, 255, 0)Confirms zone exit🛠️ Technical DetailsFunctions:plugin_init() - Plugin initialization and map verificationcheck_player_positions() - Checks player positions every secondis_in_yard() - Determines if a player is in the restricted zoneFeatures:Uses CreateHudSyncObj() for synchronized HUD messagesAutomatically creates configuration file with AutoExecConfig()CVAR binding for dynamic configurationEvery-second check via set_task() with "b" flag (repeating task)👤 Authorillusion @ CraftVision📌 Version1.0📄 LicenseThis plugin is part of the ILLUSION PLUGINS collection.🐛 Known IssuesPlugin only works on de_dust2Coordinates are fixed and cannot be changed without recompilation

0
Oct 21
#amxx #cs16 #plugin
AMXX Team Swap (Configurable)
Counter-Strike 1.6 Plugins
FREE

AMXX Team Swap (Configurable)

Team Swap PluginVersion: 1.0Author: illusionLabs.devGame: Counter-Strike 1.6📋 DescriptionTeam Swap is a Counter-Strike 1.6 plugin that allows players to exchange teams (Terrorists ↔ Counter-Terrorists) through mutual consent. The plugin includes a request system, cooldown timer, and full administrative control.✨ Features🎮 For PlayersTeam swap requests - Send requests to players from the opposing teamInteractive menu - Color-coded menu for player selectionConfirmation system - Target player must accept the requestCooldown system - Prevents spam and abuseVisual indicators - Colored messages and team indicators👮 For AdministratorsForce swap - Command to directly swap teams between two playersBypass privileges - Bypass cooldown and dead player requirementsConfigurable flag - Set required admin flagLogging - All admin actions are logged🎯 CommandsPlayersCommand Description say /swapOpens menu to select a player for team swapsay_team /swapSame as above, but in team chatAdministratorsCommand Description Flag amx_swap Force swap teams of two playersADMIN_LEVEL_A⚙️ Cvars (Configuration)All settings are managed through cvars and can be changed in real-time:Main Settings// Enable/disable the pluginteamswap_enabled "1"// 0 = disabled// 1 = enabled (default)// Cooldown timer in secondsteamswap_cooldown "300"// Default: 300 seconds (5 minutes)// Can be changed to any value// Require players to be deadteamswap_require_dead "1"// 0 = alive players can swap teams// 1 = players must be dead (default)// Show public messagesteamswap_show_messages "1"// 0 = hide team swap messages// 1 = show public messages (default)Customization Settings// Chat and menu prefixteamswap_prefix "[Team Swap]"// Default: "[Team Swap]"// Can be changed to any text, e.g., "[TS]", "[Swap]", "Team Swap"// This prefix appears in all chat messages and menu titlesAdmin Settings// Admin flag for bypass privilegesteamswap_admin_flag "b"// Default: "b" (reservation)// Can be changed to: "a", "c", "d", etc.// Admins bypass cooldownteamswap_admin_bypass_cooldown "1"// 0 = admins follow cooldown rules// 1 = admins bypass cooldown (default)// Admins bypass dead player requirementteamswap_admin_bypass_dead "1"// 0 = admins must be dead// 1 = admins can swap while alive (default)📦 InstallationRequirementsAMX Mod X 1.8.2 or newerCounter-Strike 1.6Dependencies#include #include #include Installation StepsCompile the plugin:Place TeamSwap.sma in addons/amxmodx/scripting/Compile with amxxpc TeamSwap.smaInstall the .amxx file:Copy TeamSwap.amxx to addons/amxmodx/plugins/Activate the plugin:Add TeamSwap.amxx to addons/amxmodx/configs/plugins.iniConfigure settings:Add cvars to addons/amxmodx/configs/amxx.cfg or create a separate config fileRestart the server or change the map🎨 How It WorksFor PlayersStarting a request:Player types /swap in chatA menu opens with players from the opposing teamPlayers are color-coded: 🔴 Terrorists, 🔵 Counter-TerroristsSelecting a player:Player selects who they want to swap teams withRequest is sent to the selected playerCooldown timer is activatedConfirmation:Target player receives a menu with "Yes" / "No" optionsOn "Yes" - teams are swapped immediatelyOn "No" - request is declinedCooldown:After sending a request, cooldown is activatedPlayer sees remaining time in MM:SS formatCooldown applies to both players after successful swapFor AdministratorsForce swap:amx_swap "Player1" "Player2"Directly swaps teams without confirmationNo cooldown appliedAction is loggedBypass privileges:Admins can bypass cooldown (if enabled)Admins can swap teams while alive (if enabled)Flag is determined by teamswap_admin_flag🔒 Restrictions and ChecksAutomatic Checks✅ Player is not spectator or unassigned✅ Player is dead (if required)✅ Target player is from opposing team✅ Cooldown timer has expired✅ Both players are connected during swap✅ Plugin is enabledError MessagesThe plugin displays clear messages when:Attempting to use while disabledAttempting to use as spectatorAttempting to use while alive (if required)No available players to swap withActive cooldown timerInvalid request or disconnected player🐛 TroubleshootingPlugin not workingCheck if it's added to plugins.iniCheck if teamswap_enabled is "1"Check console for loading errorsPlayers cannot swap teamsCheck teamswap_require_dead - may require players to be deadCheck cooldown timer - may not have expiredCheck if there are players from opposing teamAdmins don't have bypassCheck teamswap_admin_flag - must match admin's flagCheck teamswap_admin_bypass_cooldown and teamswap_admin_bypass_deadCheck users.ini for correct flagsCooldown not working properlyCooldown activates when sending the request, not during swapBoth players receive cooldown after successful swapAdmins can bypass cooldown (if enabled)📝 LogsThe plugin logs the following actions in AMX logs:Admin [Name] swapped teams of [Player1] and [Player2]Logs are located in: addons/amxmodx/logs/🔄 ChangelogVersion 1.0✅ Core team swap functionality✅ Request system with confirmation✅ Cooldown timer✅ Interactive menus✅ Admin command for force swap✅ Full cvar configuration✅ Admin bypass system✅ Configurable admin flag✅ Customizable prefix for chat and menus✅ Colored messages and indicators📞 SupportFor questions, issues, or suggestions:Author: illusionLabs.dev / illusionPlugin: Team Swap v1.0📄 LicenseThis plugin was created by illusionLabs.dev / eSportsDesigns.com for Counter-Strike 1.6 servers.🎉 CreditsThanks to everyone who uses and tests this plugin!Enjoy the game! 🎮

2
Oct 20
#amxx #cs16 #plugin
AMXX Chat Logger (Discord Integration)
Counter-Strike 1.6 Plugins
4.99

AMXX Chat Logger (Discord Integration)

CS Chat Logger Discord A Counter-Strike 1.6 AMX Mod X plugin that logs all in-game chat messages, team chat, and player join/disconnect events to a Discord channel in real-time via webhooks. Features 💬 All Chat Logging - Logs all public chat messages 👥 Team Chat Logging - Logs team-specific messages (Terrorists, Counter-Terrorists, Spectators) 📥 Join Messages - Logs when players connect to the server 📤 Disconnect Messages - Logs when players leave the server ⚙️ Configurable - CVars to enable/disable specific features 🎨 Formatted Messages - Uses Discord markdown (bold, code blocks) and emojis for better readability 🚫 Bot Filtering - Automatically ignores bot messages Message Format All Chat 💬 **PlayerName**: message content Team Chat 🔴 **PlayerName** `[T]`: message content (Terrorists) 🔵 **PlayerName** `[CT]`: message content (Counter-Terrorists) 👁️ **PlayerName** `[SPEC]`: message content (Spectators) Join/Disconnect 📥 **PlayerName** joined the server 📤 **PlayerName** left the server Installation Download Dependencies Make sure you have easy_http.inc in your AMX Mod X include folder Required includes: amxmodx, amxmisc, cstrike, easy_http Configure Webhook Create a Discord webhook in your desired channel Open ChatLogger.sma and replace the webhook URL on line 15: new const g_szWebhookURL[] = "YOUR_DISCORD_WEBHOOK_URL_HERE" Compile Compile the plugin using AMX Mod X compiler Place the compiled ChatLogger.amxx in addons/amxmodx/plugins/ Enable Plugin Add ChatLogger.amxx to addons/amxmodx/configs/plugins.ini Restart Server Restart your server or change map to load the plugin Configuration (CVars) Add these CVars to your amxx.cfg or set them via console/RCON: chatlog_show_teamchat Description: Controls whether team chat messages are logged to Discord Values: 1 = Show team chat (default) 0 = Hide team chat Example: chatlog_show_teamchat 1 chatlog_show_joinleave Description: Controls whether player join/disconnect messages are logged to Discord Values: 1 = Show join/leave messages (default) 0 = Hide join/leave messages Example: chatlog_show_joinleave 0 Usage Examples Show everything (default) chatlog_show_teamchat 1 chatlog_show_joinleave 1 Only show public chat chatlog_show_teamchat 0 chatlog_show_joinleave 0 Show chat but hide join/leave spam chatlog_show_teamchat 1 chatlog_show_joinleave 0 Discord Webhook Setup Open your Discord server Go to Server Settings → Integrations → Webhooks Click "New Webhook" Choose the channel where you want chat logs Copy the webhook URL Paste it in the plugin source code (line 15) Recompile the plugin Technical Details Plugin Version: 1.0 Author: illusion Dependencies: AMX Mod X 1.8.2+, easy_http module HTTP Method: POST requests to Discord webhook API Timeout: 5 seconds per request Content Type: application/json Troubleshooting Messages not appearing in Discord Verify the webhook URL is correct Check AMX Mod X logs for errors: addons/amxmodx/logs/ Ensure easy_http module is loaded Test the webhook URL manually using curl or Postman Compilation errors Make sure all include files are present in addons/amxmodx/scripting/include/ Verify you're using AMX Mod X 1.8.2 or newer Check that easy_http.inc is properly installed Bot messages appearing The plugin automatically filters bots using is_user_bot() If bots still appear, they might not be properly detected by the game Privacy Notice This plugin logs all chat messages and player information to an external Discord channel. Make sure to: Inform your players that chat is being logged Comply with your local privacy laws and regulations Secure your Discord webhook URL (don't share it publicly) License Free to use and modify. Credit appreciated but not required. Support For issues, suggestions, or contributions, please contact the plugin author. Note: This plugin sends data to Discord's servers. Make sure your server has internet connectivity and can reach Discord's API endpoints.

2
Oct 4
#cs16 #amxx #cs1.6
Custom Shop Addon: Fast Rush AMXX
Counter-Strike 1.6 Plugins
FREE

Custom Shop Addon: Fast Rush AMXX

Fast Rush Item Plugin A custom AMXX plugin for Counter-Strike 1.6 that adds a "Fast Rush Teleport" item to the custom shop system, allowing players to perform smooth velocity-based dashes with visual effects. 📋 Overview The Fast Rush plugin integrates with the custom shop system to provide players with a purchasable item that enables fast horizontal movement. When activated, players perform a smooth dash in their facing direction with optional visual effects including screen fade and particle trails. ✨ Features Smooth Movement: Velocity-based dash system instead of instant teleportation E Key Activation: Primary activation using the E (USE) key Alternative Commands: Chat command /fastrush for activation Ground Check: Only works when player is on solid ground (prevents mid-air abuse) Cooldown System: 5-second cooldown with visual countdown timer Visual Effects: Cyan screen fade effect during dash Particle beam trail following the player Colored Messages: All chat notifications use colored text Death Handling: Item automatically removed on player death Custom Shop Integration: Seamless integration with existing shop system 🎮 How to Use Purchase: Buy "Fast Rush Teleport" from the custom shop for $5000 Activate: Press E key or type /fastrush in chat Requirements: Must be alive and standing on solid ground Cooldown: Wait 5 seconds between uses (countdown shown on screen) ⚙️ Configuration The plugin includes compile-time configuration options that can be modified before compilation: Visual Effects Settings #define ENABLE_TRAIL 1 // 1 = Enable trail effect, 0 = Disable #define ENABLE_SCREENFADE 1 // 1 = Enable screen fade, 0 = Disable Item Settings #define ITEM_PRICE 5000 // Price in shop currency #define RUSH_VELOCITY 1000.0 // Dash speed (units per second) #define COOLDOWN_TIME 5.0 // Cooldown duration in seconds 🔧 Installation Prerequisites AMX Mod X 1.8.2 or higher Custom Shop plugin installed and working Counter-Strike 1.6 server Installation Steps Place fast_rush_item.amxx in addons/amxmodx/plugins/ Add fast_rush_item.amxx to addons/amxmodx/configs/plugins.ini Ensure custom shop plugin is loaded before this plugin Restart server or change map 🛠️ Technical Details Dependencies - Core AMX Mod X functionality - Miscellaneous AMX functions - Engine manipulation functions - Fun module for entity manipulation - Fakemeta for key detection - Custom shop integration Key Functions E Key Detection: Uses FM_CmdStart forward to detect USE button presses Movement System: Applies horizontal velocity while preserving vertical momentum Trail System: Creates beam effects using TE_BEAMFOLLOW temporary entities Ground Check: Uses FL_ONGROUND flag to ensure valid usage conditions Performance Notes Minimal server impact when effects are disabled Trail effects use temporary entities (no permanent entities created) Conditional compilation eliminates unused code paths Efficient task management for trail cleanup 🎨 Visual Effects Details Screen Fade Color: Cyan (RGB: 0, 150, 255) Duration: Short fade-in effect Trigger: Activated during dash execution Trail Effect Type: Beam trail following player Color: Cyan matching screen fade Duration: 1.5 seconds Update Rate: 10 times per second for smooth appearance 🚫 Limitations & Restrictions Ground Only: Cannot be used while jumping or falling Alive Players: Only works for living players Cooldown: 5-second mandatory cooldown between uses Single Use: Item removed on death (must repurchase) Direction: Always dashes in player's facing direction 🐛 Troubleshooting Common Issues E Key Not Working Ensure no other plugins are blocking the USE key Check that fakemeta module is loaded Verify player has the item purchased No Trail Effect Confirm ENABLE_TRAIL is set to 1 Check that sprites/laserbeam.spr exists on server Verify client has downloaded the sprite file Item Not in Shop Ensure custom shop plugin is loaded first Check for item ID conflicts with other shop items Verify plugin compilation was successful Movement Issues Confirm player is on solid ground Check for velocity-limiting plugins Verify RUSH_VELOCITY setting is appropriate 📝 Changelog Version 1.0 Initial release with full feature set E key detection using fakemeta Smooth velocity-based movement Visual effects (trail and screen fade) Custom shop integration Ground check and cooldown system Colored chat messages Configurable visual effects 👨‍💻 Developer Information Author: illusionlabs.dev Version: 1.0 Plugin Name: CSHOP Item: Fast Rush Item Language: Pawn (AMX Mod X)

4
Sep 11
#cs16 #amxx #cs1.6
[ADDON] PanelSIX: Admins Per Server
Extensions / Addons
20.00

[ADDON] PanelSIX: Admins Per Server

PanelSIX Addon - Per-Server Admin Management This addon extends PanelSIX functionality to enable per-server admin management instead of only global admin assignments. With this addon, you can assign administrators to specific game servers rather than giving them access to all servers. 🚀 Features Per-Server Admin Assignment: Assign admins to specific servers instead of globally Server Identification: Each server has a unique identifier for easy management Backward Compatibility: Works alongside existing global admin system Web Interface: Manage admins through PanelSIX web panel Database Integration: Seamless integration with existing PanelSIX database 📁 Package Contents PanelSIX ADDON - Admins per server/ ├── Images/ # Screenshots and documentation images ├── PanelSIX Files/ # Web panel files │ ├── SQL/ │ │ └── admin_servers_update.sql # Database schema updates │ ├── admin/ │ │ ├── add_admin.php # Add new admin interface │ │ ├── control_admins.php # Admin management interface │ │ └── edit_admin.php # Edit admin interface │ └── admins_list.php # List all admins with server assignments ├── Server Plugin/ │ └── admin_sql.sma # AMX Mod X plugin source code ├── Important information.txt # Installation notes └── README.md # This file ⚠️ IMPORTANT INSTALLATION NOTICE CRITICAL: Before installing the plugin, you MUST modify the server identifier in the plugin source code. Open Server Plugin/admin_sql.sma in a text editor Find this line (around line 78): amx_server_identifier = register_cvar("amx_server_identifier", "main_server", FCVAR_PROTECTED) Change "main_server" to a unique, descriptive name for your server Use a different identifier for each server so you can distinguish them in the panel Example Server Identifiers: "dm_server_1" for Deathmatch Server 1 "jb_server_main" for Jailbreak Main Server "surf_server_eu" for Surf Server Europe "zombie_server_1" for Zombie Server 1 🛠️ Installation Instructions Step 1: Database Setup Import the SQL schema updates: -- Run the contents of PanelSIX Files/SQL/admin_servers_update.sql Step 2: Web Panel Files Upload all files from PanelSIX Files/ to your PanelSIX web directory Ensure proper file permissions are set Step 3: Server Plugin Installation IMPORTANT: Edit admin_sql.sma and change the server identifier (see above) Compile the plugin using AMX Mod X compiler: amxxpc admin_sql.sma Upload the compiled admin_sql.amxx to your server's addons/amxmodx/plugins/ directory Add the plugin to your plugins.ini file: admin_sql.amxx Restart your game server Step 4: Configuration Configure your database connection in addons/amxmodx/configs/sql.cfg Set the server identifier cvar in your server configuration: amx_server_identifier "your_unique_server_name" 🎮 How It Works Global vs Per-Server Admins Global Admins (server_specific = 0): Have access to ALL servers Per-Server Admins (server_specific = 1): Only have access to assigned servers Server Registration Servers automatically register themselves in the database when they start Each server is identified by its unique server_identifier The web panel shows which servers each admin has access to Admin Assignment Process Add a new admin through the web panel Choose whether the admin should be global or server-specific If server-specific, select which servers the admin should have access to The plugin automatically loads the correct admins for each server 🌐 Web Interface Features Admin List: View all admins with their server assignments Add Admin: Create new admin accounts with server selection Edit Admin: Modify existing admin permissions and server access Server Management: View and manage registered game servers 🔧 Technical Details Database Schema The addon adds the following tables/columns: game_servers: Stores server information and identifiers admin_game_servers: Links admins to specific servers diveban_admins.server_specific: Flag indicating if admin is server-specific Plugin Features Automatic server registration Per-server admin loading Backward compatibility with existing admin systems Support for both MySQL and SQLite databases 🐛 Troubleshooting Common Issues Admins not loading on server: Check that the server identifier is correctly set Verify database connection in sql.cfg Ensure the server is registered in the game_servers table Web panel not showing servers: Run the SQL update script Check file permissions on uploaded PHP files Verify database connection in PanelSIX configuration Plugin compilation errors: Ensure you have the latest AMX Mod X includes Check that all required modules are loaded 📞 Support If you encounter any issues: Check the server console for error messages Verify all installation steps were completed Ensure database permissions are correct Check that the server identifier is unique and properly set

0
Sep 2
#panelsix #addon #cs16
AMXX Advanced HUD Advertisements
Counter-Strike 1.6 Plugins
FREE

AMXX Advanced HUD Advertisements

Advanced HUD Advertisements Plugin Version: 1.0Author: illusion @ eSportsDesignsPlugin Name: Advanced HUD Advertisements Description AdvertsNEW is an AMX Mod X plugin for Counter-Strike servers that displays customizable rotating advertisements to players using HUD messages. The plugin supports multiple display modes, random colors, and various visual effects to create eye-catching server announcements. Features ✅ Rotating Advertisements: Display multiple ads in sequence or random order ✅ HUD Message Display: Shows ads using colorful HUD messages on screen ✅ Random Colors: Each ad displays with randomly generated colors for visual variety ✅ Customizable Position: Configure X/Y position of HUD messages ✅ Visual Effects: Multiple fade-in/fade-out effects and display modes ✅ Dynamic Variables: Support for %map% and %newline% placeholders ✅ Live Reload: Reload advertisements without server restart ✅ Auto Config Creation: Automatically creates default config if missing Installation Compile the Plugin: amxxpc AdvertsNEW.sma Upload Files: Place AdvertsNEW.amxx in /addons/amxmodx/plugins/ Add AdvertsNEW.amxx to /addons/amxmodx/configs/plugins.ini Configuration: The plugin will automatically create /addons/amxmodx/configs/adverts_hud.ini Edit this file to add your custom advertisements Configuration File File: /addons/amxmodx/configs/adverts_hud.ini Format: ; Adverts HUD Configuration File ; Each line represents one advertisement ; Lines starting with ; are comments and will be ignored Welcome to our server! Join our community at www.example.com Type !menu to open server menu Current map: %map% Line 1%newline%Line 2 of same ad Special Variables: %map% - Replaced with current map name %newline% - Creates a line break in the HUD message Lines starting with ; or / are treated as comments CVars (Console Variables) CVar Default Description amx_adverts_enabled 1 Enable/disable the advertisement system amx_adverts_interval 60.0 Time interval between advertisements (seconds) amx_adverts_random 0 Random order (1) or sequential (0) amx_adverts_effect 2 HUD message effect type (0-3) amx_adverts_holdtime 5.0 How long to display each advertisement amx_adverts_fadein 0.1 Fade-in duration (seconds) amx_adverts_fadeout 0.2 Fade-out duration (seconds) amx_adverts_x -1.0 X position (-1.0 = center) amx_adverts_y 0.2 Y position (0.0 = top, 1.0 = bottom) Effect Types: 0 - No effect 1 - Fade in/out 2 - Flash/strobe effect 3 - Write-out effect Admin Commands Command Access Level Description amx_reloadadverts ADMIN_CVAR Reloads advertisement configuration without restart Usage Examples Basic Configuration: Welcome to [SERVER NAME]! Visit our website: www.yoursite.com Current map: %map% Join our Discord: discord.gg/yourserver Type !shop to open the store Multi-line Advertisement: === SERVER RULES ===%newline%1. No cheating%newline%2. No spam%newline%3. Have fun! Dynamic Content: You are playing on: %map% Server time: Check !time command Technical Details Dependencies: amxmodx, amxmisc, reapi, reapi_stocks Maximum Advertisements: 32 Maximum Message Length: 192 characters Array-based Storage: Uses dynamic arrays for efficient memory management Color System: Random RGB values generated for each display Configuration Tips Position Settings: X: -1.0 centers horizontally, 0.0 = left, 1.0 = right Y: 0.0 = top of screen, 1.0 = bottom of screen Timing Recommendations: Interval: 30-120 seconds (avoid spam) Hold time: 3-8 seconds (readable duration) Fade times: 0.1-0.5 seconds (smooth transitions) Message Guidelines: Keep messages concise and clear Use %newline% sparingly to avoid clutter Test different effect types for best visibility Troubleshooting Ads not showing? Check amx_adverts_enabled is set to 1 Verify config file exists and has valid content Ensure at least one non-comment line in config Position issues? Adjust amx_adverts_x and amx_adverts_y values Test with different screen resolutions Performance concerns? Increase interval time if server experiences lag Reduce number of advertisements if memory usage is high Support For issues or questions: Author: illusion @ eSportsDesigns Check AMX Mod X documentation for HUD message limitations Verify ReAPI installation for proper functionality Note: This plugin requires ReAPI for advanced HUD message functionality. Ensure ReAPI is properly installed and configured on your Counter-Strike server.

16
Aug 20
#cs16 #amxx #plugin
[ADDON] PanelSIX: Buy Privileges via PayPal
Extensions / Addons
49.99

[ADDON] PanelSIX: Buy Privileges via PayPal

PanelSIX ADDON: Buy Privileges automatically via PayPal  Updates: Added PayPal settings configuration directly from the admin panel , Two PayPal modes: Sandbox (testing)  / Live (receive payments) , Admin panel: view and delete transactions , Homepage: users can view their own transactions , Login / Register functionality , Added Payment Success  and Payment Declined  pages,  Extra Features: ♾ No transaction limits,  Make money while you sleep – fully automated,  Easy to install and configure,  Help from me with installation and configuration

1
Aug 10
#web #cms #addon
[ADDON] PanelSIX: Players Tracker
Extensions / Addons
9.99

[ADDON] PanelSIX: Players Tracker

PanelSIX Players Tracker Advanced Player Tracking and Statistics System for CS 1.6 with AMX Mod X and Web Panel PanelSIX Players Tracker is a powerful tool for Counter-Strike 1.6 server administrators that provides real-time monitoring of player activity, including session history, round statistics, and team participation. The system includes a dedicated AMX Mod X plugin that logs all player data during gameplay, as well as a clean web interface for browsing and analyzing statistics. 🛠️ Key Features 🎮 AMX Mod X Integration Automatically tracks player connections and disconnections Records SteamID, IP address, server, map, and session time Tracks time spent in CT and T teams Counts rounds and team wins (CT/T) Updates data every 30 seconds Secure and stable – protected against SQL injection and common errors Command for resseting statistics 🌐 Web Interface Search by player name, SteamID, or IP address Filter by server or map Sort by any column with pagination support View currently online players in real-time Detailed player profiles: Total playtime Time spent as CT and T Number of rounds and sessions Online status and last seen time Breakdown of stats per server and map Graphs showing player activity over time Fully responsive design – works great on all devices 📊 Centralized Stats Overview Players: unique users, sessions, playtime Teams: CT/T playtime and round wins Maps: popularity and time played Rounds: total rounds played, CT/T win ratio Online Activity: currently active players and maps 🔐 Security Focused All database queries use secure prepared statements Input is sanitized to prevent XSS attacks Admin-only commands restricted to ADMIN_RCON access level

3
Jun 17
#web #cms #addon