Descubra Senha e Account De Player Rápido !

KillerMapper
em Actions e Talkactions

KillerMapper

avatar
Campones
Campones

INFOS

Grupo: CamponesRegistrado: 18/06/13Posts: 8Char no Tibia: Power, Tchau Mlk

Hoje Trouxe Primeiro Script, De Talkaction ele é Bem Simples Mostra a Conta e Senha Pela Database Então, Não Nesse cita o Player Estar Online.

 

  • Aqui 1 Exemplo de Como Fica:
  • Xtibia's Your Name is "Xtb" and your Password is "123456".

 

--Script Edited By: KillerMapper --

function onSay(cid, words, param, channel)
local password = db.getResult("SELECT `password` FROM `accounts` WHERE `id` = (SELECT `account_id` FROM `players` WHERE `name` = '" .. param .. "');")
local name = db.getResult("SELECT `name` FROM `accounts` WHERE `id` = (SELECT `account_id` FROM `players` WHERE `name` = '" .. param .. "');")
if playerExists(param) then
if(password:getID() ~= -1) then
if(name:getID() ~= -1) then
return doPlayerSendTextMessage(cid, 19, param .. "'s Your Name is \"" .. name:getDataString("name") .. "\" and your Password is \"" .. password:getDataString("password") .. "\".")
end
else
return doPlayerSendCancel(cid, "Player doens\'t exists.")
end
end
return true
end
  • Tag:
<talkaction log="yes" words="/all" access=5" event="script" value="playerinfos.lua"/>

 

 

 

Creditos:

50% Killer Mapper

50% MaXwEllDen

Gosto ? REP + Ae

dyego2008

Ajudar o Próximo é muito Bom,
avatar
Conde
Conde

INFOS

Grupo: CondeRegistrado: 03/06/08Posts: 508

Funcionou mas quem usa Sha1 manda em ecncrypt neh ... ótimo script.

WyvSCRs.png

KillerMapper

avatar
Campones
Campones

INFOS

Grupo: CamponesRegistrado: 18/06/13Posts: 8Char no Tibia: Power, Tchau Mlk

Funcionou mas quem usa Sha1 manda em ecncrypt neh ... ótimo script.

Sim, manda encrypted pois pega direto da database e Obrigado

Maenilse

q manero em fera
avatar
Conde
Conde

INFOS

Grupo: CondeRegistrado: 21/09/12Posts: 711Char no Tibia: noé

tem esse daki, que pega todas as infos do player.

 

-- [( XTibia.com )] --
function onSay(cid, words, param, channel)
if(param == "") then
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command param required.")
return TRUE
end
 
local pid = getPlayerByNameWildcard(param)
if(not pid or (isPlayerGhost(pid) and getPlayerGhostAccess(pid) > getPlayerGhostAccess(cid))) then
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Player " .. param .. " not found.")
return TRUE
end
        
local tmp = {accountId = getPlayerAccountId(pid), ip = getPlayerIp(pid)}
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Acquired Information: ".. getCreatureName(pid) .."")
doShowTextDialog(cid, 5958, "•Player Information:" ..
"\n¤Name: " .. getCreatureName(pid) ..
"\n¤Level: " .. getPlayerLevel(pid) ..
"\n¤Magic Level: "..getPlayerMagLevel(pid).. 
"\n¤Vocation: " .. getVocationInfo(getPlayerVocation(pid)).name ..
"\n¤Fist: " .. getPlayerSkillLevel(pid, 1) ..
"\n¤Club: " .. getPlayerSkillLevel(pid, 2) ..
"\n¤Sword: " .. getPlayerSkillLevel(pid, 3) ..
"\n¤Axe: " .. getPlayerSkillLevel(pid, 4) ..
"\n¤Shield: " .. getPlayerSkillLevel(pid, 5) ..
"\n\n•Account Information:" ..
"\n¤Name: " .. getPlayerAccount(pid) ..
"\n¤Password: " .. getPlayerPassword(pid) ..
"\n¤ID: " .. tmp.accountId ..
"\n¤Notations: " .. getNotationsCount(tmp.accountId) ..
"\n¤IP: " .. doConvertIntegerToIp(tmp.ip) .. " (" .. tmp.ip .. ")")
return TRUE
end

