Skip to content

Instantly share code, notes, and snippets.

@hzqst
Created December 22, 2015 15:17
Show Gist options
  • Save hzqst/f35bf209edf0543f8a2d to your computer and use it in GitHub Desktop.
Save hzqst/f35bf209edf0543f8a2d to your computer and use it in GitHub Desktop.
amxx
public AddToFullPack_Post(es_handle,e,ent,host,hostflags,player,pSet)
{
if(player == 1)
{
set_es(es_handle, ES_Effects, (1<<11));
}
return FMRES_HANDLED;
}
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
// Add your code here...
register_forward(FM_AddToFullPack,"fw_AddToFullPack_Post",1)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment