09-19-2011, 17:12
Another tutorial, this time of FX, I explained something else on other tutorials about some FX commands, but this have others,
First of all, how to load a FX
Now, to play it, 2 ways:
Example:
If you spawned it, you can do.
and then to remove it:
says thanks for reading
First of all, how to load a FX
Code:
level.effectname = loadfx("FXname");
Now, to play it, 2 ways:
Code:
PlayFX(level.effectname,position);
OMA = SpawnFx(level.effectname,position);
Example:
Code:
level.omahaxfx = loadfx("omapowers");
PlayFX(level.omahaxfx,(95,4553,1337));
If you spawned it, you can do.
Code:
TriggerFX(OMA);
and then to remove it:
Code:
wait time;
OMA delete();
says thanks for reading