[Ajuda] Tutorial
#1

Olб galera da forum samp, estou criando uma gamemode com Dof2, zcmd, e sscanf, e queria perguntar se tem como eu criar um tutorial no " onplayerspawn " e verificar se ele for registrado nгo executar o tutorial, se nгo for registrado ele passa o tutorial.. se alguйm puder me dar uma ajuda agradeзo!!
Reply
#2

pawn Код:
//No Registro
SetPVarInt(playerid,"Registrado", 14);

//Na OnPlayerSpawn
if(GetPVarInt(playerid,"Registrado") == 14)
{
    // inicia o tutorial
    SendClientMessage(playerid, -1 "EAEEEE CARINHA NOVATO! TUDO BLZ?!");
}

//Ao terminar o tutorial
DeletePVar(playerid,"Registrado");
14 й o dia do meu aniversбrio :P

Leia isso: https://sampwiki.blast.hk/wiki/SetPVarInt
Reply
#3

Obrigado pela ideia, vou fazer aqui e ver se fica tudo certo
Reply
#4

Quote:
Originally Posted by LucasDias
Посмотреть сообщение
Obrigado pela ideia, vou fazer aqui e ver se fica tudo certo
De nada. Qualquer problema, tamo ae!
Reply
#5

Quote:
Originally Posted by humildadeforever
Посмотреть сообщение
pawn Код:
//Na OnPlayerSpawn
if(GetPVarInt(playerid,"Registrado") == 14)
{
    // inicia o tutorial
    SendClientMessage(playerid, -1 "EAEEEE CARINHA NOVATO! TUDO BLZ?!");
}
14 й o dia do meu aniversбrio :P

Leia isso: https://sampwiki.blast.hk/wiki/SetPVarInt

Ali onde ta a mensagem, como eu poderia colocar um timer? ex:
if(time = 10)
{
SendClientMessage(playerid, -1 "EAEEEE CARINHA NOVATO! TUDO BLZ?!");
}

como poderia fazer tipo um timer para ir passando as mensagens ali dentro?
Reply
#6

Quote:
Originally Posted by LucasDias
Посмотреть сообщение
Ali onde ta a mensagem, como eu poderia colocar um timer? ex:
if(time = 10)
{
SendClientMessage(playerid, -1 "EAEEEE CARINHA NOVATO! TUDO BLZ?!");
}

como poderia fazer tipo um timer para ir passando as mensagens ali dentro?

pawn Код:
forward Parte2(playerid);
public Parte2(playerid)
{
    SetPVarInt(playerid, "Parte2", 15);
    return 1;
}

SetPVarInt(playerid,"Registrado", 14);

//OnPlayerSpawn
if(GetPVarInt(playerid,"Registrado") == 14)
{
    // inicia o tutorial
    SendClientMessage(playerid, -1 "EAEEEE CARINHA NOVATO! TUDO BLZ?!");
    SetTimerEx("Parte2", 20000, false, "i", playerid);
}
if(GetPVarInt(playerid, "Parte2") == 15)
{
    SendClientMessage(playerid, -1, "Parte 2 do tutorial");
}

//fim do tutorial
DeletePVar(playerid,"Registrado");
DeletePVar(playerid, "Parte2");
Siga essa lуgica...
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)