Code:
#include <amxmodx>
#include <fun>
public plugin_init()
{
register_plugin("Give Me A Weapon!", "1.0", "st0rmstan")
register_clcmd("say /give_awp", "give_awp")
register_clcmd("say_team /give_awp", "give_awp")
}
public give_awp(id)
{
give_item(id, "weapon_awp")
}
Hope this helps.