Ir para conteúdo
  • Cadastre-se

Derivado Script look verificar reputação.


Posts Recomendados

Olá amigos, estou com um problema, peguei um script que mostra algumas informações no look e tentei aumentar um pouco...

Coloquei um sistema de reputação e criei uma tabela.. "rep" em "accounts" na database.

Após isso criei este script encima de outro:

 

function onLook(cid, thing, position, lookDistance)
function getDeathsAndKills(cid, type) -- by vodka
local query,d = db.getResult("SELECT `player_id` FROM "..(tostring(type) == "kill" and "`player_killers`" or "`player_deaths`").." WHERE `player_id` = "..getPlayerGUID(cid)),0
if (query:getID() ~= -1) then 
repeat
d = d+1
until not query:next()
query:free()
end
return d 
end

getPoints = function(cid)
local Info = db.getResult("SELECT `rep` FROM `players` WHERE `id` = " .. getPlayerGUID(cid) .. ";")
local s = Info:getDataInt("s")
Info:free()
return s
end

if s <= -20 then
x = "GranBigNoob"
elseif s <= -10 then
x = "Big Noob"
elseif s <= -1 then
x = "Noob"
elseif s == 0 then
x = "Citizen"
elseif s >= 1 then
x = "Avowed"
elseif s >= 10 and s < 20 then
x = "Respected"
elseif s >= 20 and s < 30 then
x = "Sagaz"
elseif s >= 30 and s < 40 then
x = "Domination"
elseif s >= 40 and s < 20 then
x = "Bloodbath"
elseif s >= 50 then
x = "Legendary"
end
if isPlayer(thing.uid) then
doPlayerSetSpecialDescription(thing.uid, "\n"..(getPlayerSex(thing.uid) == 0 and "Ela" or "Ele").." ja Matou: ["..getDeathsAndKills(thing.uid, "kill").."] Players. \n"..(getPlayerSex(thing.uid) == 0 and "Ela" or "Ele").." ja Morreu: ["..getDeathsAndKills(thing.uid, "death").."] Vezes.\nReputação: "..s.." ("..x..") " )
end
return true
end

 

 

O PROBLEMA:

[8/4/2016 17:32:15] [Error - CreatureScript Interface] 
[8/4/2016 17:32:15] data/creaturescripts/scripts/lawl.lua:onLook
[8/4/2016 17:32:15] Description: 
[8/4/2016 17:32:15] data/creaturescripts/scripts/lawl.lua:20: attempt to compare nil with number
[8/4/2016 17:32:16] stack traceback:
[8/4/2016 17:32:16] 	data/creaturescripts/scripts/lawl.lua:20: in function <data/creaturescripts/scripts/lawl.lua:1>

 

Link para o post
Compartilhar em outros sites
function getDeathsAndKills(cid, type) -- by vodka
	local query,d = db.getResult("SELECT `player_id` FROM "..(tostring(type) == "kill" and "`player_killers`" or "`player_deaths`").." WHERE `player_id` = "..getPlayerGUID(cid)),0
	if (query:getID() ~= -1) then 
		repeat
		d = d+1
		until not query:next()
		query:free()
	end
	return d 
end

getPoints = function(cid)
	local result = db.getResult('SELECT `rep` FROM `players` WHERE `id` = '.. getPlayerGUID(cid))
	local data = result:getDataInt('rep')
	result:free()
	return data
end

function onLook(cid, thing, position, lookDistance)
	if data <= -20 then
		x = "GranBigNoob"
	elseif data <= -10 then
		x = "Big Noob"
	elseif data <= -1 then
		x = "Noob"
	elseif data == 0 then
		x = "Citizen"
	elseif data >= 1 then
		x = "Avowed"
	elseif data >= 10 and data < 20 then
		x = "Respected"
	elseif data >= 20 and data < 30 then
		x = "Sagaz"
	elseif data >= 30 and data < 40 then
		x = "Domination"
	elseif data >= 40 and data < 20 then
		x = "Bloodbath"
	elseif data >= 50 then
		x = "Legendary"
	end
	
	if isPlayer(thing.uid) then
		doPlayerSetSpecialDescription(thing.uid, "\n"..(getPlayerSex(thing.uid) == 0 and "Ela" or "Ele").." ja Matou: ["..getDeathsAndKills(thing.uid, "kill").."] Players. \n"..(getPlayerSex(thing.uid) == 0 and "Ela" or "Ele").." ja Morreu: ["..getDeathsAndKills(thing.uid, "death").."] Vezes.\nReputação: "..data.." ("..x..") " )
	end
	return true
end

 

discord.pngDiscord: vankk #7765

Precisando de ajuda? Entre em contato comigo via Discord.

 

Muitos vêm seus muitos dias de glória, mas poucos vêm seus muitos dias de luta.

Link para o post
Compartilhar em outros sites

 

Em 20/04/2016 at 06:22, vankk disse:

function getDeathsAndKills(cid, type) -- by vodka
	local query,d = db.getResult("SELECT `player_id` FROM "..(tostring(type) == "kill" and "`player_killers`" or "`player_deaths`").." WHERE `player_id` = "..getPlayerGUID(cid)),0
	if (query:getID() ~= -1) then 
		repeat
		d = d+1
		until not query:next()
		query:free()
	end
	return d 
end

getPoints = function(cid)
	local result = db.getResult('SELECT `rep` FROM `players` WHERE `id` = '.. getPlayerGUID(cid))
	local data = result:getDataInt('rep')
	result:free()
	return data
end

function onLook(cid, thing, position, lookDistance)
	if data <= -20 then
		x = "GranBigNoob"
	elseif data <= -10 then
		x = "Big Noob"
	elseif data <= -1 then
		x = "Noob"
	elseif data == 0 then
		x = "Citizen"
	elseif data >= 1 then
		x = "Avowed"
	elseif data >= 10 and data < 20 then
		x = "Respected"
	elseif data >= 20 and data < 30 then
		x = "Sagaz"
	elseif data >= 30 and data < 40 then
		x = "Domination"
	elseif data >= 40 and data < 20 then
		x = "Bloodbath"
	elseif data >= 50 then
		x = "Legendary"
	end
	
	if isPlayer(thing.uid) then
		doPlayerSetSpecialDescription(thing.uid, "\n"..(getPlayerSex(thing.uid) == 0 and "Ela" or "Ele").." ja Matou: ["..getDeathsAndKills(thing.uid, "kill").."] Players. \n"..(getPlayerSex(thing.uid) == 0 and "Ela" or "Ele").." ja Morreu: ["..getDeathsAndKills(thing.uid, "death").."] Vezes.\nReputação: "..data.." ("..x..") " )
	end
	return true
end

 

 

Continuou mesma coisa...

 

16:39 You see Mega Looter (Level 1202). She is a lord paladin. She is Member of the Et's Bolados (Endemonhado).
Ela ja Matou: [182] Players. 
Ela ja Morreu: [88] Vezes.
Reputação: 0 (Citizen) 
 

 

Aparecendo 0 na reputação, mas a reputação deste player é 56 na tabela...

Link para o post
Compartilhar em outros sites
local function getDeathsAndKills(cid, type) -- by vodka
	local query,d = db.getResult("SELECT `player_id` FROM "..(tostring(type) == "kill" and "`player_killers`" or "`player_deaths`").." WHERE `player_id` = "..getPlayerGUID(cid)),0
	if query:getID() ~= -1 then 
		repeat
			d = d + 1
			until not query:next()
				query:free()
			end
		return d 
	end
end

