Ir para conteúdo
  • Cadastre-se

Posts Recomendados

20 minutos atrás, DukeeH disse:

 

Retirei o reset no look, me manda o script que mostra o frags no look, vou colocar os dois juntos, se não ele vai mostrar ou um ou outro.

 


<?xml version="1.0" encoding="UTF-8"?>
<mod name="Reset System" version="1.0" author="Kimoszin" contact="tibiaking.com" enabled="yes">
 
    <!-- Configuracao -->
        <config name="reset_config"><![CDATA[
                config = {
                        level = 700,                      
                        premium = false,        
                        storage = 54676,
                }
 
 				function getResets(cid)
					resets = getCreatureStorage(cid, config.storage)
					if resets < 0 then
						resets = 0
					end
					return resets
				end
				
 
                function reset(cid)
                        if (config.premium and not(isPremium(cid)) ) then
                                return doPlayerSendTextMessage(cid, MESSAGE_EVENT_ADVANCE, "You need have a premium account.")
                        end
 
                        if (getPlayerLevel(cid) < config.level) then
                                return doPlayerSendTextMessage(cid, MESSAGE_EVENT_ADVANCE, "Voce Presisar Ser Lv "..config.level..".")
                        end
 
                        if not(getTilePzInfo(getCreaturePosition(cid))) then
                                return doPlayerSendTextMessage(cid, MESSAGE_EVENT_ADVANCE, "Voce Presisa Tar em Area Pz Para Resetar.")
                        end											  
						
					    doPlayerAddLevel(cid, - (getPlayerLevel(cid) - 8))
                        doCreatureSetStorage(cid, config.storage, getResets(cid)+1)
					    doRemoveCreature(cid)
						db.query("UPDATE `players` SET `health`= "..resethp..",`healthmax`= "..resethp.." WHERE `players`.`id`= ".. playerid .."")
						db.query("UPDATE `players` SET `mana`= "..resetmana..",`manamax`= "..resetmana.." WHERE `players`.`id`= ".. playerid .."")
						return true
                end
 

        ]]></config>
 
        <!-- Talkaction para resetar -->
        <talkaction words="!reset" event="buffer"><![CDATA[
                domodlib('reset_config')
			   if isInArray({1,2}, getPlayerVocation(cid)) then					   
				   resethp = (getResets(cid)+1)*300
				   resetmana = (getResets(cid)+1)*1000
			   elseif getPlayerVocation(cid) == 3 then
				   resethp = (getResets(cid)+1)*800
				   resetmana = (getResets(cid)+1)*500
			   elseif getPlayerVocation(cid) == 4 then
				   resethp = (getResets(cid)+1)*1000
				   resetmana = (getResets(cid)+1)*300
				end
				playerid = getPlayerGUID(cid)
                reset(cid)
        ]]></talkaction>
 
        <!-- Talkaction para ver quantos resets tem -->
        <talkaction words="!myresets" event="buffer"><![CDATA[
                domodlib('reset_config')
                return doPlayerSendTextMessage(cid, MESSAGE_EVENT_ADVANCE, "Voce Tem "..getResets(cid).." Resets.")
        ]]></talkaction>
 
        <!-- Tile -->
        <movevent type="StepIn" actionid="9911" event="script"><![CDATA[
                domodlib('reset_config')
                function onStepIn(cid, item, position, fromPosition)
                        local minResets = 1
 
                        if (not(getResets(cid) >= minResets)) then
                                doPlayerSendCancel(cid, "Desculpa, Voce presisa ter "..minResets.." Resets Para Passar Aqui")
                                return doTeleportThing(cid, fromPosition)
                        end
 
                        doPlayerSendCancel(cid, "Bem Vindo")
                end
        ]]></movevent>
 
        <!-- Porta -->
        <action actionid="9910" event="script"><![CDATA[
                domodlib('reset_config')
                function onUse(cid, item, position, fromPosition)
                        local minResets = 5
 
                        if not(getResets(cid) >= minResets) then
                                return doPlayerSendCancel(cid, "Desculpa, Voce presisa ter "..minResets.." Resets Para Passar Aqui")
                        end
 
                        doPlayerSendCancel(cid, "Bem Vindo")
                end
        ]]></action>
		
</mod>

 

funcionou perfeitamente! você é o cara, agora só falta a questao do look msm, esse é o fraglook.lua

Citar

--Script By Theax "" 
function getPlayerFrags(cid) 
    local time = os.time() 
    local times = {today = (time - 86400), week = (time - (7 * 86400))} 
  
    local contents, result = {day = {}, week = {}, month = {}}, db.getResult("SELECT `pd`.`date`, `pd`.`level`, `p`.`name` FROM `player_killers` pk LEFT JOIN `killers` k ON `pk`.`kill_id` = `k`.`id` LEFT JOIN `player_deaths` pd ON `k`.`death_id` = `pd`.`id` LEFT JOIN `players` p ON `pd`.`player_id` = `p`.`id` WHERE `pk`.`player_id` = " .. getPlayerGUID(cid) .. " AND `k`.`unjustified` = 1 AND `pd`.`date` >= " .. (time - (30 * 86400)) .. " ORDER BY `pd`.`date` DESC") 
    if(result:getID() ~= -1) then 
        repeat 
            local content = {date = result:getDataInt("date")} 
            if(content.date > times.today) then 
                table.insert(contents.day, content) 
            elseif(content.date > times.week) then 
                table.insert(contents.week, content) 
            else 
                table.insert(contents.month, content) 
            end 
        until not result:next() 
        result:free() 
    end 
  
    local size = { 
        day = table.maxn(contents.day), 
        week = table.maxn(contents.week), 
        month = table.maxn(contents.month) 
    }  
    return size.day + size.week + size.month 
end  
  
function onLogin(cid) 
    registerCreatureEvent(cid, "fraglook") 
    return true 
end 
  
function onLook(cid, thing, position, lookDistance) 
    if isPlayer(thing.uid) and thing.uid ~= cid then 
        doPlayerSetSpecialDescription(thing.uid,'[Frags: '..getPlayerFrags(thing.uid)..']') 
        return true 
    elseif thing.uid == cid then 
        doPlayerSetSpecialDescription(cid,'[Frags: '..getPlayerFrags(cid)..']') 
        local string = 'You see yourself.' 
        if getPlayerFlagValue(cid, PLAYERFLAG_SHOWGROUPINSTEADOFVOCATION) then 
            string = string..' You are '.. getPlayerGroupName(cid) ..'.' 
        elseif getPlayerVocation(cid) ~= 0 then 
            string = string..' You are '.. getPlayerVocationName(cid) ..'.' 
        else 
            string = string..' You have no vocation.' 
        end 
        string = string..getPlayerSpecialDescription(cid)..'' 
  
        if getPlayerNameByGUID(getPlayerPartner(cid), false, false) ~= nil then 
            string = string..' You are '.. (getPlayerSex(cid) == 0 and 'wife' or 'husband') ..' of '.. getPlayerNameByGUID(getPlayerPartner(cid)) ..'.' 
        end 
  
        if getPlayerGuildId(cid) > 0 then  
            string = string..' You are ' .. (getPlayerGuildRank(cid) == '' and 'a member' or getPlayerGuildRank(cid)) ..' of the '.. getPlayerGuildName(cid) 
            string = getPlayerGuildNick(cid) ~= '' and string..' ('.. getPlayerGuildNick(cid) ..').' or string..'.' 
        end  
  
        if getPlayerFlagValue(cid, PLAYERCUSTOMFLAG_CANSEECREATUREDETAILS) then 
            string = string..'nHealth: ['.. getCreatureHealth(cid) ..' / '.. getCreatureMaxHealth(cid) ..'], Mana: ['.. getCreatureMana(cid) ..' / '.. getCreatureMaxMana(cid) ..'].' 
            string = string..'nIP: '.. doConvertIntegerToIp(getPlayerIp(cid)) ..'.' 
        end 
  
        if getPlayerFlagValue(cid, PLAYERCUSTOMFLAG_CANSEEPOSITION) then 
            string = string..'nPosition: [X:'.. position.x..'] [Y:'.. position.y..'] [Z:'.. position.z..'].' 
        end 
        doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, string)   
        return false 
    end 
    return true 
