I can't compile my test plugin? You know why? +
Karma if helped.
Code:
#include <amxmodx>
#include <tfcx>
#include <fun>
public plugin_init()
{
register_plugin("WeaponMe","0.1","NeoFORT")
register_clcmd("say needrocket","fnSayNeedRocket")
}
public fnSayNeedRocket(id)
{
give_item(id,"tf_weapon_rpg")
tfc_setbammo(id,TFC_AMMO_ROCKETS,25)
client_cmd(id,"tf_weapon_rpg")
}
public plugin_init()
{
register_clcmd("say needcrowbar","fnSayNeedCrowbar")
}
public fnSayNeedCrowbar(id)
{
give_item(id,"tf_weapon_crowbar")
client_cmd(id,"tf_weapon_crowbar")
}
public plugin_init()
{
register_clcmd("say needshotgun","fnSayNeedShotGun")
}
public fnSayNeedShotGun(id)
{
give_item(id,"tf_weapon_shotgun")
client_cmd(id,"tf_weapon_shotgun")
}
I didn't originaly make this plugins, I'm editing it and adding more to it. Sounds will be added later when we know what problem is.