well, im learning c++ on school , almost 1 year of c++ programming, i ever wanted to make my own cs plugins, now that i know a programming language i think i can learn pawn, but i need some help to start, i already read lots of tutorials, and im trying to make my first plugin.
thats what i got so far:
PHP Code:
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "give_he"
#define VERSION "1.0"
#define AUTHOR "Lagayo"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_concmd("amx_givehe","cmd_givehe", ADMIN_BAN,"<target>")
}
public cmd_givehe(id,level,cid)
{
if (!cmd_access(id, level, cid, 3))
return PLUGIN_HANDLED
}
so got stuck on coding the comand(the hardest part and the one you need to learn some skills)
so im asking if anyone can finish this plugin, comenting EVERY line so i can understand it better ;)
Thank you