local function getPoints(cid)
	local Info = db.getResult("SELECT `rep` FROM `players` WHERE `id` = " .. getPlayerGUID(cid) .. ";")
	local s = Info:getDataInt("s")
	Info:free()
	return s
	end
	if s <= -20 then
		x = "GranBigNoob"
	elseif s <= -10 then
		x = "Big Noob"
	elseif s <= -1 then
		x = "Noob"
	elseif s == 0 then
		x = "Citizen"
	elseif s >= 1 then
		x = "Avowed"
	elseif s >= 10 and s < 20 then
		x = "Respected"
	elseif s >= 20 and s < 30 then
		x = "Sagaz"
	elseif s >= 30 and s < 40 then
		x = "Domination"
	elseif s >= 40 and s < 20 then
		x = "Bloodbath"
	elseif s >= 50 then
		x = "Legendary"
	end
	if isPlayer(thing.uid) then
		doPlayerSetSpecialDescription(thing.uid, "\n
			".. (getPlayerSex(thing.uid) == 0 and "Ela" or "Ele") .." ja Matou: [".. getDeathsAndKills(thing.uid, "kill") .."] Players.\n
			".. (getPlayerSex(thing.uid) == 0 and "Ela" or "Ele") .." ja Morreu: [".. getDeathsAndKills(thing.uid, "death") .."] Vezes.\n
			Reputação: ".. getPoints .." (".. x ..")." )
	end
end

function onLook(cid, thing, position, lookDistance)
	return getPoints(cid)
end

 

Editado por anderkrox (veja o histórico de edições)

Eternera Tibia Server - RPG

Link para o post
Compartilhar em outros sites
local function getDeathsAndKills(cid, type) -- by vodka
	local query,d = db.getResult("SELECT `player_id` FROM "..(tostring(type) == "kill" and "`player_killers`" or "`player_deaths`").." WHERE `player_id` = "..getPlayerGUID(cid)),0
	if query:getID() ~= -1 then 
		repeat
			d = d + 1
			until not query:next()
				query:free()
			end
		return d 
	end
end

local function getPoints(cid)
	local Info = db.getResult("SELECT `rep` FROM `players` WHERE `id` = " .. getPlayerGUID(cid) .. ";")
	local s = Info:getDataInt("s")
	Info:free()
	return s
	end
	if s <= -20 then
		x = "GranBigNoob"
	elseif s <= -10 then
		x = "Big Noob"
	elseif s <= -1 then
		x = "Noob"
	elseif s == 0 then
		x = "Citizen"
	elseif s >= 1 then
		x = "Avowed"
	elseif s >= 10 and s < 20 then
		x = "Respected"
	elseif s >= 20 and s < 30 then
		x = "Sagaz"
	elseif s >= 30 and s < 40 then
		x = "Domination"
	elseif s >= 40 and s < 20 then
		x = "Bloodbath"
	elseif s >= 50 then
		x = "Legendary"
	end
	if isPlayer(thing.uid) then
		doPlayerSetSpecialDescription(thing.uid, "\n".. (getPlayerSex(thing.uid) == 0 and "Ela" or "Ele") .." ja Matou: [".. getDeathsAndKills(thing.uid, "kill") .."] Players.\n".. (getPlayerSex(thing.uid) == 0 and "Ela" or "Ele") .." ja Morreu: [".. getDeathsAndKills(thing.uid, "death") .."] Vezes.\nReputação: ".. getPoints .." (".. x ..")." )
	end
end

function onLook(cid, thing, position, lookDistance)
	return getPoints(cid)
end

Deixa assim e me mostra o que acontece.

Eternera Tibia Server - RPG

Link para o post
Compartilhar em outros sites

Removi alguns "end" a mais que tinha e surgiu o seguinte erro:

 

local function getDeathsAndKills(cid, type) -- by vodka
	local query,d = db.getResult("SELECT `player_id` FROM "..(tostring(type) == "kill" and "`player_killers`" or "`player_deaths`").." WHERE `player_id` = "..getPlayerGUID(cid)),0
	if query:getID() ~= -1 then 
		repeat
			d = d + 1
			until not query:next()
				query:free()
			end
		return d 
	end


local function getPoints(cid)
	local Info = db.getResult("SELECT `rep` FROM `players` WHERE `id` = " .. getPlayerGUID(cid) .. ";")
	local s = Info:getDataInt("s")
	Info:free()
	return s
	end
	if s <= -20 then
		x = "GranBigNoob"
	elseif s <= -10 then
		x = "Big Noob"
	elseif s <= -1 then
		x = "Noob"
	elseif s == 0 then
		x = "Citizen"
	elseif s >= 1 then
		x = "Avowed"
	elseif s >= 10 and s < 20 then
		x = "Respected"
	elseif s >= 20 and s < 30 then
		x = "Sagaz"
	elseif s >= 30 and s < 40 then
		x = "Domination"
	elseif s >= 40 and s < 20 then
		x = "Bloodbath"
	elseif s >= 50 then
		x = "Legendary"
	end
	if isPlayer(thing.uid) then
		doPlayerSetSpecialDescription(thing.uid, "\n".. (getPlayerSex(thing.uid) == 0 and "Ela" or "Ele") .." ja Matou: [".. getDeathsAndKills(thing.uid, "kill") .."] Players.\n".. (getPlayerSex(thing.uid) == 0 and "Ela" or "Ele") .." ja Morreu: [".. getDeathsAndKills(thing.uid, "death") .."] Vezes.\nReputação: ".. getPoints .." (".. x ..")." )
	end

function onLook(cid, thing, position, lookDistance)
	return getPoints(cid)
end

[Error - Test Interface]
data/creaturescripts/scripts/lawl.lua
Description:
data/creaturescripts/scripts/lawl.lua:19: attempt to compare nil with number
[Error - Event::checkScript] Cannot load script (data/creaturescripts/scripts/lawl.lua)

 

Editado por Baned (veja o histórico de edições)
Link para o post
Compartilhar em outros sites

Participe da conversa

Você pode postar agora e se cadastrar mais tarde. Se você tem uma conta, faça o login para postar com sua conta.

Visitante
Responder

×   Você colou conteúdo com formatação.   Remover formatação

  Apenas 75 emojis são permitidos.

×   Seu link foi automaticamente incorporado.   Mostrar como link

×   Seu conteúdo anterior foi restaurado.   Limpar o editor

×   Não é possível colar imagens diretamente. Carregar ou inserir imagens do URL.

  • Quem Está Navegando   0 membros estão online

    Nenhum usuário registrado visualizando esta página.

  • Conteúdo Similar

    • Por LeoTK
      Salve galera neste tópico irei postar algumas prints do mapa do servidor para quem queira acompanhar e quem sabe até utilizar de inspiração para mapear o seu NTO.
       
      #Att 11/08/2022

       
       
       
       
      Konoha (Em Desenvolvimento)
       
       
       
       
    • Por DiigooMix
      Como o título já diz, será que alguém possui sprite do hitto e se possível as transformações dele?
    • Por OmegaZero
      Olá gostaria que alguém me ajudasse com uma "scripting" não sei se é pela mesma, seria o seguinte uma determinada arma teria a chance de dar double hit e não sei oque fazer alguem poderia ajudar?

      OBS:não sei se é o local correto se não for mova, desculpe
    • Por Madarasenju
      Olá galera do Tibia King, queria por uns npc's no meu server que não tem função de trade nem nada do tipo, queria que eles só andassem como enfeite, Rep+ Pra quem me ajudar... grato desde já.
    • Por SilenceRoot
      A magia é assim o você usa a a magia e ela ficará ativado por 10 segundos, até que o inimigo lance a primeira magia ou todos de uma vez, quando ele lançar a primeira magia, ele não lhe acertará ou seja esquivando dela, e logo em seguida será teletransportado aleatoriamente ao redor do inimigo que usou.
×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo