Fala galera trago para vocês um sistema muito legal caso você queira atacar os jogadores sendo GM porem esse você pode desligar e ligar.
Depois de ter encontrado troque isso:
por isso:
Feito isso vá na frmServer e faça igual ao meu:
Bom as modificações só vão ser feitas no servidor então abra o:
server.vbp
Depois de ter aberto procure a seguinte linha na Function CanPlayerAttackPlayer :
- Código:
If GetPlayerAccess(attacker) > ADMIN_MONITOR Then
Depois de ter encontrado troque isso:
- Código:
' Check to make sure that they dont have access
If GetPlayerAccess(attacker) > ADMIN_MONITOR Then
Call PlayerMsg(attacker, "Admins não atacam jogadores.", BrightBlue)
Exit Function
End If
' Check to make sure the victim isn't an admin
If GetPlayerAccess(victim) > ADMIN_MONITOR Then
Call PlayerMsg(attacker, "Você não pode atacar " & GetPlayerName(victim) & "!", BrightRed)
Exit Function
End If
por isso:
- Código:
'ativar e desativar pvp - kielleds
If frmServer.chkAdmin.value = YES Then
' Check to make sure that they dont have access
If GetPlayerAccess(attacker) > ADMIN_MONITOR Then
Call PlayerMsg(attacker, "Admins não atacam jogadores.", BrightBlue)
Exit Function
End If
' Check to make sure the victim isn't an admin
If GetPlayerAccess(victim) > ADMIN_MONITOR Then
Call PlayerMsg(attacker, "Você não pode atacar " & GetPlayerName(victim) & "!", BrightRed)
Exit Function
End If
Else
End If
Feito isso vá na frmServer e faça igual ao meu:
OBS: crie isso em algum lugar das abas
na checkbox faça as seguintes configurações:
Nome: chkAdmin
Caption: Ativar sistema
e vuala o sistema es pronto, basicamente eu fiz uma condição que ativa e desativa a função.
Sobre os créditos, Nem precisa dar pois só fiz uma condição não é nada de mais.