end

 

Link para o post
Compartilhar em outros sites

Haha, que nada. Questão de honra arrumar aquilo lá, o erro era tosco, depois que funciona que eu percebo, mas bom que deu certo.

Faz o favor de testar com 2,3 resets pra ver se a mana e vida ta como queria. (Sendo multiplicada aqueles valores vezes os resets)

 

Look:

--Script By Theax "" 
function getPlayerFrags(cid) 
    local time = os.time() 
    local times = {today = (time - 86400), week = (time - (7 * 86400))} 
  
    local contents, result = {day = {}, week = {}, month = {}}, db.getResult("SELECT `pd`.`date`, `pd`.`level`, `p`.`name` FROM `player_killers` pk LEFT JOIN `killers` k ON `pk`.`kill_id` = `k`.`id` LEFT JOIN `player_deaths` pd ON `k`.`death_id` = `pd`.`id` LEFT JOIN `players` p ON `pd`.`player_id` = `p`.`id` WHERE `pk`.`player_id` = " .. getPlayerGUID(cid) .. " AND `k`.`unjustified` = 1 AND `pd`.`date` >= " .. (time - (30 * 86400)) .. " ORDER BY `pd`.`date` DESC") 
    if(result:getID() ~= -1) then 
        repeat 
            local content = {date = result:getDataInt("date")} 
            if(content.date > times.today) then 
                table.insert(contents.day, content) 
            elseif(content.date > times.week) then 
                table.insert(contents.week, content) 
            else 
                table.insert(contents.month, content) 
            end 
        until not result:next() 
        result:free() 
    end 
  
    local size = { 
        day = table.maxn(contents.day), 
        week = table.maxn(contents.week), 
        month = table.maxn(contents.month) 
    }  
    return size.day + size.week + size.month 
end  

function getResets(cid)
	resets = getCreatureStorage(cid, 54676)
	if resets < 0 then
		resets = 0
	end
	return resets
end
  
function onLogin(cid) 
    registerCreatureEvent(cid, "fraglook") 
    return true 
end 
  
function onLook(cid, thing, position, lookDistance) 
    if isPlayer(thing.uid) and thing.uid ~= cid then 
        doPlayerSetSpecialDescription(thing.uid,'[Frags: '..getPlayerFrags(thing.uid)..']') 
		doPlayerSetSpecialDescription(thing.uid,'[Resets: '..getResets(thing.uid)..']') 
        return true 
    elseif thing.uid == cid then 
        doPlayerSetSpecialDescription(cid,'[Frags: '..getPlayerFrags(cid)..']') 
		doPlayerSetSpecialDescription(cid,'[Resets: '..getResets(cid)..']') 
		
        local string = 'You see yourself.' 
        if getPlayerFlagValue(cid, PLAYERFLAG_SHOWGROUPINSTEADOFVOCATION) then 
            string = string..' You are '.. getPlayerGroupName(cid) ..'.' 
        elseif getPlayerVocation(cid) ~= 0 then 
            string = string..' You are '.. getPlayerVocationName(cid) ..'.' 
        else 
            string = string..' You have no vocation.' 
        end 
        string = string..getPlayerSpecialDescription(cid)..'' 
  
        if getPlayerNameByGUID(getPlayerPartner(cid), false, false) ~= nil then 
            string = string..' You are '.. (getPlayerSex(cid) == 0 and 'wife' or 'husband') ..' of '.. getPlayerNameByGUID(getPlayerPartner(cid)) ..'.' 
        end 
  
        if getPlayerGuildId(cid) > 0 then  
            string = string..' You are ' .. (getPlayerGuildRank(cid) == '' and 'a member' or getPlayerGuildRank(cid)) ..' of the '.. getPlayerGuildName(cid) 
            string = getPlayerGuildNick(cid) ~= '' and string..' ('.. getPlayerGuildNick(cid) ..').' or string..'.' 
        end  
  
        if getPlayerFlagValue(cid, PLAYERCUSTOMFLAG_CANSEECREATUREDETAILS) then 
            string = string..'nHealth: ['.. getCreatureHealth(cid) ..' / '.. getCreatureMaxHealth(cid) ..'], Mana: ['.. getCreatureMana(cid) ..' / '.. getCreatureMaxMana(cid) ..'].' 
            string = string..'nIP: '.. doConvertIntegerToIp(getPlayerIp(cid)) ..'.' 
        end 
  
        if getPlayerFlagValue(cid, PLAYERCUSTOMFLAG_CANSEEPOSITION) then 
            string = string..'nPosition: [X:'.. position.x..'] [Y:'.. position.y..'] [Z:'.. position.z..'].' 
        end 
        doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, string)   
        return false 
    end 
    return true 
end

 

asdukeeh.jpg

Link para o post
Compartilhar em outros sites
Em 04/03/2017 ás 15:12, DukeeH disse:

Haha, que nada. Questão de honra arrumar aquilo lá, o erro era tosco, depois que funciona que eu percebo, mas bom que deu certo.

Faz o favor de testar com 2,3 resets pra ver se a mana e vida ta como queria. (Sendo multiplicada aqueles valores vezes os resets)

 

Look:


--Script By Theax "" 
function getPlayerFrags(cid) 
    local time = os.time() 
    local times = {today = (time - 86400), week = (time - (7 * 86400))} 
  
    local contents, result = {day = {}, week = {}, month = {}}, db.getResult("SELECT `pd`.`date`, `pd`.`level`, `p`.`name` FROM `player_killers` pk LEFT JOIN `killers` k ON `pk`.`kill_id` = `k`.`id` LEFT JOIN `player_deaths` pd ON `k`.`death_id` = `pd`.`id` LEFT JOIN `players` p ON `pd`.`player_id` = `p`.`id` WHERE `pk`.`player_id` = " .. getPlayerGUID(cid) .. " AND `k`.`unjustified` = 1 AND `pd`.`date` >= " .. (time - (30 * 86400)) .. " ORDER BY `pd`.`date` DESC") 
    if(result:getID() ~= -1) then 
        repeat 
            local content = {date = result:getDataInt("date")} 
            if(content.date > times.today) then 
                table.insert(contents.day, content) 
            elseif(content.date > times.week) then 
                table.insert(contents.week, content) 
            else 
                table.insert(contents.month, content) 
            end 
        until not result:next() 
        result:free() 
    end 
  
    local size = { 
        day = table.maxn(contents.day), 
        week = table.maxn(contents.week), 
        month = table.maxn(contents.month) 
    }  
    return size.day + size.week + size.month 
end  

function getResets(cid)
	resets = getCreatureStorage(cid, 54676)
	if resets < 0 then
		resets = 0
	end
	return resets
end
  
function onLogin(cid) 
    registerCreatureEvent(cid, "fraglook") 
    return true 
end 
  
function onLook(cid, thing, position, lookDistance) 
    if isPlayer(thing.uid) and thing.uid ~= cid then 
        doPlayerSetSpecialDescription(thing.uid,'[Frags: '..getPlayerFrags(thing.uid)..']') 
		doPlayerSetSpecialDescription(thing.uid,'[Resets: '..getResets(thing.uid)..']') 
        return true 
    elseif thing.uid == cid then 
        doPlayerSetSpecialDescription(cid,'[Frags: '..getPlayerFrags(cid)..']') 
		doPlayerSetSpecialDescription(cid,'[Resets: '..getResets(cid)..']') 
		
        local string = 'You see yourself.' 
        if getPlayerFlagValue(cid, PLAYERFLAG_SHOWGROUPINSTEADOFVOCATION) then 
            string = string..' You are '.. getPlayerGroupName(cid) ..'.' 
        elseif getPlayerVocation(cid) ~= 0 then 
            string = string..' You are '.. getPlayerVocationName(cid) ..'.' 
        else 
            string = string..' You have no vocation.' 
        end 
        string = string..getPlayerSpecialDescription(cid)..'' 
  
        if getPlayerNameByGUID(getPlayerPartner(cid), false, false) ~= nil then 
            string = string..' You are '.. (getPlayerSex(cid) == 0 and 'wife' or 'husband') ..' of '.. getPlayerNameByGUID(getPlayerPartner(cid)) ..'.' 
        end 
  
        if getPlayerGuildId(cid) > 0 then  
            string = string..' You are ' .. (getPlayerGuildRank(cid) == '' and 'a member' or getPlayerGuildRank(cid)) ..' of the '.. getPlayerGuildName(cid) 
            string = getPlayerGuildNick(cid) ~= '' and string..' ('.. getPlayerGuildNick(cid) ..').' or string..'.' 
        end  
  
        if getPlayerFlagValue(cid, PLAYERCUSTOMFLAG_CANSEECREATUREDETAILS) then 
            string = string..'nHealth: ['.. getCreatureHealth(cid) ..' / '.. getCreatureMaxHealth(cid) ..'], Mana: ['.. getCreatureMana(cid) ..' / '.. getCreatureMaxMana(cid) ..'].' 
            string = string..'nIP: '.. doConvertIntegerToIp(getPlayerIp(cid)) ..'.' 
        end 
  
        if getPlayerFlagValue(cid, PLAYERCUSTOMFLAG_CANSEEPOSITION) then 
            string = string..'nPosition: [X:'.. position.x..'] [Y:'.. position.y..'] [Z:'.. position.z..'].' 
        end 
        doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, string)   
        return false 
    end 
    return true 
end

 

o sistema de reset ta funcionando perfeito, a quantidade de hp e mana adicionando certinho, porem so testei com um master sorcerer, mas acredito que os outros devam estar bons também, 17:41 You see yourself. You are Master Sorcerer.[Resets: 5] , só que ainda tem 2 probleminhas , só aparece a quantidade de reset no look, do frag nao aparece, e também a porta q tem pra dar acesso a players com minimo de 5 resets nao ta funcionando, tá com a action id 9910 como está no mod, só que quando eu clico pra entrar com o player com 5 resets, e testei tambem colocando ele no level 700, aparece escrito only the worth may pass. e nao consigo entrar, oq será ? 

Link para o post
Compartilhar em outros sites
8 minutos atrás, luannhrj disse:

o sistema de reset ta funcionando perfeito, a quantidade de hp e mana adicionando certinho, porem so testei com um master sorcerer, mas acredito que os outros devam estar bons também, 17:41 You see yourself. You are Master Sorcerer.[Resets: 5] , só que ainda tem 2 probleminhas , só aparece a quantidade de reset no look, do frag nao aparece, e também a porta q tem pra dar acesso a players com minimo de 5 resets nao ta funcionando, tá com a action id 9910 como está no mod, só que quando eu clico pra entrar com o player com 5 resets, e testei tambem colocando ele no level 700, aparece escrito only the worth may pass. e nao consigo entrar, oq será ? 

--Script By Theax "" 
function getPlayerFrags(cid) 
    local time = os.time() 
    local times = {today = (time - 86400), week = (time - (7 * 86400))} 
  
    local contents, result = {day = {}, week = {}, month = {}}, db.getResult("SELECT `pd`.`date`, `pd`.`level`, `p`.`name` FROM `player_killers` pk LEFT JOIN `killers` k ON `pk`.`kill_id` = `k`.`id` LEFT JOIN `player_deaths` pd ON `k`.`death_id` = `pd`.`id` LEFT JOIN `players` p ON `pd`.`player_id` = `p`.`id` WHERE `pk`.`player_id` = " .. getPlayerGUID(cid) .. " AND `k`.`unjustified` = 1 AND `pd`.`date` >= " .. (time - (30 * 86400)) .. " ORDER BY `pd`.`date` DESC") 
    if(result:getID() ~= -1) then 
        repeat 
            local content = {date = result:getDataInt("date")} 
            if(content.date > times.today) then 
                table.insert(contents.day, content) 
            elseif(content.date > times.week) then 
                table.insert(contents.week, content) 
            else 
                table.insert(contents.month, content) 
            end 
        until not result:next() 
        result:free() 
    end 
  
    local size = { 
        day = table.maxn(contents.day), 
        week = table.maxn(contents.week), 
        month = table.maxn(contents.month) 
    }  
    return size.day + size.week + size.month 
end  

