1 [Script] Mudar Nome 2/10/2012, 03:30
Myke ~
Membro Honorário I
Vá até, Servidor -> Script -> Principal.txt.
Procure Por:
De 2 Enter e Adicione:
Explicando:
Créditos ~
Eu por Postar
mmorpgbr por disponibilizar
Procure Por:
- Código:
m = GetVar("Dados.ini", "MAX", "MAX_MAPS")
TextSay = GetVar("Scripts\Comandos.ini", "TEMP", "Text" & index)
De 2 Enter e Adicione:
- Código:
'Mudar o Nome'
If LCase(Mid(TextSay, 1, 10)) = "/mudarnome" Then
If Len(TextSay) > 11 Then
If GetPlayerAccess(index) < 5 Then
Call PlayerMsg(index, "Você Não Tem Acesso Para Usar Este Comando", 4)
Exit Sub
End If
n = Mid(TextSay, 11, Len(TextSay) - 10)
If n <> "" Then
Call SetPlayerName(index, n)
Call PlayerMsg(index, "Nome Alterado Para:" & n, 0)
Call SendPlayerData(index)
Call SendOnlineList
Else
Call PlayerMsg(index, "Por favor, Digite Um Nome.", 15)
End If
End If
Exit Sub
End If
Explicando:
- Código:
If LCase(Mid(TextSay, 1, 10)) = "/mudarnome" Then
- Código:
If GetPlayerAccess(index) < 5 Then
Créditos ~
Eu por Postar
mmorpgbr por disponibilizar