Ir para conteúdo
  • Cadastre-se

Posts Recomendados

-- utevorex.lua

local configs = {

vocs = {3, 7}, -- vocações permitidas usar

limite = 2, -- limite de summons

m = {

["70-200"] = {monster = "Wolf", health = 1000, mana=500},

["201-300"] = {monster = "War Wolf", health = 1000, mana=500},

["301-400"] = {monster = "Werewolf", health = 1000, mana=500},

}

}

-- [dolevel-atéolevel] = {nome do monstros, vida dele, e mana usada pra sumonar}

function onSay(cid, words)

if isInArray(configs.vocs, getPlayerVocation(cid)) then

local tsummon = getTable(cid)

if tsummon ~= nil then

if getPlayerMana(cid) < tsummon.mana then

return doPlayerSendCancel(cid, "You dont have mana.")

end

if #getCreatureSummons(cid) == configs.limite then

return doPlayerSendCancel(cid, "You have reached the limit of summons.")

end

sm = doSummonCreature(tsummon.monster, getThingPosition(cid))

doConvinceCreature(cid, sm)

setCreatureMaxHealth(sm, tsummon.health)

doCreatureAddHealth(sm, tsummon.health)

doCreatureAddMana(cid, -tsummon.mana)

else

doPlayerSendCancel(cid, "You dont have level to use this spell.")

end

else

doPlayerSendCancel(cid, "Your vocation can not use this spell.")

end

return true

end

function getTable(cid)

for i, x in pairs(configs.m) do

local tb = string.explode(i)

if getPlayerLevel(cid) >= tonumber(tb[1]) and getPlayerLevel(cid) <= tonumber(tb[2]) then

tab = x

end

end

return tab

end

-- tag: <talkaction words="utevo rex" filter="word-spaced" event="script" value="utevorex.lua"/>

___________________________________________________________________________________________________________________________________

Como Instalar esse esse script ,tive duvidas se é em talkactions ou spells .eu queria ele em spells

​se alguém pode me ajudar .

Link para o post
Compartilhar em outros sites

@ridrid

Seria bom se você postasse o erro, não podemos adivinhar, você não chega para um doutor e diz somente: Doutor estou doente, ele tem que saber os sintomas.

-"Supra Omnes Lux Lucis"

- Acima de todos brilha a Luz -

5VGnDyBz.png

Link para o post
Compartilhar em outros sites

@MaxWellden

Ok,

Me Desculpe ,

[12/04/2012 15:10:01] [Error - TalkAction Interface]

[12/04/2012 15:10:01] data/talkactions/scripts/utevorex.lua:onSay

[12/04/2012 15:10:01] Description:

[12/04/2012 15:10:01] data/talkactions/scripts/utevorex.lua:41: attempt to compare nil with number

[12/04/2012 15:10:01] stack traceback:

[12/04/2012 15:10:01] data/talkactions/scripts/utevorex.lua:41: in function 'getTable'

[12/04/2012 15:10:01] data/talkactions/scripts/utevorex.lua:16: in function <data/talkactions/scripts/utevorex.lua:14>

----------------------

Só pra consta o final do meu nome é com c .

Link para o post
Compartilhar em outros sites

@ridric

não cheguei a testar:



local configs = {

	    vocs = {3, 7}, -- vocações permitidas usar

	    limite = 2, -- limite de summons

	    m = {

			    ["70-200"] = {monster = "Wolf", health = 1000, mana=500},

			    ["201-300"] = {monster = "War Wolf", health = 1000, mana=500},

			    ["301-400"] = {monster = "Werewolf", health = 1000, mana=500},

	    }

}

-- [dolevel-atéolevel] = {nome do monstros, vida dele, e mana usada pra sumonar}


function onSay(cid, words)

	    if isInArray(configs.vocs, getPlayerVocation(cid)) then

			    local tsummon = getTable(cid)

			    if tsummon ~= nil then

					    if getPlayerMana(cid) < tsummon.mana then

							    return doPlayerSendCancel(cid, "You dont have mana.")

					    end


					    if #getCreatureSummons(cid) == configs.limite then

							    return doPlayerSendCancel(cid, "You have reached the limit of summons.")

					    end

							    local sm = doSummonCreature(tsummon.monster, getThingPosition(cid))

							    doConvinceCreature(cid, sm)

							    setCreatureMaxHealth(sm, tsummon.health)

							    doCreatureAddHealth(sm, tsummon.health)

							    doCreatureAddMana(cid, -tsummon.mana)

			    else

					    doPlayerSendCancel(cid, "You dont have level to use this spell.")

			    end

	    else

			    doPlayerSendCancel(cid, "Your vocation can not use this spell.")

	    end

	    return true

end


function getTable(cid)

	    for i, x in pairs(configs.m) do

			    local tb = string.explode(i, "-")

			    if getPlayerLevel(cid) >= tonumber(tb[1]) and getPlayerLevel(cid) <= tonumber(tb[2]) then

					    tab = x

			    end

	    end

	    return tab

end


-"Supra Omnes Lux Lucis"

- Acima de todos brilha a Luz -

5VGnDyBz.png

Link para o post
Compartilhar em outros sites

m = {

["70-200"] = {monster = "Wolf", health = 1000, mana=500},

["201-300"] = {monster = "War Wolf", health = 1000, mana=500},

["301-400"] = {monster = "Werewolf", health = 1000, mana=500},

}

}

-- [dolevel-atéolevel] = {nome do monstros, vida dele, e mana usada pra sumonar}

Você tem que tar no mínimo no level 70 e no máximo 400

-"Supra Omnes Lux Lucis"

- Acima de todos brilha a Luz -

5VGnDyBz.png

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