It wont load correctly, it loads as "unknown" and when i restart the server the server doesent come up anymore unless i take it off.
Heres what i got:
Code:
#include <amxmodx>
#include <fakemeta>
public plugin_init()
{
register_plugin( "eGKnife" ,"1.0", "incRo")
register_event("CurWeapon","event_curweapon","b","1=1","2=29") //CSW_KNIFE = 29
}
public plugin_precache()
{
precache_model("models/custom/v_knife.mdl")
}
public event_curweapon(id)
{
set_pev(id, pev_viewmodel, engfunc(EngFunc_AllocString, "models/custom/v_knife.mdl"))
}
__________________