[Ajuda] Avancar o tutorial so em 10 segundos - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Avancar o tutorial so em 10 segundos (
/showthread.php?tid=406140)
Avancar o tutorial so em 10 segundos -
Junior_Cunha - 09.01.2013
Galera ja tentei de tudo, coloquei settimer, fiz algumas coisas para conseguir mais n conseguir, alguem pode mim ajudar?
problema: queria so avancar no tutorial depois de 10 segundos
Re: Avancar o tutorial so em 10 segundos -
TreePuncher - 09.01.2013
Sйrio?
Respuesta: Avancar o tutorial so em 10 segundos -
oOFotherOo - 09.01.2013
Cуdigo?
Re: Avancar o tutorial so em 10 segundos -
Q.I - 09.01.2013
Olб , Vamos lб.
Leia essas coisas.
* GetPVarInt
* SetPVarInt
* DeletePVar
Exemplo De Modo De Uso.
pawn Код:
//no tutorial
SetTimerEx("esperartutorial",10*1000,false,"i",playerid);
if(GetPVarInt(playerid,"Espero10")==0)
{
SetPVarInt(playerid,"Espero10",1);
}
else {return SendClientMessage(playerid,-1,"[AVISO] Aguarde 10 Segundos Para Continuar");}
//no final do gm ou no comeзo vocк que sabe
forward esperartutorial(playerid);
public esperartutorial(playerid){
return DeletePVar(playerid,"Espero10");
}
ou procure se informar sobre * GetTickCount
Re: Avancar o tutorial so em 10 segundos -
Junior_Cunha - 09.01.2013
vlw vo ler mais
Re: Avancar o tutorial so em 10 segundos -
Maklister - 09.01.2013
pawn Код:
new bool:LiberadoTutorial[MAX_PLAYERS] = true;
forward Tutorial(playerid);
public Tutorial(playerid)
{
if(LiberadoTutorial[playerid] == true)
{
// Code do tutorial
SetTimerEx("EsperandoTutorial", false, "d", playerid);
}
else
{
SendClientMessage(playerid, -1, "Espere ser liberado para o tutorial.");
}
}
forward EsperandoTutorial(playerid);
public EsperandoTutorial(playerid)
{
LiberadoTutorial[playerid] = false;
SendClientMessage(playerid, -1, "* Vocк foi liberado para seguir o tutorial ...");
return 1;
}
A lуgica tae