function add_superpowers()
--explosion_create("genki_exp", LOCAL_PLAYER)
player_super_powered(LOCAL_PLAYER, true)
--reticle_override_set("sp_vtol01_w", "WPNCAT_RIFLE", SYNC_LOCAL)
if COOP_COMMANDS and coop_is_active() then
--explosion_create("genki_exp", REMOTE_PLAYER)
player_super_powered(REMOTE_PLAYER, true)
--reticle_override_set("sp_vtol01_w", "WPNCAT_RIFLE", SYNC_REMOTE)
end
--dlc3_m03_punch_load()
inv_weapon_add_temporary(LOCAL_PLAYER, "DLC_super_fists", 1, true, true, false, true)
inv_item_remove("DLC_fireball", LOCAL_PLAYER)
--inv_weapon_add_temporary(LOCAL_PLAYER, "DLC_fireball", 1, true, true, false, true)
--inv_weapon_disable_all_but_this_slot( WEAPON_SLOT_MELEE, true, SYNC_LOCAL )
auto_pickup_disable(LOCAL_PLAYER)
if COOP_COMMANDS and coop_is_active() then
inv_weapon_add_temporary(REMOTE_PLAYER, "DLC_super_fists", 1, true, true, false, true)
inv_item_remove("DLC_fireball", REMOTE_PLAYER)
--inv_weapon_add_temporary(REMOTE_PLAYER, "DLC_fireball", 1, true, true, false, true)
--inv_weapon_disable_all_but_this_slot( WEAPON_SLOT_MELEE, true, SYNC_REMOTE )
auto_pickup_disable(REMOTE_PLAYER)
end
end