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

Something Easy ( I think)

Snow

New Member
Joined
Jan 16, 2008
Messages
381
Reaction score
0
1
PHP:
local config = {
	message = "You now have 3 minutes to exit this room through the teleporter. It will disapear after that.",
	timeToRemove = 180, -- seconds
	teleportId = 1387,
	bosses = {
		["Ushuriel"] = { x = 588, y = 1086, z = 7 },
		["Annihilion"] = { x = 276, y = 1045, z = 6 },
		["Hellgorak"] = { x = 169, y = 1047, z = 6 },
		["Madareth"] = { x = 416, y = 1017, z = 6 },
		["Zugurosh"] = { x = 424, y = 1119, z = 7 },
		["Latrivan"] = { x = 46, y = 1109, z = 7}
	}
}

local function removal(position)
	position.stackpos = 1
	if getThingfromPos(position).itemid == config.teleportId then
		doRemoveItem(getThingfromPos(position).uid)
	end
	return TRUE
end

function onDeath(cid, corpse, killer)
	registerCreatureEvent(cid, "inquisitionPortals")
	local position = getCreaturePosition(cid)
	
	for name, pos in pairs(config.bosses) do
		if name == getCreatureName(cid) then
			teleport = doCreateTeleport(config.teleportId, pos, position)
			doCreatureSay(cid, config.message, TALKTYPE_ORANGE_1)
			addEvent(removal, config.timeToRemove * 1000, position)
		end
	end
	return TRUE
end

I wanted something that required the killing of Latrivan and Golgordan before the teleport appeared...I also wanted to add a sentence after you pass the tp(a different sentence for each tp in orange)


2
An action so if I pass the TP I get a msg in orange:P

Thanks in advance.
 
Back
Top