I just started my first plugin after reading all the docs and looking at source codes. Im trying to make my own giveitem, plugin for The specialist. I got stuck very quickly lol
Code:
#include <amxmodx>
#include <amxmisc>
#include <fun>
#include <tsx>
new PLUGIN[]="Item_Giving"
new AUTHOR[]="exolenT"
new VERSION[]="1.0Beta"
public plugin_init()
{
register_plugin(PLUGIN, AUTHOR, VERSION)
register_concmd("amx_giveitem", "cmd_gitem", ADMIN_SLAY, "<target>")
Can anyone help?
__________________