Hello, i saw somewhere that this is impossible but there are many things what should be impossible but are possible now with some trick.
Anyway here is code:
PHP Code:
public plugin_init() register_forward(FM_SetAbsBox,"i_sizeupdate")
public i_sizeupdate(id)
{
static Float:a[3], Float:b[3]
if(id == 1 ) // its me :)
{
a[0] = -5.0; a[1] = -5.0; a[2] = -10.0;
b[0] = 5.0; b[1] = 5.0; b[2] = 10.0;
engfunc(EngFunc_SetSize,id,a,b)
set_pev(id,pev_mins,a)
set_pev(id,pev_maxs,b)
set_pev(id,pev_absmin,a)
set_pev(id,pev_absmax,b)
dllfunc(DLLFunc_SetAbsBox,id)
}
}
Anyway the game will crash just after game has starded ( I can also see my map for a sec

)
What is the problem or what i am doing here anyway?
I dont understand it at all, i found this somewhere in this forum.
And as always, thanks!