• 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!

Lua Hey, Can someone help me. Have scripts to this part of poi look on it!

tanna111

New Member
Joined
Sep 21, 2008
Messages
23
Reaction score
0
Have Script here? plzzzz
errordy.png
 
so you can go without going to the thrones?>
if yes check the last door ans see there should say "you dont have enought energy"
 
Lua:
local back = {x=100, y=100, z=7}

function onStepIn(cid, item, pos, fromPos)
	if isPlayer(cid) and getCreatureStorage(cid, item.uid) == -1 then
		doTeleportThing(cid, back)
		doSendMagicEffect(back, CONST_ME_TELEPORT)
	end
end

Now check your thrones script and see what storages is it using, and then use the same storages as unique IDs for the the archways.
 
Back
Top