06.09.2011, 14:11
Quote:
thanks but now need to make textdraws to show like dices and to changing the numbers 1 - 6 and to stop for 4 secounds it will be nice if some one helps me.
![]() |
and what do you mean?
you mean somthing like this:
pawn Код:
// forward's
forward Start()
forward Stop()
forward Continue()
// lets start to count
SetTimer("Start", 3000,0); //somewhere in your script
// lets stop the timer
public Start()
{
SetTimer("Stop", 4000, 0);
}
// here we continue
public Stop()
{
SetTimer("Continue", 3000,0);
}
// here what will happen when the timer " Continue" will end to count
public Continue()
{
//script
}