IsPlayerConnected
#1

Hello is this right to check if two player are connected
PHP код:
if(!IsPlayerConnected(player1 || player2)) 
?
Reply
#2

Код:
if(IsPlayerConnected(player1) || IsPlayerConnected(player2))
This will check if either of the 2 are connected


Код:
if(IsPlayerConnected(player1) && IsPlayerConnected(player2))
This will check if both are connected.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)