Ir para conteúdo
  • Cadastre-se

Posts Recomendados

queria um npc de task diaria igual do pxg, como o nome ja diz npc que eu possa fazer task por dia exemplo:

o player  tem que escolher com npc qual task ele faz matar 60 blastoise ou 50 gyarados 70 fearow no outro dia ja aparece outra  task aparece  ter que matar  40 magmar ou 60 pidgeot ou 80 hypno :) e assim vai...

todos os dias as task são diferentes  queria um pra lvl baixo e um pra lvl alto... muito obrigado qualquer  coisa alguem tiver me passa por favor....

Link para o post
Compartilhar em outros sites

Eu tenho sistema de Task Diária porém é com um npc só e um terminado bicho, não é sortido !

 

Exemplo: 1º Dia: 100 Venusaur

               2º Dia: 200 Blastoise

               3º Dia: 300 Charizard

               4º Dia: 100 Meganium

 

Você configura eles, entende ?

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

Eu tenho sistema de Task Diária porém é com um npc só e um terminado bicho, não é sortido !

 

Exemplo: 1º Dia: 100 Venusaur

               2º Dia: 200 Blastoise

               3º Dia: 300 Charizard

               4º Dia: 100 Meganium

 

Você configura eles, entende ?

serve pow pode passar kk valeu

Link para o post
Compartilhar em outros sites

Data/Lib:

taskstg =
{
kills = 3451,
permission = 3452,
killstotal = 3453,
monster = 3454,
stage = 3455,
points = 3456,
}


timeBetweenTasks = 24 * 60 * 60 -- tempo até poder fazer outra task (24 * 60 * 60 = 24hs)
taskLevel = false -- true se quiser que as tasks sejam feitas por level / false se quiser que elas sejam feitas na ordem
taskMsg = {bool = true, msg = 'Voce acaba de matar monstros suficientes para completar sua task!'} -- bool = false > sem mensagens; bool = true > aviso quando terminar a task
taskEnd = false -- [não tem função no modo Level] se estiver como true, quando o jogador terminar a última task disponível, ele não poderá repeti-la. Se estiver false, ele poderá repetir a última task infinitamente.


taskmonsters =
{
[1] = {'rotworm', killstotal = 250}, -- aqui você deve mudar
[2] = {'cyclop','cyclops','cyclops smith','cyclops drone', killstotal = 500}
}


taskreward = -- em gps
{
[1] = {money = 10000,xp = 20000, points = 3}, 
[2] = {money = 15000,xp = 50000, item = 2160},
[3] = {money = 40000,xp = 75000,item = 2160,amount = 2, points = 1}
}


function canDoTask(cid)
    local stage = getPlayerStorageValue(cid, taskstg.stage)
    if stage + 1 > #taskmonsters then
        return false
    elseif getPlayerStorageValue(cid,taskstg.permission) <= 0 then
        return true
    elseif getPlayerStorageValue(cid,taskstg.permission) == 1 then
        return false
    elseif getPlayerStorageValue(cid,taskstg.permission) >= os.time(t) then
        return false
    end
    return true
end


function doResetTask(cid)
    setPlayerStorageValue(cid,taskstg.kills,-1)
    setPlayerStorageValue(cid,taskstg.permission,os.time(t) + timeBetweenTasks)
    setPlayerStorageValue(cid,taskstg.killstotal,-1)
    setPlayerStorageValue(cid,taskstg.monster,-1)
    return true
end


function doRewardTask(cid)
    local monster = getPlayerStorageValue(cid,taskstg.monster)
    local reward = taskreward[monster]
    if reward.item then
        doPlayerAddItem(cid,reward.item,(reward.amount and reward.amount or 1))
    end
    if reward.points then
        local points = getPlayerStorageValue(cid, taskstg.points)
        if points == -1 then
            setPlayerStorageValue(cid, taskstg.points, 0)
        end
        setPlayerStorageValue(cid, taskstg.points, reward.points + points)
    end
    if monster and reward then
        doPlayerAddMoney(cid,reward.money)        
        doPlayerAddExperience(cid, reward.xp)
    end    
    return true
end


function isSummon(cid) -- baseada na função do Vodkart
    if getCreatureMaster(cid) ~= nil or getCreatureMaster(cid) == true then
        return true
    end
    return false
end


function doCompleteTask(cid)
    doRewardTask(cid)
    doResetTask(cid)
    return true
end


