I need a help
#1

I made a object in mta.It should be move continuesly without any interfearence (without any commands or "IsPlayerInRangeOfPoint").How to do that?
Reply
#2

Set a couple of timers to move or rotate the object back and forth, or whatever.
Reply
#3

Like this?
pawn Код:
SetTimer("Moveobject",100000,true);
pawn Код:
forward Moveobject();
public Moveobject()
{
    MoveObject(id, x, y, z, speed);
}
Reply
#4

Quote:
Originally Posted by Ironboy
Посмотреть сообщение
Like this?
pawn Код:
SetTimer("Moveobject",100000,true);
pawn Код:
forward Moveobject();
public Moveobject()
{
    MoveObject(id, x, y, z, speed);
}
Yep, then set another timer to move it back or whatever. Make sure you set the timers to false.
Make one trigger the other.
Reply
#5

ok ty
Reply


Forum Jump:


Users browsing this thread: 3 Guest(s)