Okay, I feel like an idiot, I know it's something small.
Code:
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "Find Origin"
#define VERSION "1.0"
#define AUTHOR "Brit Jamerson"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("say /findorigin", "fo_base")
}
public fo_base(id)
{
new origin[0]
get_user_origin(id, 0)
}
Not sure what I did wrong, I'm trying to find the origin whereever the player uses the say cmd
__________________