Well i dont really know what to do.Im trying to find the right Offsets and stuff like that, but i dotn got any clue what i have to do, i just messed around with this.I dont got any errors while compiling and No errors in game, when i type into the console, get_offset , it shows nothings not even UNKNOW COMMAND, i figure that i need an native that shows me the line of something, but i cant figure it out. please help me
//Offset Shower
//Author: Stephen
#include <amxmodx>
#include <engine>
public plugin_init() {
register_plugin("offset","1.0","Stephen")
register_clcmd("get_offset","g_offset")
return PLUGIN_CONTINUE
}
public g_offset(id) {
get_offset_int(91, 91)
get_offset_char(91, 91)
return PLUGIN_HANDLED
}