03.08.2009, 18:57
Just create a timer that counts up and as it counts up, send a new message to the player in the tutorial.
Note: This is just an example and i only recomend using it for reference as it probably wont work otherwise lol
pawn Код:
count ++;
switch ( count )
{
case 0:
{
//Message 1
}
case 1:
{
//Message 2
}
}