Ir para conteúdo
  • Cadastre-se

Posts Recomendados

Alguem poderia me ajudar a tirar esse script de MODS e colocar ele normal,

adicionando Movements, action , etcc..

 

Spoiler

<?xml version="1.0" encoding="UTF-8"?>
<mod name="AdvancedExpPotionSystem" enabled="yes" author="MatheusMkalo" forum="XTibia.com">
<!-- Configs and Functions -->
<config name="PotionExpConfigs"><![CDATA[
------ CONFIGURE SEU SCRIPT ------ TRUE ou FALSE
configs = {
time = 120, ---- TIME IN MINUTES
needpa = FALSE,
needlvl = {FALSE, level = 80},
costmana = {FALSE, mana = 10},
addrate = 10, -- Exp que vai adicionar em %
removeonuse = TRUE
}
function getTime(s)
    local n = math.floor(s / 60)
    s = s - (60 * n)
    return n, s
end
CreatureEventChecker = function(event, ...) -- Colex
    if isCreature(arg[1]) then
   event(unpack(arg))
    end
end
creatureEvent = function(event, delay, ...) -- Colex
    addEvent(CreatureEventChecker, delay, event, unpack(arg))
end
function getPlayerExtraExpRate(cid) -- By MatheusMkalo
    return (getPlayerRates(cid)[8]-1)*100
end
]]></config>
<!-- exppotion.lua -->
<action itemid="12544" event="script"><![CDATA[
domodlib('PotionExpConfigs')
if getPlayerStorageValue(cid, 62164) >= 1 then
    return doPlayerSendCancel(cid, "Voce ja ta Sob o Efeito da Potion.")
end
if configs.needpa and not isPremium(cid) then
    return doPlayerSendCancel(cid, "Voce Precisar ser Premium Para Usar")
end
if configs.needlvl[1] and getPlayerLevel(cid) < configs.needlvl.level then
    return doPlayerSendCancel(cid, "Voce Precisa ser " .. configs.needlvl.level .. " Para usar a Potion.")
end
if configs.costmana[1] then
if getCreatureMana(cid) < configs.costmana.mana then
    return doPlayerSendCancel(cid, "Voce Precisar ter " .. configs.costmana.mana .. " de Mana Para usar a Potion")
else
doCreatureAddMana(cid, -configs.costmana.mana)
end
end
if configs.removeonuse then
    doRemoveItem(item.uid, 1)
end
 
for i = configs.time*60, 1, -1 do
local a = math.floor(i/60) .. ":" .. i - (60 * math.floor(i/60))
if #a < 4 then
a = string.sub(a,1,2) .. "0" .. string.sub(a, 3)
end
if i == configs.time*60 then
creatureEvent(doPlayerSendCancel, configs.time*60*1000, cid, "Efeito Final da Pocao de EXP.")
end
creatureEvent(doPlayerSendCancel, (configs.time*60-i)*1000, cid, "O Bonus de 10% Exp vai acabar em "..a.." ou se voce morrer ou deslogar.")
end
doPlayerSetExperienceRate(cid, (1+(configs.addrate/100))+(getPlayerExtraExpRate(cid)/100))
creatureEvent(doPlayerSetExperienceRate, configs.time *60*1000, cid, 1+(getPlayerExtraExpRate(cid)/100-(configs.addrate/100)))
doPlayerSendTextMessage(cid, 22, "Agora Voce Esta Recebendo mais EXP por Matar Monstros.")
setPlayerStorageValue(cid, 62164, os.time())
creatureEvent(setPlayerStorageValue, configs.time *60*1000, cid, 62164, 0)
return TRUE
]]></action>
<creaturescript type="login" name="ExpPotion" event="script"><![CDATA[
domodlib('PotionExpConfigs')
local time = configs.time
    if os.time()-getPlayerStorageValue(cid, 62164) < time *60 then
  doPlayerSetExperienceRate(cid, (1+(configs.addrate/100))+(getPlayerExtraExpRate(cid)/100))
  creatureEvent(doPlayerSetExperienceRate, (time*60-(os.time()-getPlayerStorageValue(cid, 62164))) * 1000, cid, 1+(getPlayerExtraExpRate(cid)/100-(configs.addrate/100)))
  creatureEvent(setPlayerStorageValue, (time*60-(os.time()-getPlayerStorageValue(cid, 62164))) * 1000 , cid, 62164, 0)
  for i = (time*60-(os.time()-getPlayerStorageValue(cid, 62164))), 1, -1 do
  local a = math.floor(i/60) .. ":" .. i - (60 * math.floor(i/60))
  if #a < 4 then
  a = string.sub(a,1,2) .. "0" .. string.sub(a, 3)
  end
  if i == (time*60-(os.time()-getPlayerStorageValue(cid, 62164))) then
  creatureEvent(doPlayerSendCancel, (time*60-(os.time()-getPlayerStorageValue(cid, 62164)))*1000, cid, "O Efeito da Potion Termina em.")
  end
  creatureEvent(doPlayerSendCancel, ((time*60-(os.time()-getPlayerStorageValue(cid, 62164)))-i)*1000, cid, "O Efeito da Potion Termina em "..a.." ou se voce morrer ou deslogar.")
  end
    end
return TRUE
]]></creaturescript>
</mod>

 

