AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Suggestions / Requests (https://forums.alliedmods.net/forumdisplay.php?f=12)
-   -   3 Grenade (https://forums.alliedmods.net/showthread.php?t=310663)

moresa 09-13-2018 23:05

3 Grenade
 
i need a plugin that give each player 3 Grenade
thank you guys you helped me a lot

Mr Misw 09-14-2018 04:59

Re: 3 Grenade
 
PHP Code:

#include <amxmodx>
#include <hamsandwich>
#include <cstrike>
#include <fun>

#define PLUGIN "3 GRENADES"
#define VERSION "1.0"
#define AUTHOR "Mr Miss"

public plugin_init() {
    
register_plugin(PLUGINVERSIONAUTHOR)
    
    
RegisterHam(Ham_Spawn"player""Player_Spawn"1);
}

public 
Player_Spawn(id)
{
    
give_item(id"weapon_hegrenade")
    
cs_set_user_bpammo(idCSW_HEGRENADE3);





All times are GMT -4. The time now is 01:47.

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