GAMING STORE

Premium Gaming Assets • Instant Downloads • Pro Quality Designs

93+ Downloads
1 New This Week
4 Bestsellers

Search Products

Categories

Price Range

€0.00
€49.99

Gaming Stats

Total Products 16
New This Week 1
Bestsellers 4
Free Products 5
Total Downloads 93
Avg Price €12.18
Categories 6

Trending Now

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

Search Results for "settings"

Found 6 product(s)

Page 1 of 1
AMXX Chat Logger (Discord Integration)
Counter-Strike 1.6 Plugins
NEW
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.

0
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)

2
Sep 11
#cs16 #amxx #cs1.6
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.

9
Aug 20
#cs16 #amxx #plugin
AMXX GAG System - Fully Configurable
Counter-Strike 1.6 Plugins
FREE

AMXX GAG System - Fully Configurable

  ILLUSION SQL GAG SYSTEM v1.0 Author: illusion @ eSportsDesigns.comPlugin: AMX Mod X for Counter-Strike 1.6 🎯 OVERVIEW Advanced MySQL-based gag system with strong anti-bypass protection and full configuration control. ✨ FEATURES Gag Types: Chat, Voice, or Both Flexible Duration: Minutes-based or permanent gags Custom Reasons: Fully configurable via INI file Bad Word Filter: Automatic gagging for forbidden words Logging System: Detailed logs of all gag events Anti-Bypass: Triple-identifier verification (SteamID + IP + Name) Round-Based Sync: Automatically detects gag changes (add/edit/remove) from database Direct Command Interface: Quick gagging with amx_gag command HUD Notifications: Real-time gag status display Sound Effects: Configurable sounds for gag events Professional Menus: Colored admin interface 🚀 INSTALLATION Upload GagSystemNew_Config.amxx to plugins/ folder Add to plugins.ini Create MySQL database Edit configs/gagsystem.ini with your database settings Restart server ⚙️ CONFIGURATION Auto-generates gagsystem.ini with sections: Database: MySQL connection settings Logs: Event logging configuration (LOGS_ENABLED = 1, LOGS_FILE = gagsystem.log) Menu: Interface customization Reasons: Gag reasons list Times: Duration options GagTypes: Chat/Voice/Both options Bad Words: Auto-gag filter Sounds: Audio effects Access: Admin permission levelsChecks: Round-based gag checking control (ENABLE_CHECKS = 1) 🎮 COMMANDS amx_gagmenu - Opens interactive gag menu amx_gag - NEW! Direct gag command Example: amx_gag John 30 Spam 0 Types: 0 = Chat Only, 1 = Voice Only, 2 = Chat + Voice amx_ungag - Ungag player amx_cleangags - Remove all gags amx_gaglist - List active gags 🛡️ SECURITY Triple Protection: Requires exact match of SteamID + IP + Nickname to prevent bypass attempts Round-Based Sync: NEW! Automatically checks every round for all gag changes (add/edit/remove) from database Auto-Detection: Detects new gags, gag edits, and gag removals from external sources (website) Real-Time Updates: Gag details (reason, time, type) automatically sync when edited from website Player Notifications: Chat messages inform players when their gag status or details change No Reconnect Required: All changes apply instantly on next round without reconnecting 📝 LOG FORMAT L MM/DD/YYYY - HH:MM:SS: Admin X gagged player Y for Z minutes with reason 'ABC' (Type: Chat) L MM/DD/YYYY - HH:MM:SS: Admin X ungagged player Y L MM/DD/YYYY - HH:MM:SS: Gag expired for player Y (Type: Voice) L MM/DD/YYYY - HH:MM:SS: SYSTEM automatically gagged player Y for Z minutes with reason 'Swearing (badword)' (Type: Both) L MM/DD/YYYY - HH:MM:SS: Gag validation failed for player Y - gag was manually removed from database L MM/DD/YYYY - HH:MM:SS: Gag details updated for player Y - Admin: X, Reason: ABC, Type: 0 🆕 NEW FEATURES (Latest Update) Direct Gag Command Instant Gagging: Use amx_gag for quick player gagging without menus Parameter Validation: Built-in checks for all parameters with helpful error messages Type System: Numeric gag types (0/1/2) with clear explanations Enhanced Round-Based Synchronization Complete Database Sync: Detects all gag changes (create/edit/remove) from external sources Real-Time Gag Updates: Automatically syncs reason, duration, and type changes from website Smart Voice Blocking: Properly handles gag type changes (Chat ↔ Voice ↔ Both) Player Communication: Chat notifications when gag status or details are modified Website Integration: Full compatibility with PanelSIX web management pages Enhanced User Experience Help System: Typing amx_gag alone shows usage examples and type explanations Error Messages: Clear feedback for invalid parameters or missing arguments Consistent Access: Uses same admin flags as existing gag menu system Performance Optimization Configurable Checks: New ENABLE_CHECKS option to control round-based gag checking Lag Reduction: Set ENABLE_CHECKS = 0 to disable round end/start checks for better server performance Selective Disabling: Only affects automatic round checks - manual commands still work normally Server-Friendly: Helps servers with high player counts avoid lag spikes during round transitions

30
Aug 18
#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

0
Aug 10
#web #cms #addon
[3.2 / 3.3] LGSL Server List Extension
phpBB Extensions
4.99

[3.2 / 3.3] LGSL Server List Extension

🎮 LGSL Server List Extension for phpBB 🎮 Show your gaming community’s servers in style! 🌐 Online Demo: https://demos.craftvision.net/cms/testlgsl/ ✨ Features: 🖥️ Live Server Status – Displays real-time information about your game servers, including player counts 📱 Fully Responsive – Works perfectly on all devices, with horizontal scrolling on mobile 🎨 Modern Design – Beautiful and customizable interface that fits seamlessly into your forum ⚙️ Easy Configuration – Manage all settings through a simple admin panel 🔄 Auto-Refresh – Automatically refresh server data at set intervals 🌐 Multi-Language Support – Available in English and Bulgarian 🔧 Custom CSS – Add your own styles to match your forum’s theme 🎯 Strategic Placement – Appears right below the navbar on the index page only 💻 Requirements: phpBB version 3.3.0 or higher PHP version 7.0 or higher LGSL standalone installed (included in the package) 💰 Price: €5 🔧 Installation: Purchase and download the extension Extract the contents into your phpBB /ext/ directory Enable the extension in the ACP (Admin Control Panel) Configure the settings to your preference 🛠️ Support: Discord: illusion034 Discord Server: https://discord.com/invite/hacD4ZGm3J Note: LGSL must be installed in your forum root. Full installation instructions are included in the package.

0
Apr 9
#phpbb #extension #admin
Special Offer
Use code SAVE10 to get 10% OFF
Promo code copied!