Has anyone succeeded?
I've tryed lots of stuff but nothing seems to work.
Sure, the ent is created but i cant climb it...
This didn't work.
Code:
new ent = engfunc(EngFunc_CreateNamedEntity, engfunc(EngFunc_AllocString, "func_ladder"))
if ( ent ) {
set_pev(ent, pev_origin, { 0.0, -400.0, -350.0 })
set_pev(ent, pev_solid, 2)
set_pev(ent, pev_mins, { 123.0, -3225.0, -61.0 })
set_pev(ent, pev_maxs, { 129.0, -2975.0, 181.0 })
engfunc(EngFunc_SetModel, ent, "*37")
}
Could someone give me a hint or point me in the right direction?