Hello i have a gunbug in my jailbreak server some of the terrorosits spawns with a glock can someone fix this i found this plugin but i dont know if this is good i only dont want them to spawn with any guns grtz
PHP Code:
#include <amxmodx>
#include <amxmisc>
#include <hamsandwich>
#include <fakemeta_util>
public plugin_init() {
register_plugin("JB weapon strip", "-", "VMANcentral.com");
RegisterHam(Ham_Spawn, "player", "fwHamPlayerSpawnPost", 1);
}
public fwHamPlayerSpawnPost(id)
{
if(cs_get_user_team(id) == CS_TEAM_T ))
{
fm_strip_user_weapons(id);
set_pdata_int(id, 116, 0);
fm_give_item(id, "weapon_knife");
}
}