function doStartTask(cid)
    if not taskLevel then
        local stage = getPlayerStorageValue(cid, taskstg.stage)
        if stage <= 0 then
            setPlayerStorageValue(cid, taskstg.monster, 1)
            setPlayerStorageValue(cid, taskstg.killstotal, taskmonsters[1].killstotal)
            setPlayerStorageValue(cid, taskstg.stage, 1)
        else
            setPlayerStorageValue(cid, taskstg.monster, stage+1)
            setPlayerStorageValue(cid, taskstg.killstotal, taskmonsters[stage+1].killstotal)
            if taskEnd or stage < #taskmonsters then
                setPlayerStorageValue(cid, taskstg.stage, stage+1)
            end
        end
        setPlayerStorageValue(cid, taskstg.permission, 1)
        setPlayerStorageValue(cid, taskstg.kills, 0)
        return true
    end
    local lvl = getPlayerLevel(cid)
    if lvl < 20 then
        local killstotal = taskmonsters[1].killstotal
        setPlayerStorageValue(cid,taskstg.monster,1)
        setPlayerStorageValue(cid,taskstg.killstotal,killstotal)
        setPlayerStorageValue(cid,taskstg.permission,1)
    elseif lvl < 50 then
        local killstotal = taskmonsters[2].killstotal
        setPlayerStorageValue(cid,taskstg.monster,2)
        setPlayerStorageValue(cid,taskstg.killstotal,killstotal)
        setPlayerStorageValue(cid,taskstg.permission,1)
    else
        local killstotal = taskmonsters[3].killstotal
        setPlayerStorageValue(cid,taskstg.monster,3)
        setPlayerStorageValue(cid,taskstg.killstotal,killstotal)
        setPlayerStorageValue(cid,taskstg.permission,1)
    end
    setPlayerStorageValue(cid,taskstg.kills,0)
    return true
end

Data/Npc - Annd.xml

<?xml version="1.0" encoding="UTF-8"?>
<npc name="Annd" script="data/npc/scripts/taskss.lua" walkinterval="3000" floorchange="0">
    <health now="100" max="100"/>
    <look type="153" head="115" body="95" legs="113" feet="0" addons="3"/>
    <parameters>
  <parameter key="message_greet" value="Ei, |PLAYERNAME|, quer uma {nova task}, {informacoes} ou {cancelar} uma task? Ou sera que quer {completar} sua task? Huum... talvez ver quantos {pontos} voce tem?"/>
  <parameter key="message_farewell" value="Boa sorte em suas aventuras, |PLAYERNAME|."/>
  <parameter key="message_walkaway" value="Tchau..."/>
  </parameters>
</npc>

Data/Npc/Scripts/ - taskss.lua

local keywordHandler = KeywordHandler:new()
local npcHandler = NpcHandler:new(keywordHandler)
NpcSystem.parseParameters(npcHandler)
local talkState = {}

function onCreatureAppear(cid)                npcHandler:onCreatureAppear(cid)            end
function onCreatureDisappear(cid)            npcHandler:onCreatureDisappear(cid)            end
function onCreatureSay(cid, type, msg)            npcHandler:onCreatureSay(cid, type, msg)        end
function onThink()                    npcHandler:onThink()                    end


