Quote:
Quote:
send_var_id expects a pointer to a user defined variable / struct. You're passing an entity pointer to it.
, sry but I don't get this. Am I not sending an array (where the entity handle is saved in) through instead of an entity pointer? And why does it work when I send the handle through a var instead of an array?:


When passing the variable, it works because "send_var_id expects a pointer to a user defined variable" and your variable is just simply a variable you defined. When you try to pass it via array, "You're passing it an entity pointer" which it does not accept because your array is of type ENTITY*, therefore the crash.