function getResets(cid)
	resets = getCreatureStorage(cid, 54676)
	if resets < 0 then
		resets = 0
	end
	return resets
end
  
function onLogin(cid) 
    registerCreatureEvent(cid, "fraglook") 
    return true 
end 
  
function onLook(cid, thing, position, lookDistance) 
    if isPlayer(thing.uid) and thing.uid ~= cid then 
        doPlayerSetSpecialDescription(thing.uid,'[Frags: '..getPlayerFrags(thing.uid)..']\n[Resets: '..getResets(thing.uid)..']') 
        return true 
    elseif thing.uid == cid then 
        doPlayerSetSpecialDescription(thing.uid,'[Frags: '..getPlayerFrags(thing.uid)..']\n[Resets: '..getResets(thing.uid)..']') 
		
        local string = 'You see yourself.' 
        if getPlayerFlagValue(cid, PLAYERFLAG_SHOWGROUPINSTEADOFVOCATION) then 
            string = string..' You are '.. getPlayerGroupName(cid) ..'.' 
        elseif getPlayerVocation(cid) ~= 0 then 
            string = string..' You are '.. getPlayerVocationName(cid) ..'.' 
        else 
            string = string..' You have no vocation.' 
        end 
        string = string..getPlayerSpecialDescription(cid)..'' 
  
        if getPlayerNameByGUID(getPlayerPartner(cid), false, false) ~= nil then 
            string = string..' You are '.. (getPlayerSex(cid) == 0 and 'wife' or 'husband') ..' of '.. getPlayerNameByGUID(getPlayerPartner(cid)) ..'.' 
        end 
  
        if getPlayerGuildId(cid) > 0 then  
            string = string..' You are ' .. (getPlayerGuildRank(cid) == '' and 'a member' or getPlayerGuildRank(cid)) ..' of the '.. getPlayerGuildName(cid) 
            string = getPlayerGuildNick(cid) ~= '' and string..' ('.. getPlayerGuildNick(cid) ..').' or string..'.' 
        end  
  
        if getPlayerFlagValue(cid, PLAYERCUSTOMFLAG_CANSEECREATUREDETAILS) then 
            string = string..'nHealth: ['.. getCreatureHealth(cid) ..' / '.. getCreatureMaxHealth(cid) ..'], Mana: ['.. getCreatureMana(cid) ..' / '.. getCreatureMaxMana(cid) ..'].' 
            string = string..'nIP: '.. doConvertIntegerToIp(getPlayerIp(cid)) ..'.' 
        end 
  
        if getPlayerFlagValue(cid, PLAYERCUSTOMFLAG_CANSEEPOSITION) then 
            string = string..'nPosition: [X:'.. position.x..'] [Y:'.. position.y..'] [Z:'.. position.z..'].' 
        end 
        doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, string)   
        return false 
    end 
    return true 
end

Testa esse look e me fala.

Sobre a porta, ele não ta achando o script, porque essa mensagem nem tem no mod, tenta usar outro id de porta, as vezes a que você pegou é aquelas que não da pra passar.

asdukeeh.jpg

Link para o post
Compartilhar em outros sites
1 hora atrás, DukeeH disse:

--Script By Theax "" 
function getPlayerFrags(cid) 
    local time = os.time() 
    local times = {today = (time - 86400), week = (time - (7 * 86400))} 
  
    local contents, result = {day = {}, week = {}, month = {}}, db.getResult("SELECT `pd`.`date`, `pd`.`level`, `p`.`name` FROM `player_killers` pk LEFT JOIN `killers` k ON `pk`.`kill_id` = `k`.`id` LEFT JOIN `player_deaths` pd ON `k`.`death_id` = `pd`.`id` LEFT JOIN `players` p ON `pd`.`player_id` = `p`.`id` WHERE `pk`.`player_id` = " .. getPlayerGUID(cid) .. " AND `k`.`unjustified` = 1 AND `pd`.`date` >= " .. (time - (30 * 86400)) .. " ORDER BY `pd`.`date` DESC") 
    if(result:getID() ~= -1) then 
        repeat 
            local content = {date = result:getDataInt("date")} 
            if(content.date > times.today) then 
                table.insert(contents.day, content) 
            elseif(content.date > times.week) then 
                table.insert(contents.week, content) 
            else 
                table.insert(contents.month, content) 
            end 
        until not result:next() 
        result:free() 
    end 
  
    local size = { 
        day = table.maxn(contents.day), 
        week = table.maxn(contents.week), 
        month = table.maxn(contents.month) 
    }  
    return size.day + size.week + size.month 
