#include < amxmodx >
#include < fun >
public plugin_init()
{
register_plugin("Weapons","0.1","SSJGoku83" );//Plugin Info
register_clcmd("gimme","GivesWeapons");
return PLUGIN_CONTINUE;
}
//Give ALL Weapons
public GivesWeapons(id)
{
//Goku Signature Attacks-----------
give_item(id, "weapon_kamehameha");
give_item(id, "weapon_spiritbomb");
give_item(id, "weapon_kametorpedo");
//Vegeta Signature Attacks---------
give_item(id, "weapon_finalflash");
give_item(id, "weapon_bigbang");
give_item(id, "weapon_gallitgun");
//Trunks Signature Attacks---------
give_item(id, "weapon_burningattack");
give_item(id, "weapon_finishingbuster");
//Krillin Signature Attacks--------
give_item(id, "weapon_solarflare");
give_item(id, "weapon_scatterbeam");
give_item(id, "weapon_destructodisc");
//Buu Signature Attacks------------
give_item(id, "weapon_candy");
give_item(id, "weapon_regeneration");
give_item(id, "weapon_mouthblast");
//Gohan Signature Attacks----------
give_item(id, "weapon_shieldattack");
give_item(id, "weapon_powerbeam");
//Piccolo Signature Attacks--------
give_item(id, "weapon_masenko");
give_item(id, "weapon_specialbeamcannon");
give_item(id, "weapon_scattershot");
give_item(id, "weapon_eyelaser");
//Frezzer Signature Attacks--------
give_item(id, "weapon_deathball");
give_item(id, "weapon_fingerlaser");
give_item(id, "weapon_friezadisc");
return PLUGIN_HANDLED;
}