CM
erro

Demon oak Voice

Por CMPunkWWE, 10 de out. de 2015 em Scripts

bug
demon oak
oak
1
773
CMPunkWWEC
10 de outubro de 2015 às 15:55

Minha DemonOakQuest está com o seguinte erro!

post-341929-0-83905100-1444502977_thumb.png

 

<!-- Demon Oak Quest -->

<globalevent name="DemonOakVoices" interval="15000" script="demon oak quest/voices.lua"/>

Arquivo = voices.lua

local demonOak_pos = {x = 32716, y = 32352, z = 7}

local questAreaPosition =
{
{x = 32706, y = 32345, z = 7, stackpos = 255},
{x = 32725, y = 32357, z = 7, stackpos = 255}
}

local voices = {
'Release me and you will be rewarded greatefully!',
'What is this? Demon Legs lying here? Someone might have lost them!',
'I\'m trapped, come here and free me fast!!',
'I can bring your beloved back from the dead, just release me!',
'What a nice shiny golden armor. Come to me and you can have it!',
'Find a way in here and release me! Pleeeease hurry!',
'You can have my demon set, if you help me get out of here!'
}

function onThink(interval, lastExecution)
local specs = Game.getSpectators(demonOak_pos, false, true, 0, 15, 0, 15)
for i = 1, specs do
if isInRange(specs:getPosition(), questAreaPosition[1], questAreaPosition[2]) then
return true
end
specs:say(sounds[math.random(#voices)], TALKTYPE_MONSTER_YELL, false, 0, demonOak_pos)
end
return true
end

 

Irei dar rep+ para quem me ajudar!

Mesmo assim agradeço desde já a todos!

Editado Outubro 10 por CMPunkWWE