25.06.2018, 07:31
2 solutions:
- Makes appear the actor in every virtual worlds.
- Makes appear the actor in different virtual worlds that you store in an array and you need to use CreateDynamicActorEx.
Example:
- Makes appear the actor in every virtual worlds.
- Makes appear the actor in different virtual worlds that you store in an array and you need to use CreateDynamicActorEx.
Example:
PHP код:
new actors_vw[5];
for(new i; i < sizeof(actors_vw), i++)
actors_vw[i] = i+1;
CreateDynamicActorEx(modelid, Float:x, Float:y, Float:z, Float:r, .worlds = actors_vw); // the actor will appear in virtual world 1 to 5