06.09.2013, 13:42
prefiro usar algo assim
para comecar o tutorial basta usar
que pode ser usada por exemplo assim
pawn Код:
// junto com as outras forward
forward tuto(playerid);
forward tuto1(playerid);
forward tuto2(playerid);
forward tuto3(playerid);
// fim da gm
public tuto(playerid)
{
SendClientMessage(playerid, -1, "sou");
SetTimerEx("tuto1", 5000, 0, "e", playerid);
return 1;
}
public tuto1(playerid)
{
SendClientMessage(playerid, -1, "muito");
SetTimerEx("tuto2", 5000, 0, "e", playerid);
return 1;
}
public tuto2(playerid)
{
SendClientMessage(playerid, -1, "lindo");
SetTimerEx("tuto3", 5000, 0, "e", playerid);
return 1;
}
public tuto3(playerid)
{
SendClientMessage(playerid, -1, "oi");
return 1;
}
pawn Код:
tuto(playerid);
pawn Код:
CMD:teste(playerid)
{
tuto(playerid);
return 1;
}