small quest question

02/12/2011 07:21 RumorUS#1
someone make this so that the player must be level 80+ to enter please :facepalm::facepalm:

Code:
quest newmap begin
state start begin
when login begin
if pc.get_map_index() == 999 then
pc.set_warp_location(999, 9999, 9999)
end
end    
when 20095.chat."New Map" begin
say(""..mob_name(20095)..":")say("")
say_reward("Would you like to be teleported?")            
local s = select("Yes", "No")
if s == 1 then
say(""..mob_name(20095)..":")
say_reward("I will teleport you now")
wait()
pc.warp(512300, 512300)
else
return
end
end
end
end
02/12/2011 20:27 RumorUS#2
anyone =(?
02/12/2011 22:55 RivathaX#3
Let the Quest work with a Item then you can give it this code

Quote:
when ITEMID.use with pc.get_level() >= LV begin
02/13/2011 09:22 RumorUS#4
i tried that on an item, it isn't working

can someone help pl0x :)