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 "short"

Found 2 product(s)

Page 1 of 1
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
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