function creatureSayCallback(cid, type, msg)
    if(not npcHandler:isFocused(cid)) then
        return false
    end
    
    local talkUser = NPCHANDLER_CONVBEHAVIOR == CONVERSATION_DEFAULT and 0 or cid
    
    local monster, permission = getPlayerStorageValue(cid,taskstg.monster), getPlayerStorageValue(cid,taskstg.permission)
    local kills, killstotal = getPlayerStorageValue(cid,taskstg.kills), getPlayerStorageValue(cid,taskstg.killstotal)
    
    if msgcontains(msg,'nova task') then
        if monster ~= -1 then
            selfSay('Você já tem uma task em andamento. Termine-a antes de começar outra.',cid)
        elseif getPlayerStorageValue(cid, taskstg.stage) + 1 > #taskmonsters then
            selfSay('Eu não tenho mais tasks para você.',cid)
        elseif not canDoTask(cid) then
            selfSay('Você deve esperar '..math.ceil((permission - os.time(t))/60)..' minutos até poder começar outra task.',cid)
        else
            doStartTask(cid)
            selfSay('Muito bem, utilize {!countkills} para acompanhar o andamento de sua task.',cid)
        end
        talkState[talkUser] = 0
    elseif msgcontains(msg,'completar') then
        if canDoTask(cid) then
            selfSay('Você não tem uma task iniciada ainda... diga {nova task} para começar uma.',cid)
        elseif permission > 1 then
            selfSay('Você não tem uma task ativa... e só poderá começar outra mais tarde.',cid)
        elseif killstotal > 1 and kills >= killstotal then
            selfSay('Parabéns por completar sua task!',cid)
            doCompleteTask(cid)
        else
            selfSay('Você ainda não completou sua task.',cid)
        end
        talkState[talkUser] = 0
    elseif msgcontains(msg,'info') then
        if canDoTask(cid) and (monster == 0 or monster == -1) then
            selfSay('Você pode começar uma task dizendo {nova task}. Assim que disser, uma nova task será atribuída a você dependendo do seu level e você poderá acompanhar seu andamento dizendo {!countkills}.',cid)
        else
            selfSay('Você pode acompanhar sua task pelo comando {!countkills}. Assim que terminar, me avise e você receberá seu prêmio em dinheiro e experiência.',cid)
        end
        talkState[talkUser] = 0
    elseif msgcontains(msg, 'pontos') then
        local pontos = getPlayerStorageValue(cid, taskstg.points) > 0 and getPlayerStorageValue(cid, taskstg.points) or 0
        selfSay('Você tem '.. pontos ..' pontos de task.',cid)
    elseif msgcontains(msg,'cancelar') then
        if monster == 0  or monster == -1 then
            selfSay('Você não tem uma task ativa para cancelar.',cid)
            talkState[talkUser] = 0
        else
            selfSay('Você tem certeza que quer cancelar sua task?',cid)
            talkState[talkUser] = 1
        end
    elseif (msgcontains(msg,'yes') or msgcontains(msg,'sim')) and talkState[talkUser] == 1 then
        selfSay('Muito bem, sua task foi cancelada.',cid)
        doResetTask(cid)
        setPlayerStorageValue(cid,taskstg.permission,-1)
        setPlayerStorageValue(cid, taskstg.stage, getPlayerStorageValue(cid, taskstg.stage)-1)
        talkState[talkUser] = 0
    elseif (msgcontains(msg,'no') or msgcontains(msg,'não')) and talkState[talkUser] == 1 then
        selfSay('Você que sabe, né...',cid)
    end
end
npcHandler:setCallback(CALLBACK_MESSAGE_DEFAULT, creatureSayCallback)
npcHandler:addModule(FocusModule:new())
Link para o post
Compartilhar em outros sites

 

Data/Lib:

taskstg =
{
kills = 3451,
permission = 3452,
killstotal = 3453,
monster = 3454,
stage = 3455,
points = 3456,
}


timeBetweenTasks = 24 * 60 * 60 -- tempo até poder fazer outra task (24 * 60 * 60 = 24hs)
taskLevel = false -- true se quiser que as tasks sejam feitas por level / false se quiser que elas sejam feitas na ordem
taskMsg = {bool = true, msg = 'Voce acaba de matar monstros suficientes para completar sua task!'} -- bool = false > sem mensagens; bool = true > aviso quando terminar a task
taskEnd = false -- [não tem função no modo Level] se estiver como true, quando o jogador terminar a última task disponível, ele não poderá repeti-la. Se estiver false, ele poderá repetir a última task infinitamente.


taskmonsters =
{
[1] = {'rotworm', killstotal = 250}, -- aqui você deve mudar
[2] = {'cyclop','cyclops','cyclops smith','cyclops drone', killstotal = 500}
}


taskreward = -- em gps
{
[1] = {money = 10000,xp = 20000, points = 3}, 
[2] = {money = 15000,xp = 50000, item = 2160},
[3] = {money = 40000,xp = 75000,item = 2160,amount = 2, points = 1}
}


function canDoTask(cid)
    local stage = getPlayerStorageValue(cid, taskstg.stage)
    if stage + 1 > #taskmonsters then
        return false
    elseif getPlayerStorageValue(cid,taskstg.permission) <= 0 then
        return true
    elseif getPlayerStorageValue(cid,taskstg.permission) == 1 then
        return false
    elseif getPlayerStorageValue(cid,taskstg.permission) >= os.time(t) then
        return false
    end
    return true
end


