SA-MP Forums Archive
turturial - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: turturial (/showthread.php?tid=89699)



turturial - Geekzor - 03.08.2009

guys i was searching how to make turturial like in GF Gamemode i like it so much i was searching in GF gamemode on public OnPlayerConnect + OnPlayerSpawn and i dont find nothing mybe i miss it can someone tell how to do it or where i can find it in GM gamemode... what line ? cuz all roleplay servers have this turturial and i wanan have it too

ty for any help and i real hope someone can help me

TY!

Kljukec


Re: turturial - WrathOfGenesis - 03.08.2009

Just create a timer that counts up and as it counts up, send a new message to the player in the tutorial.

pawn Код:
count ++;

switch ( count )
{
  case 0:
  {
    //Message 1
  }

  case 1:
  {
    //Message 2
  }
}
Note: This is just an example and i only recomend using it for reference as it probably wont work otherwise lol