Ir para conteúdo
  • Cadastre-se

Posts Recomendados

  • Moderador

Olá , eu fui colocar esse script para funcionar mas ele apresenta erro na linha 35 "expected near 'end' " alguém poderia me ajudar ?

local config = {

        healHP = 2000,
	healMP = 2000,
        healPlayers = "yes",
        healMonsters = "no",
}

local healthArea = {

        fromX = 603,
        fromY = 177,
        fromZ = 7,
        toX = 605,
        toY = 179,
        toZ = 7,

}

function onThink(cid, interval, lastExecution)
        for x = healthArea.fromX, healthArea.toX do
                for y = healthArea.fromY, healthArea.toY do
                        for z = healthArea.fromZ, healthArea.toZ do
                                local pos = {x=x, y=y, z=z, stackpos = 253}
                                local thing = getThingfromPos(pos)
                                if thing.itemid > 0 then
                                        if(isPlayer(thing.uid) == TRUE and string.lower(config.healPlayers) == "yes") then
                                                doCreatureAddHealth(thing.uid, config.healHP)
						doCreatureAddMana(thing.uid, config.healMP)
                                                if string.lower(getConfigValue("showHealingDamage")) == "no" then
                                                end
                                        elseif(isMonster(thing.uid) == TRUE and string.lower(config.healMonsters) == "yes") then
                                                doCreatureAddHealth(thing.uid, config.healHP)
                                                if string.lower(getConfigValue("showHealingDamageForMonsters")) == "no"
                                                end
                                end
                        end
                end
        end
        return TRUE
end 
Link para o post
Compartilhar em outros sites

Bom, eu posso estar falando a maior bobagem ou sei lá, mas estou tentando ajudá-lo..
Tenta o script assim: ^^

local config = {

        healHP = 2000,
	healMP = 2000,
        healPlayers = "yes",
        healMonsters = "no",
}

local healthArea = {

        fromX = 603,
        fromY = 177,
        fromZ = 7,
        toX = 605,
        toY = 179,
        toZ = 7,

}

function onThink(cid, interval, lastExecution)
        for x = healthArea.fromX, healthArea.toX do
                for y = healthArea.fromY, healthArea.toY do
                        for z = healthArea.fromZ, healthArea.toZ do
                                local pos = {x=x, y=y, z=z, stackpos = 253}
                                local thing = getThingfromPos(pos)
                                if thing.itemid > 0 then
                                        if(isPlayer(thing.uid) == TRUE and string.lower(config.healPlayers) == "yes") then
                                                doCreatureAddHealth(thing.uid, config.healHP)
						doCreatureAddMana(thing.uid, config.healMP)
                                                if string.lower(getConfigValue("showHealingDamage")) == "no" then
                                                end
                                        elseif(isMonster(thing.uid) == TRUE and string.lower(config.healMonsters) == "yes") then
                                                doCreatureAddHealth(thing.uid, config.healHP)
                                                if string.lower(getConfigValue("showHealingDamageForMonsters")) == "no"
                                               
                                end
                        end
                end
        end
        return TRUE
end 

                                                                     Ajudei? De nada \o/                                            Att Rusherzin

Link para o post
Compartilhar em outros sites
  • Moderador

 

Bom, eu posso estar falando a maior bobagem ou sei lá, mas estou tentando ajudá-lo..

Tenta o script assim: ^^

local config = {

        healHP = 2000,
	healMP = 2000,
        healPlayers = "yes",
        healMonsters = "no",
}

local healthArea = {

        fromX = 603,
        fromY = 177,
        fromZ = 7,
        toX = 605,
        toY = 179,
        toZ = 7,

}

function onThink(cid, interval, lastExecution)
        for x = healthArea.fromX, healthArea.toX do
                for y = healthArea.fromY, healthArea.toY do
                        for z = healthArea.fromZ, healthArea.toZ do
                                local pos = {x=x, y=y, z=z, stackpos = 253}
                                local thing = getThingfromPos(pos)
                                if thing.itemid > 0 then
                                        if(isPlayer(thing.uid) == TRUE and string.lower(config.healPlayers) == "yes") then
                                                doCreatureAddHealth(thing.uid, config.healHP)
						doCreatureAddMana(thing.uid, config.healMP)
                                                if string.lower(getConfigValue("showHealingDamage")) == "no" then
                                                end
                                        elseif(isMonster(thing.uid) == TRUE and string.lower(config.healMonsters) == "yes") then
                                                doCreatureAddHealth(thing.uid, config.healHP)
                                                if string.lower(getConfigValue("showHealingDamageForMonsters")) == "no"
                                               
                                end
                        end
                end
        end
        return TRUE
end 

Não funcionou :/

Link para o post
Compartilhar em outros sites

Deu o mesmo erro? Se não, qual?

E me diga onde está usando esse script (por ex: spells,creaturescripts/) para eu poder usar aqui e tentar arrumá-lo. ^^
O que eu puder fazer para ajudar eu vou tentar..

                                                                     Ajudei? De nada \o/                                            Att Rusherzin

Link para o post
Compartilhar em outros sites
  • Moderador

 

Deu o mesmo erro? Se não, qual?

E me diga onde está usando esse script (por ex: spells,creaturescripts/) para eu poder usar aqui e tentar arrumá-lo. ^^

O que eu puder fazer para ajudar eu vou tentar..

 

Ele está no globalevents .

 

<globalevent name="heal" interval="1" event="script" value="heal.lua"/>

Link para o post
Compartilhar em outros sites
local config = {


        healHP = 2000,
healMP = 2000,
        healPlayers = "yes",
        healMonsters = "no",
}


local healthArea = {


        fromX = 603,
        fromY = 177,
        fromZ = 7,
        toX = 605,
        toY = 179,
        toZ = 7,


}


function onThink(cid, interval, lastExecution)
        for x = healthArea.fromX, healthArea.toX do
                for y = healthArea.fromY, healthArea.toY do
                        for z = healthArea.fromZ, healthArea.toZ do
                                local pos = {x=x, y=y, z=z, stackpos = 253}
                                local thing = getThingfromPos(pos)
                                if thing.itemid > 0 then
                                        if(isPlayer(thing.uid) == TRUE and string.lower(config.healPlayers) == "yes") then
                                                doCreatureAddHealth(thing.uid, config.healHP)
                                doCreatureAddMana(thing.uid, config.healMP)
                                             if string.lower(getConfigValue("showHealingDamage")) == "no" then
                                             end
                                        elseif(isMonster(thing.uid) == TRUE and string.lower(config.healMonsters) == "yes") then
                                                doCreatureAddHealth(thing.uid, config.healHP)
                                                if string.lower(getConfigValue("showHealingDamageForMonsters")) == "no" then
                                               
                                                end
                                        end
                                end
                        end
                end
        end
 return true
end 

infos40x40.png

Skype : duhw.carvalho

 

Ajude-nos a crescer, clicando em curtir

 

 

 

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.

×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo