[Quest] Problem

07/05/2012 00:22 zunmt2#1
PHP Code:
        when 30123.take with item.vnum == 27999 begin 
            chat
("Vais ser teleportado para a Atlantida Piso 2"
            
pc.remove_item("27999")
            
pc.warp(153600,1203200)
            else 
                return
            
end
        end
    end
end 
Can any one fix this please

:handsdown:
07/05/2012 01:18 Alovie™#2
try it so:

PHP Code:
when 30123.chat"teleportado para a Atlantida Piso 2"
if pc.count_item(27999) > 0 then
say_title
("Vais ser teleportado para a Atlantida Piso ")
local s select("Yes teleportado !","No!")
if 
== 1 then
pc
.remove_item(27999,1)
pc.warp(153600,1203200)
else
say("then not, stay here")
end
else 
say("You need item 27999 sorry. ")
end
end
end
end 
07/05/2012 09:08 .BeKiiR##3
[Only registered and activated users can see links. Click Here To Register...]