So your saying do something like:
Code:
#include <amxmodx>
#include <fakemeta>
public plugin_init()
{
register_forward(FM_PlayerPreThink, "forward_prethink");
}
public forward_prethink(id)
{
client_print(id, print_chat, "[AMXX] The action is %s", pev(id, pev_iuser3))
}
yeah I know I could have made something like /checkaction or some bs but I would rather it spam so I can see every second whats going on.
But yeah something like that and let it print out what that is and what its doing?
I'm just now starting to use FakeMeta and Engine Commands like velocity so I'm trying to learn as much and have as much fun with it as possible.