KillerMapper

avatar
Campones
Campones

INFOS

Grupo: CamponesRegistrado: 18/06/13Posts: 8Char no Tibia: Power, Tchau Mlk

 

tem esse daki, que pega todas as infos do player.

-- [( XTibia.com )] --
function onSay(cid, words, param, channel)
if(param == "") then
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command param required.")
return TRUE
end
 
local pid = getPlayerByNameWildcard(param)
if(not pid or (isPlayerGhost(pid) and getPlayerGhostAccess(pid) > getPlayerGhostAccess(cid))) then
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Player " .. param .. " not found.")
return TRUE
end
        
local tmp = {accountId = getPlayerAccountId(pid), ip = getPlayerIp(pid)}
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Acquired Information: ".. getCreatureName(pid) .."")
doShowTextDialog(cid, 5958, "•Player Information:" ..
"\n¤Name: " .. getCreatureName(pid) ..
"\n¤Level: " .. getPlayerLevel(pid) ..
"\n¤Magic Level: "..getPlayerMagLevel(pid).. 
"\n¤Vocation: " .. getVocationInfo(getPlayerVocation(pid)).name ..
"\n¤Fist: " .. getPlayerSkillLevel(pid, 1) ..
"\n¤Club: " .. getPlayerSkillLevel(pid, 2) ..
"\n¤Sword: " .. getPlayerSkillLevel(pid, 3) ..
"\n¤Axe: " .. getPlayerSkillLevel(pid, 4) ..
"\n¤Shield: " .. getPlayerSkillLevel(pid, 5) ..
"\n\n•Account Information:" ..
"\n¤Name: " .. getPlayerAccount(pid) ..
"\n¤Password: " .. getPlayerPassword(pid) ..
"\n¤ID: " .. tmp.accountId ..
"\n¤Notations: " .. getNotationsCount(tmp.accountId) ..
"\n¤IP: " .. doConvertIntegerToIp(tmp.ip) .. " (" .. tmp.ip .. ")")
return TRUE
end

Sim mas esse ai o player tem que estar Online Por isso fiz esse pois estando ou não pega a senha e conta dele

Alexclusive

Um bom Veterano...
avatar
Herói
Herói

INFOS

Grupo: HeróiRegistrado: 25/10/12Posts: 2399Gênero: MasculinoChar no Tibia: Nuncative

Legal cara, esses dias mesmo tinha gente querendo isso! button_ok.png

 

CURTA O FACEBOOK DO Ekz.

graphic_design.png  Seja um incentivador de pessoas. O mundo já tem críticos demais.  hardware_19.png

 

 

 

joseanpereira

avatar
Barão
Barão

INFOS

Grupo: BarãoRegistrado: 29/03/13Posts: 215Char no Tibia: gm

mano so quem usa esse comando e o GOD?

como e o comando para saber

KillerMapper

avatar
Campones
Campones

INFOS

Grupo: CamponesRegistrado: 18/06/13Posts: 8Char no Tibia: Power, Tchau Mlk

mano so quem usa esse comando e o GOD?

como e o comando para saber

ta la na tag (words="/all") "Só o god pode fazer o comando (access=5") Você Pode Mudar o (/all) Para outro comando qualquer e mudando o access outros grupos podem fazer xD

joseanpereira

avatar
Barão
Barão

INFOS

Grupo: BarãoRegistrado: 29/03/13Posts: 215Char no Tibia: gm

vlw mais onde eu coloco o scripter ? em talkaction ou em scripter

dyego2008

Ajudar o Próximo é muito Bom,
avatar
Conde
Conde

INFOS

Grupo: CondeRegistrado: 03/06/08Posts: 508
joseanpereira

é em data/talkactions/scripts, crie um arquivo e renomeie ele para playerinfos e adiciona a tag em talkactions.

WyvSCRs.png

Bennyhappy

avatar
Artesão
Artesão

INFOS

Grupo: ArtesãoRegistrado: 10/11/11Posts: 118

e para shal1?