• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

New Idea Of The Server.

I'll be your scripter!
Lets see, Low-Exp Teleport server...

The first quest should be, you walk into a portal, and there are 3 chests, and it is random for every character, but if you click the right chest you get your starting equipment. If you click the wrong chest, your IP is banished.

I will get to work on this highly anticipated quest for your highly anticipated server immediately.

- - - Updated - - -

DONE!

LUA:
winLOSERchests {
{x=999,y=999,z=7}, -- Location of first chest
{x=999,y=999,z=7}, -- Location of second chest
{x=999,y=999,z=7}, -- Location of third chest
}

uberStartingGear = {2461, 2467, 2649, 2643} -- Leather Set

function onUse(cid, item, fromPosition, itemEx, toPosition)
	if toPosition.x == winLOSERchests.x and toPosition.y == winLOSERchests.y and toPosition.z == winLOSERchests.z then
		local chance = math.random(1, 3)
		if chance == 1 then
			for _, tid in ipairs(uberStartingGear) do
				doPlayerAddItem(cid, tid, 1)
			end
		else
			doAddIpBanishment(getPlayerIp(cid))
		end
	end
	return true
end

I will leave the Mapping to you, since you are so talented :).

Holy crap! that script is amazing, that's the only quest I have on my server.

Online: 0/1000
 
Holy crap! that script is amazing, that's the only quest I have on my server.

Online: 0/1000

The best thing about this quest, is it's fun each time you start a new character, because you don't know if you will be making a new Paladin, or quitting the server due to IP Banishment.
Oh the intensity! If only every server had such high risk/reward quests.
 
The best thing about this quest, is it's fun each time you start a new character, because you don't know if you will be making a new Paladin, or quitting the server due to IP Banishment.
Oh the intensity! If only every server had such high risk/reward quests.

I fel bad for teh servs with not this qest
 
I have a Temple Update for this amazing server.

Simply make 1 portal, and it teleports you to a random location on the map.

temple.png

LUA:
local maxTown = 10 -- Put the number of locations you have made
function onStepIn(cid, item, position, lastPosition, fromPosition, toPosition, actor)
	if isPlayer(cid) then
		doTeleportThing(cid, getTownTemplePosition(math.random(1, maxTown)))
	end
	return true
end

This way, players will not get lost exploring inside of your temple. And each time they log on, they have a new experience.
 
Back
Top