Link para o post
Compartilhar em outros sites

deu o seguinte error.


[8/10/2017 22:50:8] [Error - CreatureScript Interface] 
[8/10/2017 22:50:8] data/creaturescripts/scripts/DoublePotion.lua:onLogin
[8/10/2017 22:50:8] Description: 
[8/10/2017 22:50:8] data/creaturescripts/scripts/DoublePotion.lua:2: attempt to index global 'configs' (a nil value)
[8/10/2017 22:50:8] stack traceback:
[8/10/2017 22:50:8]     data/creaturescripts/scripts/DoublePotion.lua:2: in function <data/creaturescripts/scripts/DoublePotion.lua:1>
[8/10/2017 22:50:8] Rulei Look has logged out.

 

Em 07/10/2017 em 16:48, Danyel Varejao disse:

 

Link para o post
Compartilhar em outros sites
28 minutos atrás, felipecsx disse:

deu o seguinte error.


[8/10/2017 22:50:8] [Error - CreatureScript Interface] 
[8/10/2017 22:50:8] data/creaturescripts/scripts/DoublePotion.lua:onLogin
[8/10/2017 22:50:8] Description: 
[8/10/2017 22:50:8] data/creaturescripts/scripts/DoublePotion.lua:2: attempt to index global 'configs' (a nil value)
[8/10/2017 22:50:8] stack traceback:
[8/10/2017 22:50:8]     data/creaturescripts/scripts/DoublePotion.lua:2: in function <data/creaturescripts/scripts/DoublePotion.lua:1>
[8/10/2017 22:50:8] Rulei Look has logged out.

 

 

 

Modifique o arquivo /creaturescripts/scripts/DoublePotion.lua que o @Danyel Varejao lhe passou, deixe assim:

Spoiler

local configs = {
	time = 120, ---- TIME IN MINUTES
	needpa = FALSE,
	needlvl = {FALSE, level = 80},
	costmana = {FALSE, mana = 10},
	addrate = 10, -- Exp que vai adicionar em %
	removeonuse = TRUE
}

function onLogin(cid)
	local time = configs.time
	if os.time()-getPlayerStorageValue(cid, 62164) < time *60 then
		doPlayerSetExperienceRate(cid, (1+(configs.addrate/100))+(getPlayerExtraExpRate(cid)/100))
		creatureEvent(doPlayerSetExperienceRate, (time*60-(os.time()-getPlayerStorageValue(cid, 62164))) * 1000, cid, 1+(getPlayerExtraExpRate(cid)/100-(configs.addrate/100)))
		creatureEvent(setPlayerStorageValue, (time*60-(os.time()-getPlayerStorageValue(cid, 62164))) * 1000 , cid, 62164, 0)
		for i = (time*60-(os.time()-getPlayerStorageValue(cid, 62164))), 1, -1 do
			local a = math.floor(i/60) .. ":" .. i - (60 * math.floor(i/60))
			if #a < 4 then
				a = string.sub(a,1,2) .. "0" .. string.sub(a, 3)
			end
			if i == (time*60-(os.time()-getPlayerStorageValue(cid, 62164))) then
				creatureEvent(doPlayerSendCancel, (time*60-(os.time()-getPlayerStorageValue(cid, 62164)))*1000, cid, "O Efeito da Potion Termina em.")
			end
			creatureEvent(doPlayerSendCancel, ((time*60-(os.time()-getPlayerStorageValue(cid, 62164)))-i)*1000, cid, "O Efeito da Potion Termina em "..a.." ou se voce morrer ou deslogar.")
		end
	end
	return true
end

 

 

Link para o post
Compartilhar em outros sites
2 horas atrás, Noninhouh disse:

 

Modifique o arquivo /creaturescripts/scripts/DoublePotion.lua que o @Danyel Varejao lhe passou, deixe assim:

  Ocultar conteúdo


local configs = {
	time = 120, ---- TIME IN MINUTES
	needpa = FALSE,
	needlvl = {FALSE, level = 80},
	costmana = {FALSE, mana = 10},
	addrate = 10, -- Exp que vai adicionar em %
	removeonuse = TRUE
}

function onLogin(cid)
	local time = configs.time
	if os.time()-getPlayerStorageValue(cid, 62164) < time *60 then
		doPlayerSetExperienceRate(cid, (1+(configs.addrate/100))+(getPlayerExtraExpRate(cid)/100))
		creatureEvent(doPlayerSetExperienceRate, (time*60-(os.time()-getPlayerStorageValue(cid, 62164))) * 1000, cid, 1+(getPlayerExtraExpRate(cid)/100-(configs.addrate/100)))
		creatureEvent(setPlayerStorageValue, (time*60-(os.time()-getPlayerStorageValue(cid, 62164))) * 1000 , cid, 62164, 0)
		for i = (time*60-(os.time()-getPlayerStorageValue(cid, 62164))), 1, -1 do
			local a = math.floor(i/60) .. ":" .. i - (60 * math.floor(i/60))
			if #a < 4 then
				a = string.sub(a,1,2) .. "0" .. string.sub(a, 3)
			end
			if i == (time*60-(os.time()-getPlayerStorageValue(cid, 62164))) then
				creatureEvent(doPlayerSendCancel, (time*60-(os.time()-getPlayerStorageValue(cid, 62164)))*1000, cid, "O Efeito da Potion Termina em.")
			end
			creatureEvent(doPlayerSendCancel, ((time*60-(os.time()-getPlayerStorageValue(cid, 62164)))-i)*1000, cid, "O Efeito da Potion Termina em "..a.." ou se voce morrer ou deslogar.")
		end
	end
	return true
