AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Suggestions / Requests (https://forums.alliedmods.net/forumdisplay.php?f=12)
-   -   [REQ] No pistol at roundstart, new round and respawn (https://forums.alliedmods.net/showthread.php?t=304239)

blanko 01-09-2018 00:24

[REQ] No pistol at roundstart, new round and respawn
 
Remove the free glock/usp given at roundstart, new round and respawn

blanko 01-13-2018 01:39

Re: [REQ] No pistol at roundstart, new round and respawn
 
not possible?

klippy 01-13-2018 06:40

Re: [REQ] No pistol at roundstart, new round and respawn
 
Here's a lazy common way:
PHP Code:

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

#pragma semicolon true

public plugin_init()
{
    
register_plugin("PLUGIN""VERSION""AUTHOR");
    
    
RegisterHam(Ham_Spawn"player""@Player_Spawn"true);
}

@
Player_Spawn(this)
{
    if(!
is_user_alive(this))
    {
        return 
HAM_IGNORED;
    }
    
    
strip_user_weapons(this);
    
give_item(this"weapon_knife");
    
    return 
HAM_IGNORED;




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

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