hey,
i want to catch the model id & my plugin gives me other id as what i can see in bspviewer.. know anyone why its so ?
PHP Code:
#include <amxmodx>
#include <amxmisc>
#include <engine>
#include <fakemeta>
#include <fakemeta_stocks>
public plugin_init()
{
register_plugin("haha","huhu", "haha")
register_touch("trigger_hurt","player","Forward_PlayerTouchRedirect")
}
public Forward_PlayerTouchRedirect(id,ent, model[])
{
new test[32];
EF_ModelIndex(test)
client_print(0,print_chat,"%s",sModel,class,class,test)
}
model id showed in bsp viewer = *1
plugin outpuu = 214
__________________