function doResetTask(cid)
    setPlayerStorageValue(cid,taskstg.kills,-1)
    setPlayerStorageValue(cid,taskstg.permission,os.time(t) + timeBetweenTasks)
    setPlayerStorageValue(cid,taskstg.killstotal,-1)
    setPlayerStorageValue(cid,taskstg.monster,-1)
    return true
end


function doRewardTask(cid)
    local monster = getPlayerStorageValue(cid,taskstg.monster)
    local reward = taskreward[monster]
    if reward.item then
        doPlayerAddItem(cid,reward.item,(reward.amount and reward.amount or 1))
    end
    if reward.points then
        local points = getPlayerStorageValue(cid, taskstg.points)
        if points == -1 then
            setPlayerStorageValue(cid, taskstg.points, 0)
        end
        setPlayerStorageValue(cid, taskstg.points, reward.points + points)
    end
    if monster and reward then
        doPlayerAddMoney(cid,reward.money)        
        doPlayerAddExperience(cid, reward.xp)
    end    
    return true
end


function isSummon(cid) -- baseada na função do Vodkart
    if getCreatureMaster(cid) ~= nil or getCreatureMaster(cid) == true then
        return true
    end
    return false
end


function doCompleteTask(cid)
    doRewardTask(cid)
    doResetTask(cid)
    return true
end


function doStartTask(cid)
    if not taskLevel then
        local stage = getPlayerStorageValue(cid, taskstg.stage)
        if stage <= 0 then
            setPlayerStorageValue(cid, taskstg.monster, 1)
            setPlayerStorageValue(cid, taskstg.killstotal, taskmonsters[1].killstotal)
            setPlayerStorageValue(cid, taskstg.stage, 1)
        else
            setPlayerStorageValue(cid, taskstg.monster, stage+1)
            setPlayerStorageValue(cid, taskstg.killstotal, taskmonsters[stage+1].killstotal)
            if taskEnd or stage < #taskmonsters then
                setPlayerStorageValue(cid, taskstg.stage, stage+1)
            end
        end
        setPlayerStorageValue(cid, taskstg.permission, 1)
        setPlayerStorageValue(cid, taskstg.kills, 0)
        return true
    end
    local lvl = getPlayerLevel(cid)
    if lvl < 20 then
        local killstotal = taskmonsters[1].killstotal
        setPlayerStorageValue(cid,taskstg.monster,1)
        setPlayerStorageValue(cid,taskstg.killstotal,killstotal)
        setPlayerStorageValue(cid,taskstg.permission,1)
    elseif lvl < 50 then
        local killstotal = taskmonsters[2].killstotal
        setPlayerStorageValue(cid,taskstg.monster,2)
        setPlayerStorageValue(cid,taskstg.killstotal,killstotal)
        setPlayerStorageValue(cid,taskstg.permission,1)
    else
        local killstotal = taskmonsters[3].killstotal
        setPlayerStorageValue(cid,taskstg.monster,3)
        setPlayerStorageValue(cid,taskstg.killstotal,killstotal)
        setPlayerStorageValue(cid,taskstg.permission,1)
    end
    setPlayerStorageValue(cid,taskstg.kills,0)
    return true
end

Data/Npc - Annd.xml

<?xml version="1.0" encoding="UTF-8"?>
<npc name="Annd" script="data/npc/scripts/taskss.lua" walkinterval="3000" floorchange="0">
    <health now="100" max="100"/>
    <look type="153" head="115" body="95" legs="113" feet="0" addons="3"/>
    <parameters>
  <parameter key="message_greet" value="Ei, |PLAYERNAME|, quer uma {nova task}, {informacoes} ou {cancelar} uma task? Ou sera que quer {completar} sua task? Huum... talvez ver quantos {pontos} voce tem?"/>
  <parameter key="message_farewell" value="Boa sorte em suas aventuras, |PLAYERNAME|."/>
  <parameter key="message_walkaway" value="Tchau..."/>
  </parameters>
</npc>

Data/Npc/Scripts/ - taskss.lua

local keywordHandler = KeywordHandler:new()
local npcHandler = NpcHandler:new(keywordHandler)
NpcSystem.parseParameters(npcHandler)
local talkState = {}

function onCreatureAppear(cid)                npcHandler:onCreatureAppear(cid)            end
function onCreatureDisappear(cid)            npcHandler:onCreatureDisappear(cid)            end
function onCreatureSay(cid, type, msg)            npcHandler:onCreatureSay(cid, type, msg)        end
function onThink()                    npcHandler:onThink()                    end


