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

[USA] [7.72] Elderan Online - brand new server (nova) 10th april 2026

Server Website/AAC
https://elderan.online
Server Address
elderan.online
Server Port
7171
Client Protocol
8
The price of premium is insignificant compared to the fact that the server is infested with botters who ruin the experience. Rifbot is the main bot people use, and in combination with an anti-GM script, it is undetectable unless you are careless enough to bot while sleeping. I do not even think the staff cares—they simply do not. A single staff member versus an entire OTS is an unfair match. Since the bot is paid, it must be profitable for the developer to keep updating it to work with the Elderan client. There is demand for it; otherwise, it would not function, and the bot developer would not bother updating the code. This demonstrates a clear supply-and-demand cycle. Judging by the lack of client updates, it seems the Elderan staff has given up on fighting this software.

Unless Edward demonstrates genuine care for his players and enforces his own rule—“prohibition of the usage of bots”—he will not be a trustworthy GM. At the moment, he has not updated the client since the start of Horizon, which suggests that he knows the bot is working and has no interest in complicating things. He does not update the client because doing so would create extra work for Rafal, the owner of Rifbot. The Elderan client has not been updated at all to prevent injection or force Rafal to rewrite the code.

Additionally, the server is not listed on OTServlist. Its advertisements are aggressively promoted through streamers who do not genuinely want to play but instead fulfill their 10-hour paid contracts each week. The combination of pushy advertisements, bot-infested gameplay, staff negligence, and Edward’s inactivity is frustrating. The so-called “bots not allowed” rule is entirely misleading. It seems this server is nothing more than a side hustle for Edward—a money-making machine with no real sense of community, just a project to fund the developer’s lavish lifestyle.

1738732932467.webp
[
 
Last edited:
Their bot detection system is like, "Hey, you there?" Meanwhile, Rifbot’s alarms ring like a nuclear siren,bot functions paused My mate just laughs at their weak attempts to stop bots. Sadly, I witnessed it—there is no way for a GM to catch you botting on Elderan unless you sleep. 😆

Just use an anti-GM script in Lua, and adios! Feel free to bot as much as you want—just have an anti-GM script that pauses functions when a GM appears on your screen. I mean and im suposed to play manually on that crap? HAHAH when botting goes unpunished.

Admin done 3 checks on my mate character , each time script worked perfectly , as long as you have anti gm script and alarms, unpunished, and thats just one player imagine how many bot there at Once HAHAHHA. He sends me screens each time get checked and laughs. When i raised these issue today I got hated for it. Phuck the botters, Phuck Edward Phuck Craig And pHuck Elderan

1738738017371.webp

1738737673475.webp 1738737447511.webp 1738737359895.webp
BOT PART OF ANTI GM SCRIPT

LUA:
local CHECK_IF_TELEPORTED = {
    enabled = true,                                     -- true/false check if you character was teleported
    sqms = 3,                                           -- minimal amount of sqms to check.
    pauseBot = true,                                     -- true/false pause bot or not (default alarm will play)
    respond = true                                      -- respond short after character will teleported. Messages used here are this same as CHECK_FOR_PM_DEFAULT_MESSAGE. respond
}

local CHECK_IF_GM_ON_SCREEN = {
    enabled = true,                                     -- true/false check for gm on screen
    keywords = {"GM ", "CM ", "Admin ", "ADM ", "Gamemaster"}, -- table of keywords in gm nick
    pauseBot = true                                     -- true/false pause bot or not (default alarm will play)
}

local CHECK_FOR_PM_DEFAULT_MESSAGE = {
    enabled = true,                                     -- true/false check if gm send to as pm or default message, #IMPORTANT respond only to nicks from CHECK_IF_GM_ON_SCREEN.keywords
    pauseBot = true,                                    -- true/false pause bot or not (default alarm will play)
    respond = {
        enabled = true,                                -- true/false respond fo default message
        randomMsg = {"yoyo", ":)", "^^", ":D", "?"}     -- messages to respond only once
    }
}

local CHECK_FOR_MANA_INCREASED = {
    enabled = true,                                     -- true/false check if mana gained fast in one tick.
    points = 10,                                       -- minimal mana points gained to module works
    pauseBot = true                                     -- true/false pause bot or not (default alarm will play)
}

local CHECK_FOR_HEALTH_DMG = {
    enabled = false,                                     -- true/false check for hp decarese by percent
    percent = 60,                                       -- minimal hpperc decreased by GM.              
    pauseBot = true                                     -- true/false pause bot or not (default alarm will play)
}

local CHECK_FOR_SPECIAL_MONSTER = {
    enabled = true,                                    -- true/false check if on screen appear special monster that normal don't appear in this place
    names = {"Demon", "Black Sheep"},                   -- monster names
    useAboveListAsSafe = false,                         -- true/false if true then above list will contains safe monsters and any other will be mark as danger. If false then monsters from list will mark as danger
    pauseBot = true                                     -- true/false pause bot or not (default alarm will play)
}

local CHECK_FOR_RARE_ITEM = {
    enabled = false,                                    -- true/false check for rare item droped on ground.
    ids = {3079, 3319},                                 -- ids of items to check
    range = 7,                                          -- distance from our character we checking
    pauseBot = true                                     -- true/false pause bot or not (default alarm will play)
}

local CHECK_FOR_MONSTERS_CREATION_AND_DISAPPEAR = {
    enabled = false,                                    -- true/false check if GM creating monster and destroy it in short time.
    names = {"Hero", "Dragon"},                         -- name of monsters
    isAliveLessThan = 1,                                -- mark monsters that are alive less than 1s. (it won't works for monsters with low HP died on headshoot)
    teleportedSqms = 4,                                 -- check for monster teleportation too, minimal sqms.
    pauseBot = true                                     -- true/false pause bot or not (default alarm will play)
}

local CHECK_FOR_MONSTERS_CREATION = {
    enabled = false,                                    -- [!IMPORTANT: works only on servers that don't spawn monsters when player on screen] true/false check if monsters spawn on screen.
    ignore = {"Stalker", "Nightstalker"},               -- List of monsters that disappear or you want just ignore.
    pauseBot = true                                     -- true/false pause bot or not (default alarm will play)
}

local CHECK_FOR_TARGET_MONSTER_HEALED = {
    enabled = false,                                    -- true/false check if GM healing your current targeting monster (red square)
    hpperc = 20,                                         -- minimal percent monster need to be healed.
    pauseBot = true                                     -- true/false pause bot or not (default alarm will play)
}

local PAUSE_CAVEBOT_ONLY = {
    enabled = false                                     -- while GM detected pause only Cavebot (targeting, walker, looter)
}

local PAUSE_LUA_SCRIPTS = {                          
    enabled = true                                     -- will pause lua scripts too (!IMPORTANT the only way to enable it will manually press CTRL+P)
}

local RESUME = {
    enabled = false,                                    -- true/false resume bot after some time paused
    time = 180                                          -- time in seconds to unpause bot
}
Post automatically merged:

this server starts everytime lee needs money for tibia coins on new rl tibia server and thats sad there was huge potential
Not sure if leee owns it still, or lee changed name to EDWARD lol

1738738067246.webp



conclusion: Avoid it, unless you are ok with botters ruining your gameplay
Post automatically merged:

All it takes is for Edward to update the client, which would force the bot developer to rewrite the code and update the bot. This cycle could continue, disrupting the bot for a while until the developer rewrites it to be injectable into the client.

Referring to the bot’s website, the last update for Elderan was in 2021. This suggests that something happened in 2021 that prevented the bot from working, requiring it to be rewritten. Since that date, nothing has been done.
1738739396511.webp
 
Last edited:
this server was really really great on first 1-2 editions years back, sad to see it turned into such a shitshow ;(
 
New world has been launched. For everyone that was or is interested in trying out the game for the first time it’s the perfect chance to do it.

  • premium on the new world is completely removed. Free premium.
  • all quality of life items are now free and can be found in the purse (little icon above bp slot) on every newly created char.

join discord for more info.
discord.gg/elderan
 
New world has been launched. For everyone that was or is interested in trying out the game for the first time it’s the perfect chance to do it.

  • premium on the new world is completely removed. Free premium.
  • all quality of life items are now free and can be found in the purse (little icon above bp slot) on every newly created char.

join discord for more info.
discord.gg/elderan
This is truly great and all, only... in order to train your character as a knight or paladin heck even as a mage, you have to buy points in order to buy the training weapons. I know they are obtainable in-game but an extremely high cost..... You can't even train knights or paladins as the damage formula in Elderan is quite different. Also you will have to purchase a House Training Dummy (also cost points) to use your "Wooden Training Weapon" which trains super slow to begin with. As using this type of training weapon basically binds the dummy to whoever uses the Wooden Training Weapon on it. No one else will be able to use the Training Dummy with another "Wooden" training weapon, just the Training Weapons with charges on them. You cannot use the Wooden Training Weapon on the normal city training dummies.
Sure the Premium, Inkwell, Dragon Task Scroll, and Gold Pouch (Converts Gold to Platinum), are free..... but people that don't buy points at the start to train their characters, are truly really behind. The amount of skill gained from 1x 8 hour training weapon is absurd compared to someone who isn't able to buy that stuff. 8 Euros for 105 Points (80 points for 1x 8 hour training weapon), the things given free I feel like are a small lure to come play this massively P2W server. Should mention this kind of stuff that I did. Just saying, or address it as its been an ongoing issue almost every start of Elderan? You guys think you covered the problem "We hear you" type msg. Well you guys are living in your own fantasy world, once people realize this as they did the other 4 servers you guys launched that died and merged with Primis, this will just be another repeat. You can sit here and say im wrong but the facts are there, with every launch and outcome of every Elderan server.
 
server got potential but instead of keepingg QoL and pacc in store they decide to add p2w stuff and on top of that make "double skill events" 2-3 weeks into server it feels mandatory to buy points and spent it on double skill event (4x)

also i guess runetables are still a thing? its bad cuz it sets points price at minimum 300k per 100 if i good remember
 
This server has became one of the most P2W servers, the only thing they don't sell in the store is equipment.
They've now added XP boosts (40%), Baits (spawns a shiny monster which is 11x exp and any monster before it procs is +10% XP), Training weapons, Rune tables which make runes which are 25% stronger than normal rune and now you can just buy runes straight from the store.

On top of that they give certain people who are involved in wars countless free coins.
 

Attachments

This is insane...

"come play, its free premium and free quality of life"
lol.. just lol...... To see how the staff feeds points out like that, is crazy on its own.

This has become a joke of a server honestly.
 
It's back and great fun as always!

Running theme on OTLand that people will always complain about costs - but its 2025, and this server has a decent host and obviously pays its staff with the constant stream of updates.

Huge bonus that premium is FREE, and all necessary QoL items to play are FREE! (not really sure how people complain about money, when its not necessary to spend anything)

My suggestion would be play (for free) and see if you like the server with tons of custom features - see you in game (Bam Boo)
 
This was my first time on Elderan, really think this is well made, cool, server. I had tons of fun on the first day. I, by no means, strive to be one of the highest level players, but when I checked the magic level highscore the following morning (because I was curious how my mlvl 18-20 held up to the top players) I was completely blown away. The top 20~ was all mlvl 50+ with the top 3 being mlvl 60+.

This was basically half a day after launch and the gap between players that are apparently paying for training weapons is just absurd.
So here I am in the morning, checking my mlvl vs players again and I gained levels mlvls than the top players, despite being online for way too long to try to get my mlvl up a bit.

So yes, this server is very cool and interesting and I was very hyped to play it, but the gap between paying players and free to play players is just a complete blackhole. If you are curious yourself, just go to the highscores and check the insane gap between players in terms of all skills. You will quickly notice who is a paying player and who is a free to play player.
 
It's back and great fun as always!

Running theme on OTLand that people will always complain about costs - but its 2025, and this server has a decent host and obviously pays its staff with the constant stream of updates.

Huge bonus that premium is FREE, and all necessary QoL items to play are FREE! (not really sure how people complain about money, when its not necessary to spend anything)

My suggestion would be play (for free) and see if you like the server with tons of custom features - see you in game (Bam Boo)
Typical with the "Its 2025" comment. As you can see, people are playing for "Free" and look.
You talk about constant stream of updates? OH you mean the ones that are massively delayed with the discord flooding with people(players that have been playing for years too) complaining how the staff needs to be more transparent and update people more often and stop giving false dates? Then the staff blame the playerbase for their delay of updates...? You mean those stream of updates? Yeah sure, whatever.
WE KNOW THE PREMIUM IS FREE AND THE QOL ARE FREE, its just a pull in to try to get people to spend more on the problems that I mentioned above, which you seemed to ignore.
Get of your high horse and stop with the attempt to miss lead what's already known to be one of the biggest p2w servers out there.
Cool features and concept and all, but massively p2w and it is a big turn off, just watch numbers will fall as they always do and it will merge with primis and well be back at square one here on the forums with another server launch in a year for a cash grab.

I mean, I guess were in 2025 and this is normal.
 
Last edited:
Typical with the "Its 2025" comment. As you can see, people are playing for "Free" and look.
You talk about constant stream of updates? OH you mean the ones that are massively delayed with the discord flooding with people(players that have been playing for years too) complaining how the staff needs to be more transparent and update people more often and stop giving false dates? Then the staff blame the playerbase for their delay of updates...? You mean those stream of updates? Yeah sure, whatever.
WE KNOW THE PREMIUM IS FREE AND THE QOL ARE FREE, its just a pull in to try to get people to spend more on the problems that I mentioned above, which you seemed to ignore.
Get of your high horse and stop with the attempt to miss lead what's already known to be one of the biggest p2w servers out there.
Cool features and concept and all, but massively p2w and it is a big turn off, just watch numbers will fall as they always do and it will merge with primis and well be back at square one here on the forums with another server launch in a year for a cash grab.

I mean, I guess were in 2025 and this is normal.
At no point did I say its not p2w because it clearly is - but it definitely is not pay to play.

Take a quick flick around OTland forum, and people much like yourself are going round bashing every single server - guess what no server is perfect for every individual.

I also think it's a huge win that the char is never lost so I can (and do) return to a past char.

We are in 2025, play what you like and if its not for you, no harm done (and no money lost) :)
 
At no point did I say its not p2w because it clearly is - but it definitely is not pay to play.

Take a quick flick around OTland forum, and people much like yourself are going round bashing every single server - guess what no server is perfect for every individual.

I also think it's a huge win that the char is never lost so I can (and do) return to a past char.

We are in 2025, play what you like and if its not for you, no harm done (and no money lost) :)
Fair, since we are in 2025 we are entitled our own opinions.
Let the facts speak for themselves and this server will crumble like it does every single damn time. Its just become a huge cash grab, P2W server. Sure its not pay to play, but people quickly realize the gap, and will be gone/quit. Just watch man, it happens every time, and the staff think they solved it with this junk, when all it is, is a trash way to lure people in. So I am here to call that out, as its becoming so pathetic how this server has turned since Edward took it over. (which is actually no surprise in reality) was better off when Lee and Aura were in control. Gryphon also feeding points to streamers is another thing.
Having Craig as a GM..... buying everyones characters and items at the end when people quit, must be the best thing people look forward to here.
At least people know what they are getting into, before playing this. If they choose to do so, so be it.. I'm being transparent with what this server TRULY is, something the discord community in elderan thinks the staffs completely lacks, win for me already.

Never will forget how much you cried and complained about the botters on previous versions of elderan, your frustration showed and now here you are. Weird.

1753099356631.webp
Lets not forget you bashing how the staff monitor reports/tickets. <3
 
Last edited:
Fair, since we are in 2025 we are entitled our own opinions.
Let the facts speak for themselves and this server will crumble like it does every single damn time. Its just become a huge cash grab, P2W server. Sure its not pay to play, but people quickly realize the gap, and will be gone/quit. Just watch man, it happens every time, and the staff think they solved it with this junk, when all it is, is a trash way to lure people in. So I am here to call that out, as its becoming so pathetic how this server has turned since Edward took it over. (which is actually no surprise in reality) was better off when Lee and Aura were in control. Gryphon also feeding points to streamers is another thing.
Having Craig as a GM..... buying everyones characters and items at the end when people quit, must be the best thing people look forward to here.
At least people know what they are getting into, before playing this. If they choose to do so, so be it.. I'm being transparent with what this server TRULY is, something the discord community in elderan thinks the staffs completely lacks, win for me already.

Never will forget how much you cried and complained about the botters on previous versions of elderan, your frustration showed and now here you are. Weird.

View attachment 93843
Lets not forget you bashing how the staff monitor reports/tickets. <3
Thank you for this, it's a fantastic example of how feedback on the correct platform works.

Shortly after this they added a 'report botters' function on the ticket system and took a much harsher stance on botters.

I'm here, because for all the faults, I still think it's a fantastic server with a decent community🙏
 
"A fantastic example" of you being so naive and blind. Yes it is indeed.
and about GM craig buying peoples accounts and items when it's not allowed. Gryphon giving points out like free handouts like its Halloween? The staff not being transparent with the community and blaming their playerbase for delays on updates? The staff delaying updates months and months off end? I mean I'm spitting straight facts, the discord and the "great" community you have there are proof of their complaints via discord. All this has been an ongoing problem for well over a year now.
 
Last edited:
Hello everyone!

A brand new server has been launched on april 10th!

You can create an account on www.elderan.online

So what‘s new? Doesnt matter if you already tried playing on elderan or are a completely new player, the game has been improved and simplified with tons of improvements and quality of life, which was long overdue.

  • improved and revamped task system.
  • improved player trading with a window (just right-click) npcs.
  • new fitting equipment slots (light source and second ring slot)
  • a new and clean container setup. Universal pouch with 5 special containers for item types.
  • improved looting with a simple right click the items of corpses, items go automatically and nicely sorted into the correct container. Absolutely no setup required!
  • a brand new tutorial and introduction to the game and custom features.
  • easier start for druids and sorcerers, mana regeneration on wands and staff.
  • untied daily xp boost from stamina bar, daily login receives bonus xp every day automatically Independent from ur stamina.

New accounts automatically start with 14 days premium!

everything has heavily be improved!

See you ingame!
Have fun
Post automatically merged:

Hi everyone!

A brand new server has been launched on april 10th!

You can create an account on www.elderan.online

So what‘s new? Doesnt matter if you already tried playing on elderan or are a completely new player, the game has been improved and simplified with tons of improvements and quality of life, which was long overdue.

  • improved and revamped task system.
  • improved player trading with a window (just right-click) npcs.
  • new fitting equipment slots (light source and second ring slot)
  • a new and clean container setup. Universal pouch with 5 special containers for item types.
  • improved looting with a simple right click the items of corpses, items go automatically and nicely sorted into the correct container. Absolutely no setup required!
  • a brand new tutorial and introduction to the game and custom features.
  • easier start for druids and sorcerers, mana regeneration on wands and staff.
  • untied daily xp boost from stamina bar, daily login receives bonus xp every day automatically Independent from ur stamina.

New accounts automatically start with 14 days premium!

everything has heavily be improved!

See you ingame!
Have fun
 
Hello everyone!

A brand new server has been launched on april 10th!

You can create an account on www.elderan.online

So what‘s new? Doesnt matter if you already tried playing on elderan or are a completely new player, the game has been improved and simplified with tons of improvements and quality of life, which was long overdue.

  • improved and revamped task system.
  • improved player trading with a window (just right-click) npcs.
  • new fitting equipment slots (light source and second ring slot)
  • a new and clean container setup. Universal pouch with 5 special containers for item types.
  • improved looting with a simple right click the items of corpses, items go automatically and nicely sorted into the correct container. Absolutely no setup required!
  • a brand new tutorial and introduction to the game and custom features.
  • easier start for druids and sorcerers, mana regeneration on wands and staff.
  • untied daily xp boost from stamina bar, daily login receives bonus xp every day automatically Independent from ur stamina.

New accounts automatically start with 14 days premium!

everything has heavily be improved!

See you ingame!
Have fun
Post automatically merged:

Hi everyone!

A brand new server has been launched on april 10th!

You can create an account on www.elderan.online

So what‘s new? Doesnt matter if you already tried playing on elderan or are a completely new player, the game has been improved and simplified with tons of improvements and quality of life, which was long overdue.

  • improved and revamped task system.
  • improved player trading with a window (just right-click) npcs.
  • new fitting equipment slots (light source and second ring slot)
  • a new and clean container setup. Universal pouch with 5 special containers for item types.
  • improved looting with a simple right click the items of corpses, items go automatically and nicely sorted into the correct container. Absolutely no setup required!
  • a brand new tutorial and introduction to the game and custom features.
  • easier start for druids and sorcerers, mana regeneration on wands and staff.
  • untied daily xp boost from stamina bar, daily login receives bonus xp every day automatically Independent from ur stamina.

New accounts automatically start with 14 days premium!

everything has heavily be improved!

See you ingame!
Have fun


Too much pay-to-win in the shop.
The backpack system is buggy and has capacity issues.
GMs are closing tickets before problems are resolved.


Without the stamina system, different tiers of premium, premium points for training, premium points rune crafting and premium points storage… I would consider playing. For now, it’s too much p2w.
 
Thanks guys for all the comments and warning me! This is what forums should be used for. Warning people against wasting their time on greedy p2w servers with low managment. If it is a highly specialized server with active GMs like Tibiascape I can live with some p2w but this server seems dog.
 
cool server but 1x skill in shop u can get training weapon which speed up skilling 2x and u can x-log with it inside house


everything including runes for ur vocation scales with skills so you are kinda forced to train to dunno 90-95 skill theres often double skill event for a week during server launch which even force you to use those weapons to get full benefits (x4 skill) on top of that literally EVERYBODY is botting including streamers and top lvls you often need a video of somebody legit full afk botting and spamming it on discord for weeks to get somebody banned

on top of that points almost instantly jump in price to 130k-150k because you can actually x-log runemakers in house fully afk on runetables (bought from store) with food from store (normal food req client running and eating it if u want to fully benefit from runetables) those runes have increased power... xDD


ofc store offer maybe slighty changed by now but i doubt it is more player friendly as it was changed multiple times just for a more predatory p2w
 
Back
Top