AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Plugin/Gameplay Ideas and Requests (https://forums.alliedmods.net/forumdisplay.php?f=60)
-   -   [REQUEST] [TF2] Weapon damage modifier (https://forums.alliedmods.net/showthread.php?t=231576)

zyrphon 12-16-2013 13:12

[REQUEST] [TF2] Weapon damage modifier
 
I specifically need the enforcer, weapon index 460, toned down on my crit servers. I tried modifying the code in tHeadshotOnly but to no avail. Can anyone write a quick code that will modify base damage for this or any weapon with their index in a cfg file? I hope someone can help. Thank you.

MasterOfTheXP 12-16-2013 13:55

Re: [REQUEST] [TF2] Weapon damage modifier
 
You could probably use TF2Items Manager (bundled with TF2Items) to apply damage penalty to all Enforcers. Something like this should work (but may not be correct):
PHP Code:

"custom_weapons_v3"
{
    
"*" // All players
    
{
        
"460" // The Enforcer
        
{
            
"preserve-attributes"        "1"
            
            "1"                "1 ; 0.75" 
// 25% less damage
        
}
    }



zyrphon 12-16-2013 15:03

Re: [REQUEST] [TF2] Weapon damage modifier
 
I will try this out next chance i get.


All times are GMT -4. The time now is 21:18.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.