Quote:
Originally Posted by Ynet
is there a way to block a certain door from ever opening?
i know how to hook onto the object i am looking for only problem is i don't know how to disable it Permanently
|
I don't know how the map objects work, but if you get an entity, you could easily set the movetype:
Code:
entity_set_int(ent, EV_INT_movetype, MOVETYPE_NONE)
or
Code:
pev(ent, pev_movetype, MOVETYPE_NONE)