function creatureSayCallback(cid, type, msg)
    if(not npcHandler:isFocused(cid)) then
        return false
    end
    
    local talkUser = NPCHANDLER_CONVBEHAVIOR == CONVERSATION_DEFAULT and 0 or cid
    
    local monster, permission = getPlayerStorageValue(cid,taskstg.monster), getPlayerStorageValue(cid,taskstg.permission)
    local kills, killstotal = getPlayerStorageValue(cid,taskstg.kills), getPlayerStorageValue(cid,taskstg.killstotal)
    
    if msgcontains(msg,'nova task') then
        if monster ~= -1 then
            selfSay('Você já tem uma task em andamento. Termine-a antes de começar outra.',cid)
        elseif getPlayerStorageValue(cid, taskstg.stage) + 1 > #taskmonsters then
            selfSay('Eu não tenho mais tasks para você.',cid)
        elseif not canDoTask(cid) then
            selfSay('Você deve esperar '..math.ceil((permission - os.time(t))/60)..' minutos até poder começar outra task.',cid)
        else
            doStartTask(cid)
            selfSay('Muito bem, utilize {!countkills} para acompanhar o andamento de sua task.',cid)
        end
        talkState[talkUser] = 0
    elseif msgcontains(msg,'completar') then
        if canDoTask(cid) then
            selfSay('Você não tem uma task iniciada ainda... diga {nova task} para começar uma.',cid)
        elseif permission > 1 then
            selfSay('Você não tem uma task ativa... e só poderá começar outra mais tarde.',cid)
        elseif killstotal > 1 and kills >= killstotal then
            selfSay('Parabéns por completar sua task!',cid)
            doCompleteTask(cid)
        else
            selfSay('Você ainda não completou sua task.',cid)
        end
        talkState[talkUser] = 0
    elseif msgcontains(msg,'info') then
        if canDoTask(cid) and (monster == 0 or monster == -1) then
            selfSay('Você pode começar uma task dizendo {nova task}. Assim que disser, uma nova task será atribuída a você dependendo do seu level e você poderá acompanhar seu andamento dizendo {!countkills}.',cid)
        else
            selfSay('Você pode acompanhar sua task pelo comando {!countkills}. Assim que terminar, me avise e você receberá seu prêmio em dinheiro e experiência.',cid)
        end
        talkState[talkUser] = 0
    elseif msgcontains(msg, 'pontos') then
        local pontos = getPlayerStorageValue(cid, taskstg.points) > 0 and getPlayerStorageValue(cid, taskstg.points) or 0
        selfSay('Você tem '.. pontos ..' pontos de task.',cid)
    elseif msgcontains(msg,'cancelar') then
        if monster == 0  or monster == -1 then
            selfSay('Você não tem uma task ativa para cancelar.',cid)
            talkState[talkUser] = 0
        else
            selfSay('Você tem certeza que quer cancelar sua task?',cid)
            talkState[talkUser] = 1
        end
    elseif (msgcontains(msg,'yes') or msgcontains(msg,'sim')) and talkState[talkUser] == 1 then
        selfSay('Muito bem, sua task foi cancelada.',cid)
        doResetTask(cid)
        setPlayerStorageValue(cid,taskstg.permission,-1)
        setPlayerStorageValue(cid, taskstg.stage, getPlayerStorageValue(cid, taskstg.stage)-1)
        talkState[talkUser] = 0
    elseif (msgcontains(msg,'no') or msgcontains(msg,'não')) and talkState[talkUser] == 1 then
        selfSay('Você que sabe, né...',cid)
    end
end
npcHandler:setCallback(CALLBACK_MESSAGE_DEFAULT, creatureSayCallback)
npcHandler:addModule(FocusModule:new())

olha o comando informacoes ou !countkills n estar fucionando

Link para o post
Compartilhar em outros sites

Esqueci de mencionar:

 

Data/Talkactions/Scripts/ - Cria um com nome de countkills.lua

 

Adicione:

function onSay(cid, words, param, channel)
    local monster, permission = getPlayerStorageValue(cid,taskstg.monster), getPlayerStorageValue(cid,taskstg.permission)
    local kills, killstotal = getPlayerStorageValue(cid,taskstg.kills), getPlayerStorageValue(cid,taskstg.killstotal)
    if monster == -1 or monster == 0 then
        doPlayerSendTextMessage(cid,27,'Voce nao tem nenhuma task ativa.')
    else
        local left = killstotal - kills
        if left <= 0 then
            doPlayerSendTextMessage(cid,27,'Voce ja matou monstros suficientes para terminar sua task.')
        else
            doPlayerSendTextMessage(cid,27,'Andamento da sua task de '..taskmonsters[monster][1]..'s -> ['..kills..'/'..killstotal..']')
        end
    end
    return true
