local config = { [2066] = {storage = 2060, name="Verminor´s", efekt = 20}, [2067] = {storage = 2061, name="Infernatil´s", efekt = 15}, [2068] = {storage = 2062, name="Tafariel´s", efekt = 2}, [2069] = {storage = 2063, name="Apocalypse´s", efekt = 4}, [2070] = {storage = 2064, name="Pumina's", efekt = 7}, [2071] = {storage = 2065, name="Ashfalor´s", efekt = 17} } function onStepIn(cid, item, pos) local pos = {x=712, y=658, z=12} local cfg = config[item.uid] if getPlayerStorageValue(cid, cfg.storage) ~= 1 then doTeleportThing(cid, pos) doCreatureSay(cid, "Sorry, but you did not absorb enough energy! You must touch " ..cfg.name.. " throne!", TALKTYPE_ORANGE_1) doSendMagicEffect(getCreaturePosition(cid),cfg.efekt) end return true end