After creating an entity, is needed to check if was succesfully created?
For example, using pev_valid
When can create_entity native fails?
Can this happen sometimes or rarely?
Any other alternative? Other native or what do when this happens
For example, using pev_valid
Код:
new ent = create_entity("info_target")
if (!pev_valid(ent)) return;
// do many things with new entity
Can this happen sometimes or rarely?
Any other alternative? Other native or what do when this happens