• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

TalkAction [Many] My fully lua PET system (MANY FEATURES)

Whenever i try to summon the pet, with !pet, i get the error message, Not enought room. I am using the latest sources.

[04/04/2008 21:29:53] Lua Script Error: [TalkAction Interface]
[04/04/2008 21:29:53] data/talkactions/scripts/pets/!pet.lua:eek:nSay

[04/04/2008 21:29:53] luaDoSummonCreature(). Monster name() not found

[04/04/2008 21:29:53] Lua Script Error: [TalkAction Interface]
[04/04/2008 21:29:53] data/talkactions/scripts/pets/!pet.lua:eek:nSay

[04/04/2008 21:29:53] luaDoConvinceCreature(). Creature not found
 
Last edited:
Error

Maybe if you explained better i wouldn't have gotten a million errors. explain it better!

HERES A PIC OF THE ERRORS.

error.jpg
 
Maybe if you explained better i wouldn't have gotten a million errors. explain it better!

HERES A PIC OF THE ERRORS.

View attachment 613

Youre missing almost every file... o.o

My guess is that you did paste all only in petinfo.lua.

It is said in first posts how to do it.
 
[fixed]found 1 bug
!petinfo "magic level
isn't working. any idea's?[fixed]

BUG or w/e u want to call it:

1- Can u till me how to make the exhaustion higher? I want to make it 1min so it wont be spammed

2- reduce exhaustion for spells
 
Last edited:
It is working, but just after your pet has gained one magic level.
 
how does it gain magic level?

BUG or w/e u want to call it:
1- Can u till me how to make the exhaustion higher? I want to make it 1min so it wont be spammed

2- reduce exhaustion for spells

3- Pet die when server shutdown if it is summoned can anyone fix this?
 
Last edited:
it only summons demons ;\ (first on the list) even if ur below lvl 100 and the pet hits u... how do u make it non pvp?



edit: fixed the 'only demons' problem but i need it to not hit the owner etc. how do i do that?
 
Last edited:
I got this problem:

[24/06/2008 10:21:30] luaDoSummonCreature(). Monster name(Dragons) not found

[24/06/2008 10:21:30] Lua Script Error: [TalkAction Interface]
[24/06/2008 10:21:30] data/talkactions/scripts/pets/!pet.lua:eek:nSay

[24/06/2008 10:21:30] luaDoConvinceCreature(). Creature not found
 
Code:
[24/06/2008 10:21:30] luaDoSummonCreature(). Monster name(Dragons) not found

Your error here?

- There is no monster called "Dragons", therefore it cannot be summoned (First Error) and convinced (Second Error).

Guess you mean to write Dragon there, if you have a monster called Dragons add it to monsters.xml.

kthxbye
 
help please...

petConfig.lua
Code:
--Pets, dependiong on the level
pets = 
    {
        {vocations = {1, 5}, pets =
        {{level = 100, name = "demon"}, {level = 60, name = "Dragons"}, {level = 50, name = "Dwarf Gegmancers"}, {level = 40, name = "Demon Skeleton"}, {level = 30, name = "Fire Devil"}, {level = 20, name = "Minotaur Archer"}, {level = 10, name = "Minotaur"}, {level = 0, name = "Rat"}}
        },
        {vocations = {2, 6}, pets =
        {{level = 100, name = "demon"}, {level = 60, name = "Dragons"}, {level = 50, name = "Dwarf Gegmancers"}, {level = 40, name = "Demon Skeleton"}, {level = 30, name = "Fire Devil"}, {level = 20, name = "Minotaur Archer"}, {level = 10, name = "Minotaur"}, {level = 0, name = "Rat"}}
        },
        {vocations = {3, 7}, pets =
        {{level = 100, name = "demon"}, {level = 60, name = "Dragons"}, {level = 50, name = "Dwarf Gegmancers"}, {level = 40, name = "Demon Skeleton"}, {level = 30, name = "Fire Devil"}, {level = 20, name = "Minotaur Archer"}, {level = 10, name = "Minotaur"}, {level = 0, name = "Rat"}}
        },
        {vocations = {4, 8}, pets =
        {{level = 100, name = "demon"}, {level = 60, name = "Dragons"}, {level = 50, name = "Dwarf Gegmancers"}, {level = 40, name = "Demon Skeleton"}, {level = 30, name = "Fire Devil"}, {level = 20, name = "Minotaur Archer"}, {level = 10, name = "Minotaur"}, {level = 0, name = "Cave Rat"}}
        }
    }
:)
 
Back
Top