Olá! Esse é o primeiro tuto que eu posto aqui, achei ele bem interessante. Espero que gostem.
No Server:
Procure:
Em baixo coloque:
Depois procure por:
E embaixo coloque:
Créditos:Robin e Sherwin.
No Server:
Procure:
- Código:
If IsMultiAccounts(Name) Then
Call AlertMsg(index, "Multiple account logins is not authorized.")
Exit Sub
End If
Em baixo coloque:
- Código:
If IsMultiIPOnline(Trim$(GetPlayerIP(index))) Then
Call AlertMsg(index, "Você já está logado.")
Exit Sub
End If
Depois procure por:
- Código:
' Prevent hacking
If Len(Trim$(Name)) > ACCOUNT_LENGTH Or Len(Trim$(Password)) > NAME_LENGTH Then
Call AlertMsg(index, "Your account name must be between 3 and 12 characters long. Your password must be between 3 and 20 characters long.")
Exit Sub
End If
E embaixo coloque:
- Código:
If IsMultiIPOnline(Trim$(GetPlayerIP(index))) Then
Call AlertMsg(index, "Você já está logado.")
Exit Sub
End If
Créditos:Robin e Sherwin.