1 [ALL] GM vendo Inventário Do Player 2/10/2012, 20:22
Myke ~
Membro Honorário I
Bom Primeiro Vá até seus Scripts, e coloque isso no Final do Main.
Depois Crie um Comando:
Logo Após instalar o script vá no jogo e digita : /chegar (nick do jogador)
Você também pode modificar /checar por um comando diferenciado exemplo: /mochila , /verificar .
isso você que sabe
Créditos ~
FelipeBN
Morenoo
Schiffer por postar na MMORPGBR
Eu por Postar Aqui
- Código:
Sub VerificarItem(index, target, num)
If GetPlayerInvItemNum(target, num) > 0 then
Call PlayerMsg(index, GetPlayerInvItemNum(target, num) & " - " & GetItemName(GetPlayerInvItemNum(target, num)) & " - " & GetPlayerInvItemValue(target, num), brightred)
End if
Call RemoveTimer("VerificarItem " & index & "," & target & "," & num)
num = num + 1
if num < 25 then
Call SetTimer("VerificarItem " & index & "," & target & "," & num, 1000)
end if
end sub
Depois Crie um Comando:
- Código:
Case "/checar"
If GetPlayerAccess(index) < 4 then
Exit sub
end if
Call SetTimer("VerificarItem " & index & "," & FindPlayer(TextSay(1)) & "," & 1, 1000)
exit sub
Logo Após instalar o script vá no jogo e digita : /chegar (nick do jogador)
Você também pode modificar /checar por um comando diferenciado exemplo: /mochila , /verificar .
isso você que sabe
Créditos ~
FelipeBN
Morenoo
Schiffer por postar na MMORPGBR
Eu por Postar Aqui