AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Suggestions / Requests (https://forums.alliedmods.net/forumdisplay.php?f=12)
-   -   All C4 (https://forums.alliedmods.net/showthread.php?t=193025)

Randomize 08-15-2012 21:01

All C4
 
Is there any plugins which give all players c4?

ANTICHRISTUS 08-17-2012 10:16

Re: All C4
 
Quote:

Originally Posted by ANTICHRISTUS (Post 1773845)


pokemonmaster 08-17-2012 10:31

Re: All C4
 
He ment to give the c4 bomb to all players not to add bomb zones
Try this:
PHP Code:

#include <amxmodx>
#include <fun>

#define PLUGIN "C4 ALL"
#define VERSION "1.0"
#define AUTHOR "Khalid"


public plugin_init() {
    
register_plugin(PLUGINVERSIONAUTHOR)
    
register_event("HLTV""eNewRound""a""1=0""2=0")
}

public 
eNewRound()
{
    new 
players[32], countplayer
    get_players
(playerscount"a")
    
    for(new 
icounti++)
    {
        
player players[i]
        if(!
is_user_alive(player))
            return;
        
        else 
            
give_item(player"weapon_c4")
    }




All times are GMT -4. The time now is 06:04.

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