end

Data/Talkactions/Talkactions.xml

 

Adicione:

<talkaction words="!countkills" event="script" value="countkills.lua"/>
Link para o post
Compartilhar em outros sites

 

Esqueci de mencionar:

 

Data/Talkactions/Scripts/ - Cria um com nome de countkills.lua

 

Adicione:

function onSay(cid, words, param, channel)
    local monster, permission = getPlayerStorageValue(cid,taskstg.monster), getPlayerStorageValue(cid,taskstg.permission)
    local kills, killstotal = getPlayerStorageValue(cid,taskstg.kills), getPlayerStorageValue(cid,taskstg.killstotal)
    if monster == -1 or monster == 0 then
        doPlayerSendTextMessage(cid,27,'Voce nao tem nenhuma task ativa.')
    else
        local left = killstotal - kills
        if left <= 0 then
            doPlayerSendTextMessage(cid,27,'Voce ja matou monstros suficientes para terminar sua task.')
        else
            doPlayerSendTextMessage(cid,27,'Andamento da sua task de '..taskmonsters[monster][1]..'s -> ['..kills..'/'..killstotal..']')
        end
    end
    return true
end

Data/Talkactions/Talkactions.xml

 

Adicione:

<talkaction words="!countkills" event="script" value="countkills.lua"/>

ou esse id no meu servidor ja existe

kills = 3451,

permission = 3452,

killstotal = 3453,

monster = 3454,

stage = 3455,

points = 3456,

posso mudar pra qualquer um né?

 

Link para o post
Compartilhar em outros sites

Isso são Storages e não IDs...

 

Caso saiba o que é storage e tenha certeza que tem no seu servidor, pode altera-las !

eu botei o numero 10000002 que n existe esse numero em nenhum intem e nem quests

Link para o post
Compartilhar em outros sites
  • 1 year later...

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 LasseXeterno
      Então, estou tentando adicionar uma nova "race" no meu Ot de base Cyan, tentei seguir 3 tutoriais aqui do tibiaking, um sobre race, porém nos códigos do meu servidor não tem o constant.h e nem o monster.cpp. E o outro tutorial, eu fiz tudo que ele pediu e quando entrei no game para testar, funcionava os golpes e as imunidades, porém não aparecia o número do dano e nem a cor.  Usei esse tutorial como base: 
      Pois ele é derivado. E o outro tutorial que usei foi: 
      Porém nesse, não consegui achar a const.h, e quando fui nos arquivos do creaturescript e adicionei uma cor nova a "COLOR_FAIRY", quando abro o jogo, os pokemons que seriam teoricamente "fada", o que eu usei de teste foi a Clefable. A Clefable tomava IK e dava IK no seu atk do tipo fada. 
      Além de que, o meu erro principal é esse: Warning - Monsters::loadMonster] Unknown race type fairy. (data/monster/pokes/geracao 1/Clefable.xml)
       Pois como eu já disse, não consigo achar onde adicionar uma nova race.

    • Por yuriowns
      Salve rapazes, tranquilo? Preciso de ajuda pra colocar para os npc's que vendem pots verificarem quantos itens possuem no tile em que o player está e se tiver com +80 itens no sqm, o npc avisa e não vende nada até o player ir em um sqm com menos de 80 itens no chão.
       
    • Por A.Mokk
      .Qual servidor ou website você utiliza como base? 
      TFS 0.4
      Qual o motivo deste tópico? 
      Bom pessoal, a algumas semanas atras eu joguei um servidor que havia sistema de imbuimento sendo 8.60, no servidor se utilizava a spellwand para encantar as armas, os comandos eram dado no canal Imbuiment... Gostaria de saber se alguém teria como disponibilizar algum sistema de imbuimento, já procurei pra caramba aqui no fórum mas tudo que encontro é pra versões acima da que eu uso.
       
    • Por Mateus Robeerto
      Não sei se aqui é a área ou algum local para solicitar a alteração do email antigo... Não lembro mais a senha dele, nem a resposta secreta para acessar. Peço a algum administrador ou moderador para, por favor, alterar o email para o novo.
×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo