SA-MP Forums Archive
[Pedido] Offline/Online no /orgs - 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: [Pedido] Offline/Online no /orgs (/showthread.php?tid=623726)



Offline/Online no /orgs - paulotuto - 04.12.2016

Queria fazer uma sistema tipo assim

/orgs "APARECE O DIALOG DAS ORGS"

ai queria tipo isso acrescentar o (online) quando o membro estiver online e offline pra quando estiver off!

ficaria assim:

Policia Militar: Paulo_Rafael (Online)


Re: Offline/Online no /orgs - Eddye - 04.12.2016

Eu havia feito isso a muito tempo, quando editava um GM GodFather, mas nгo me recordo muito bem, mas vou tentar usando oque eu sei de hoje em dia:

No Comando de ORG's:
PHP код:
new CheckOnline;

 if(
IsPlayerConnected(playerid)
{
 
CheckOnline Online
} else {
 
CheckOnline Offline

Quando for usar nas organizaзхes faзa assim:

PHP код:
..."Polнcia Miliar: %s (%s)"GetPlayerORG[playerid], CheckOnline); 



Re: Offline/Online no /orgs - paulotuto - 04.12.2016

Quote:
Originally Posted by Eddye
Посмотреть сообщение
Eu havia feito isso a muito tempo, quando editava um GM GodFather, mas nгo me recordo muito bem, mas vou tentar usando oque eu sei de hoje em dia:

No Comando de ORG's:
PHP код:
new CheckOnline;
 if(
IsPlayerConnected(playerid)
{
 
CheckOnline Online
} else {
 
CheckOnline Offline

Quando for usar nas organizaзхes faзa assim:

PHP код:
..."Polнcia Miliar: %s (%s)"GetPlayerORG[playerid], CheckOnline); 
PHP код:
C:\Users\PauloPlay\Desktop\SERVIDOR SAMP\GM ExperT\gamemodes\GM.pwn(70679) : error 021symbol already defined"CheckOnline"
C:\Users\PauloPlay\Desktop\SERVIDOR SAMP\GM ExperT\gamemodes\GM.pwn(70683) : error 010invalid function or declaration
Pawn compiler 3.2.3664              Copyright 
(c1997-2006ITB CompuPhase
2 Errors




Re: Offline/Online no /orgs - best95 - 04.12.2016

Quote:
Originally Posted by paulotuto
Посмотреть сообщение
PHP код:
C:\Users\PauloPlay\Desktop\SERVIDOR SAMP\GM ExperT\gamemodes\GM.pwn(70679) : error 021symbol already defined"CheckOnline"
C:\Users\PauloPlay\Desktop\SERVIDOR SAMP\GM ExperT\gamemodes\GM.pwn(70683) : error 010invalid function or declaration
Pawn compiler 3.2.3664              Copyright 
(c1997-2006ITB CompuPhase
2 Errors

symbol already defined: "CheckOnline"

defina o CheckOnline

o.O


Re: Offline/Online no /orgs - Eddye - 04.12.2016

Remova o:

PHP код:
new CheckOnline
e Altere:
PHP код:
if(IsPlayerConnected(playerid)
{
 
CheckOnline Online;
} else {
 
CheckOnline Offline;




Re: Offline/Online no /orgs - paulotuto - 04.12.2016

Quote:
Originally Posted by Eddye
Посмотреть сообщение
Remova o:

PHP код:
new CheckOnline
e Altere:
PHP код:
if(IsPlayerConnected(playerid)
{
 
CheckOnline Online;
} else {
 
CheckOnline Offline;

O CODIGO:
PHP код:
if(IsPlayerConnected(playerid)
{
 
CheckOnline Online;
} else
{
 
CheckOnline Offline;

ERRORS:
PHP код:
C:\Users\PauloPlay\Desktop\SERVIDOR SAMP\GM ExperT\gamemodes\GM.pwn(70677) : error 010invalid function or declaration
C
:\Users\PauloPlay\Desktop\SERVIDOR SAMP\GM ExperT\gamemodes\GM.pwn(70680) : error 010invalid function or declaration
Pawn compiler 3.2.3664              Copyright 
(c1997-2006ITB CompuPhase
2 Errors