* Could someone add something to this plugin, where it would give an MP5 with full ammo to all players on every round, if there be one person in the server or a lot, thinking of it being on a death match server.
PHP Code:
#include <amxmodx>
#include <hamsandwich>
#include <fun>
public plugin_init()
{
register_plugin("hello", "1.0", "Stewie!");
RegisterHam(Ham_Spawn, "player", "player_spawn", 1);
}
public player_spawn(id)
{
if(is_user_alive(id))
{
strip_user_weapons(id);
}
}
__________________