end

 

 

e o xml fica como? o <event type="
e tem como por o double exp  só depois de usar um item? da minha escolha. por determinado tempo? ex: 1hr de double exp

Link para o post
Compartilhar em outros sites
18 horas atrás, Noninhouh disse:

 

Modifique o arquivo /creaturescripts/scripts/DoublePotion.lua que o @Danyel Varejao lhe passou, deixe assim:

  Mostrar conteúdo oculto


local configs = {
	time = 120, ---- TIME IN MINUTES
	needpa = FALSE,
	needlvl = {FALSE, level = 80},
	costmana = {FALSE, mana = 10},
	addrate = 10, -- Exp que vai adicionar em %
	removeonuse = TRUE
}

function onLogin(cid)
	local time = configs.time
	if os.time()-getPlayerStorageValue(cid, 62164) < time *60 then
		doPlayerSetExperienceRate(cid, (1+(configs.addrate/100))+(getPlayerExtraExpRate(cid)/100))
		creatureEvent(doPlayerSetExperienceRate, (time*60-(os.time()-getPlayerStorageValue(cid, 62164))) * 1000, cid, 1+(getPlayerExtraExpRate(cid)/100-(configs.addrate/100)))
		creatureEvent(setPlayerStorageValue, (time*60-(os.time()-getPlayerStorageValue(cid, 62164))) * 1000 , cid, 62164, 0)
		for i = (time*60-(os.time()-getPlayerStorageValue(cid, 62164))), 1, -1 do
			local a = math.floor(i/60) .. ":" .. i - (60 * math.floor(i/60))
			if #a < 4 then
				a = string.sub(a,1,2) .. "0" .. string.sub(a, 3)
			end
			if i == (time*60-(os.time()-getPlayerStorageValue(cid, 62164))) then
				creatureEvent(doPlayerSendCancel, (time*60-(os.time()-getPlayerStorageValue(cid, 62164)))*1000, cid, "O Efeito da Potion Termina em.")
			end
			creatureEvent(doPlayerSendCancel, ((time*60-(os.time()-getPlayerStorageValue(cid, 62164)))-i)*1000, cid, "O Efeito da Potion Termina em "..a.." ou se voce morrer ou deslogar.")
		end
	end
	return true
end

 

 

 

OBG MANO DEU CERTINHO <3

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 Jaurez
      .
    • Por Cat
      Em alguns casos, o tibia 8.60 comum não abre de jeito nenhum no map editor, mesmo desmarcando check file signatures e configurando o path corretamente.
       
      Este é o client 8.60 adaptado para o Remere's Map Editor. Resolvi postar já que ele foi removido do site oficial do RME. (ficou apenas a versão para linux lá)
      Se estiver tendo problemas para abrir a versão 8.60, tente utilizar este.
                                                                                                                     
      Baixar o Tibia Client 8.60 que funciona no Remere’s Map Editor
      Essa versão do Tibia 8.60 client resolve o erro unsupported client version ou Could not locate tibia.dat and/or tibia.spr, please navigate to your tibia 8.60 installation folder.
       
      Downloads
      https://tibiaking.com/applications/core/interface/file/attachment.php?id=47333

      Scan: https://www.virustotal.com/gui/file/333e172ac49ba2028db9eb5889994509e7d2de28ebccfa428c04e86defbe15cc
       
    • Por danilo belato
      Fala Galera To Com um problema aki 
       
      quero exporta umas sprites de um server para colocar em outro 
       
      eu clico na sprites ai aparece tds a forma delas do lado de la >>
       
      ai eu clico nela e ponho a opiçao de export mais quando salvo a sprite ela n abri 
       
      aparece isso quando tento vê-la 
       
      visualização não disponível ( no formatos png e bitmap)
       
      Agora no formato idc fala que o paint n pode ler 
       
      me ajudem ae...
    • Por Vitor Bicaleto
      Galera to com o script do addon doll aqui, quando eu digito apenas "!addon" ele aparece assim: Digite novamente, algo está errado!"
      quando digito por exemplo: "!addon citizen" ele não funciona e não da nenhum erro
       
      mesma coisa acontece com o mount doll.. 
    • Por Ayron5
      Substitui uma stone no serve, deu tudo certo fora  esse  erro ajudem  Valendo  Rep+  Grato  

      Erro: data/actions/scripts/boost.lua:557: table index is nil
       [Warning - Event::loadScript] Cannot load script (data/actions/scripts/boost.lua)

      Script:
×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo