#include <amxmodx> #include <fakemeta> #define PLUGIN "Test" #define AUTHOR "Jim" #define VERSION "1.0" public plugin_init() { register_plugin(PLUGIN, VERSION, AUTHOR) register_clcmd("test", "test") } public test(id) { new Float:ofs[3] pev(id, pev_view_ofs, ofs) ofs[2] -= 8.0 set_pev(id, pev_view_ofs, ofs) return 1 }