Jump to content

[AMXX] IF-uri


LondoN eXtream

Recommended Posts

 

if(!is_user_alive(id))
{
         server_print("Client is dead")
         return;
}

 

Verifica daca userul este in viata.

 

 

if(!is_user_hltv(id))
{
         server_print("HLTV Client detected.")
         return;
}

 

Playerul e HLTV.

 

 

if(!is_user_bot(id))
{
        server_print("Client is a bot")
        return;
}

 

Userul este Bot.

 

 

if(!is_user_connected(id))
{
          server_print("Client is not on the server")
          return;
}

 

Clientul nu este conectat.

 

Acestea sunt cele mai folosite IF-uri.

Sper ca va fost defolos.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...