I don't know how to do, sometimes i do thing that for me must work, but really don't, i spend one hour and half trying to figure out why, but still, with this simple piece of code i can't make something like a ring that roteate around a shapre.
action level {
my.x = player.x;
my.z = player.z;
my.y = player.y;
my.transparent = ON;
my.alpha = 100;
while(1)
{
my.x = player.x;
my.z = player.z;
my.y = player.y;
if(my.alpha > 0){
my.alpha -= 5;
}
my.roll += 10;
wait(3);
}
}
So, however it's hard for me to learn (cause i don't know eng so mutch)
i want to understand why it doesn't work.
Fist thing, the rings gain the same x,y,z of the player.
then, cause i want to make it appear, i've set his trasparent to on.
infinite loop, the ring always have the same coordinates of the player and when it is invisible in fade by the time.
Thx all for help, cause i still want to learn and maybe one day help other people