HLMOD.HU Forrás Megtekintés
- www.hlmod.hu#include <amxmodx>
#include <fun>
#include <zombieplague>
new g_inf_swarm
public plugin_init()
{
register_plugin("[ZP] Fertozo Bomba Raj Mod", "1.0.3", "fezh")
g_inf_swarm = zp_register_extra_item("Fertozo Granat (Csak rajd modba)", 35, ZP_TEAM_ZOMBIE)
}
public zp_extra_item_selected(player, itemid)
{
if (itemid == g_inf_swarm)
{
if (zp_is_swarm_round())
{
give_item(player, "weapon_hegrenade")
client_print(player, print_chat, "[ZP] Nincs eleg loszer csonagod az Infection Bomb-hoz!")
}
else
{
client_print(player, print_chat, "[ZP] Ez csak Raj Mod-ban engedelyezett!")
return 97;
}
}
return PLUGIN_HANDLED;
}