end  

function getResets(cid)
	resets = getCreatureStorage(cid, 54676)
	if resets < 0 then
		resets = 0
	end
	return resets
end
  
function onLogin(cid) 
    registerCreatureEvent(cid, "fraglook") 
    return true 
end 
  
function onLook(cid, thing, position, lookDistance) 
    if isPlayer(thing.uid) and thing.uid ~= cid then 
        doPlayerSetSpecialDescription(thing.uid,'[Frags: '..getPlayerFrags(thing.uid)..']\n[Resets: '..getResets(thing.uid)..']') 
        return true 
    elseif thing.uid == cid then 
        doPlayerSetSpecialDescription(thing.uid,'[Frags: '..getPlayerFrags(thing.uid)..']\n[Resets: '..getResets(thing.uid)..']') 
		
        local string = 'You see yourself.' 
        if getPlayerFlagValue(cid, PLAYERFLAG_SHOWGROUPINSTEADOFVOCATION) then 
            string = string..' You are '.. getPlayerGroupName(cid) ..'.' 
        elseif getPlayerVocation(cid) ~= 0 then 
            string = string..' You are '.. getPlayerVocationName(cid) ..'.' 
        else 
            string = string..' You have no vocation.' 
        end 
        string = string..getPlayerSpecialDescription(cid)..'' 
  
        if getPlayerNameByGUID(getPlayerPartner(cid), false, false) ~= nil then 
            string = string..' You are '.. (getPlayerSex(cid) == 0 and 'wife' or 'husband') ..' of '.. getPlayerNameByGUID(getPlayerPartner(cid)) ..'.' 
        end 
  
        if getPlayerGuildId(cid) > 0 then  
            string = string..' You are ' .. (getPlayerGuildRank(cid) == '' and 'a member' or getPlayerGuildRank(cid)) ..' of the '.. getPlayerGuildName(cid) 
            string = getPlayerGuildNick(cid) ~= '' and string..' ('.. getPlayerGuildNick(cid) ..').' or string..'.' 
        end  
  
        if getPlayerFlagValue(cid, PLAYERCUSTOMFLAG_CANSEECREATUREDETAILS) then 
            string = string..'nHealth: ['.. getCreatureHealth(cid) ..' / '.. getCreatureMaxHealth(cid) ..'], Mana: ['.. getCreatureMana(cid) ..' / '.. getCreatureMaxMana(cid) ..'].' 
            string = string..'nIP: '.. doConvertIntegerToIp(getPlayerIp(cid)) ..'.' 
        end 
  
        if getPlayerFlagValue(cid, PLAYERCUSTOMFLAG_CANSEEPOSITION) then 
            string = string..'nPosition: [X:'.. position.x..'] [Y:'.. position.y..'] [Z:'.. position.z..'].' 
        end 
        doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, string)   
        return false 
    end 
    return true 
end

Testa esse look e me fala.

Sobre a porta, ele não ta achando o script, porque essa mensagem nem tem no mod, tenta usar outro id de porta, as vezes a que você pegou é aquelas que não da pra passar.

19:23 You see yourself. You are Master Sorcerer.[Frags: 0]
[Resets: 5] , funcionando perfeitamente, vc é o cara! , rep+, e a questao da porta, quando eu uso com outro char q nao tem reset aparece a mensagem que precisa ter no minimo 5 resets como ta no mods, será q é o tipo de porta mesmo?

Link para o post
Compartilhar em outros sites
  • 11 months later...

Bom dia  DukeeH ,

 

não querendo reviver o tópico, mais poderia me ajuda com esse reset? para ganha xmana xhealth pós o que esta ai, não reseto minha vida e mana e também não acrescento nada, e esse script para mim era excelente.

 

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