[Ajuda] Sistema AFK - 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] Sistema AFK (
/showthread.php?tid=582744)
Sistema AFK -
Thider - 23.07.2015
Estou usando esse sistema de detectar se o jogador estб de ESC:
http://forum.sa-mp.com/showpost.php?...postcount=3077
ele funciona, eu fiz um comando /verafk, para ver os jogadores de ESC no momento, porйm queria que aparecesse apenas quem tivesse >= 3 segundos de AFK, no caso a funзгo
Код:
foreach(Player, i)
{
if(IsPaused(i))
{
if(GetPausedTime(i) >= 3) // Aviso AQUI
{
format(str, sizeof(str), "{FFFFFF}%s (ID %d) {AFAFAF}esta pausado a aproximadamente {FFFF00}(%d) {AFAFAF}segundos!", Nome(i),i, GetPausedTime(i));
SendClientMessage(playerid, -1, str);
}
}
}
й sу uma parte do comando ...
Jб tentei colocar
Код:
if(GetPausedTime(i >= 3))
ele compila sem aviso porйm nгo funciona in-game.
Aviso que estб dando: warning: 213: tag mismatch
Re: Sistema AFK -
darkxdll - 23.07.2015
PHP код:
foreach(Player, i)
{
if(IsPaused(i))
{
new temp = GetPausedTime(i);
if(temp >= 3)
{
format(str, sizeof(str), "{FFFFFF}%s (ID %d) {AFAFAF}esta pausado a aproximadamente {FFFF00}(%d) {AFAFAF}segundos!", Nome(i),i, GetPausedTime(i));
SendClientMessage(playerid, -1, str);
}
}
}
Tenta , nгo entendi muito o porque do warn
Re: Sistema AFK -
Thider - 23.07.2015
Quote:
Originally Posted by darkxdll
PHP код:
foreach(Player, i)
{
if(IsPaused(i))
{
new temp = GetPausedTime(i);
if(temp >= 3)
{
format(str, sizeof(str), "{FFFFFF}%s (ID %d) {AFAFAF}esta pausado a aproximadamente {FFFF00}(%d) {AFAFAF}segundos!", Nome(i),i, GetPausedTime(i));
SendClientMessage(playerid, -1, str);
}
}
}
Tenta , nгo entendi muito o porque do warn
|
Obrigado, funcionou... й meio estranho ter dado warning sem a vбriavel.