01.03.2012, 17:22
How do I make the second gate open 5 seconds after the first?
pawn Код:
if (strcmp("/opengate", cmdtext, true, 10) == 0)
{
MoveObject(Mygate,X,Y,Z,S);
MoveObject(Mygate1,X,Y,Z,S); // how do I make this one open lets say 5 seconds after the first?
return 1;
}
return 0;