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

Elane's crossbow quest OFF

weten

New Member
Joined
Sep 1, 2012
Messages
4
Reaction score
0
First do not know if this post is right here, sorry

When I went to complete the mission of Elane's Crossbow, press the piano for the teleport but did not work. I think the mission is problem, not mine, Please Take a look
 
try this
Lua:
function onUse(cid, item, fromPosition, itemEx, toPosition)
	if(item.actionid == 4830) then  -- edit for ID piano
		local xyz = {x = 1000, y = 1000, z = 7) -- edit positions
		doTeleportThing(cid, xyz)
		doSendMagicEffect(getCreaturePosition(cid), CONST_ME_TELEPORT)
	end
	return true
end
 
Jesus ****, put that in actions/scripts/ then open actions.xml and assign that script to an AID that you will then put onto that piano via your map editor. If you don't know what I'm talking about, I suggest you try and open your data folder and actually check around what is in there, etc..
 
Back
Top