So when im using this Code i have a Problem
My event Player TOUCH dont work anymore i need a Semiclip where the Player Touch Events works how can i fix that?
PHP Code:
plugin_init()
{
register_forward(FM_PlayerPreThink, "preThink")
register_forward(FM_PlayerPostThink, "postThink")
}
public preThink(id)
{
if(pev(id, pev_movetype) == MOVETYPE_NOCLIP) return
set_pev(id, pev_solid, SOLID_SLIDEBOX)
}
public postThink(id)
{
if(pev(id, pev_movetype) == MOVETYPE_NOCLIP) return
set_pev(id, pev_solid, SOLID_NOT)
}
__________________