I would like to make a plugin that can give weapons to players.
Code:
#include <amxmodx>
#include <fun>
public plugin_init() {
register_plugin("Give-Weapon","1.00","FoX")
register_clcmd("amx_giveweapon","giveweapon",ADMIN_LEVEL_A,"Gives client a weapon")
}
public giveweapon(id) {
Would I just have to add get_user_weapon(m4a1,4,90) and then compile it?
Yes, I'm a newb.
__________________