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

Search results

  1. Crevasse

    Lua Buy more than 100 items from an NPC

    All of this fancy loop stuff is great and I'm sure there's a way to get it to work with player:addItemEx(), but why not just use the built in loop included in the player:addItem() function? If you don't care about excess items going on the ground, then just do this: function doNpcSellItem(cid...
  2. Crevasse

    [USA][7.72] Zenith | Launches July 16th 2022 @ 11:00 AM EST

    Good evening, Due to popular demand from our playerbase, Zenith will relaunch as “Zenith Beta” on October 1st @ 11 AM EST. It’s no secret that the original launch of Zenith was a rocky one. However, over the past few months, we have continued to work hard on the project, and we believe it is...
  3. Crevasse

    [US][7.72] Zenith Beta | Launches October 1st @ 11:00 AM EST

    Welcome, Due to popular demand from our playerbase, on October 1st, Zenith will relaunch as “Zenith Beta”. It’s no secret that the original launch of Zenith was a rocky one. However, over the past few months, we have continued to work hard on the project, and we believe it is now in a much more...
  4. Crevasse

    [USA][7.72] Zenith | Launches July 16th 2022 @ 11:00 AM EST

    The server starts in less than 4 hours! Here's a final teaser of some screenshots! Don't get lost in the maze-like Hero Fortress! Take your time to explore the map--some of the best-kept secrets are off the beaten path. Powerful undead creatures inhabit tombs and crypts. What secrets are they...
  5. Crevasse

    [USA][7.72] Zenith | Launches July 16th 2022 @ 11:00 AM EST

    Looking forward to a fun launch day this Saturday! Here's just a small taste of the awesome custom mapping in Zenith: Think regular demons are hard in an era with no item hotkeys? Wait until you fight an Exicida. The island of Clandestia is beautiful, but the pirates who live there are not...
  6. Crevasse

    Zenith - A new type of Oldschool

    Didn't realize some people were so passionate about it haha, good to know. I'll be sure to focus on highlighting the content itself in the future! There are some screenshots in the thread, and more on the website, but even those don't do the map justice ;) later in the week I'll bump the...
  7. Crevasse

    Zenith - A new type of Oldschool

    I was merely pointing to my résumé as a mapper; nothing more. I can be proud of my maps no matter who uses them, even if it was the crappiest management team in the world. I'm optimistic people will be observant enough to tell the difference. If people have questions about that or anything else...
  8. Crevasse

    Zenith - A new type of Oldschool

    Well I guess you don't actually have to expect that because I'm not, nor ever was a part of their management team or staff in any way. I was simply contracted to make maps, nothing else. Whatever bad experience you or anyone else had with their management team ain't my problem. Frankly, I don't...
  9. Crevasse

    Zenith - A new type of Oldschool

    A huge thank you to everyone who helped make the Zenith beta a success this past year. The beta has ended which means it's time for the official launch of the server! Check out the official announcement here: [USA][7.72] Zenith | Launches July 16th 2022 @ 11:00 AM EST...
  10. Crevasse

    [USA][7.72] Zenith | Launches July 16th 2022 @ 11:00 AM EST

    I am excited to announce the official launch of Zenith! The launch date will be Saturday, July 16 2022 at 11:00 AM Eastern (USA); exactly 7 days from now. Registration is open, so come visit our website at Latest News - Zenith (http://zenithopentibia.ddns.net/), make an account, create a...
  11. Crevasse

    Lua House info, data to string [TFS1.2]

    Just query the database (assuming you use MyAAC): function onSay(player, words, param) if player:getHouse() == nil then player:sendCancelMessage("You do not currently own a house.") return false end local playerId = player:getGuid() --get the player database ID...
  12. Crevasse

    Compiling [1.2] Soul Regen

    In lib/core/player.lua, the first function for eating food: local foodCondition = Condition(CONDITION_REGENERATION, CONDITIONID_DEFAULT) local soulCondition = Condition(CONDITION_SOUL, CONDITIONID_DEFAULT) --add another local condition for soul soulCondition:setTicks(8 * 60 * 1000) --set your...
  13. Crevasse

    TFS 1.X+ Last Man Standing Event

    Several things are wrong, the comparison you're doing is trying to compare memory to a number. First, I see for some reason the checkArena function is missing from yours. I'm guessing you removed it trying to change the event. Add this back in: function zombieArena:checkArena() local center...
  14. Crevasse

    Zenith - A new type of Oldschool

    I can't say I have. I mean this as a serious question, but what would the alternative be? Only obtaining equipment from quests?
  15. Crevasse

    C++ Monsters killed by other monsters don't drop loot

    The guys who "downgraded" this distribution missed so much stuff. They failed to remove the entire corpse ownership system. An easy fix: In monsters.cpp, find the call to create loot (line ~49): void MonsterType::createLoot(Container* corpse) Then, within that function, find the third "if"...
  16. Crevasse

    C++ [TFS 1.4] Magic Field Spam

    There isn't necessarily a "problem" with the sources, TFS 1.4 uses an additional value for field damage (items.cpp, line 1201): int32_t initDamage = -1; Because of this, the attribute keys for magic fields are incorrect in the items.xml. If you look at a standard fire field that a monster would...
  17. Crevasse

    TFS 1.2 Problem with fields, fields is not "under" level doors.

    This isn't the exact fix the OP was looking for, but you can always do what I did and add the following lines of code to your closingdoor.lua after item:transform(item.itemid - 1) and before the final "return true": local field = tile and tile:getItemByType(ITEM_TYPE_MAGICFIELD) if field...
  18. Crevasse

    Zenith - A new type of Oldschool

    Sure, I wouldn't stop someone from using it. I've tested OTClient myself and it works just fine :)
  19. Crevasse

    Zenith - A new type of Oldschool

    Protocol is 7.7. For the beta which is currently live (and you're welcome to join), people are using the vanilla Tibia client with the IP permanently changed (so no IP changer is needed). Have nothing against moving to some version of OTClient in the future, but haven't gotten that far yet!
  20. Crevasse

    Zenith - A new type of Oldschool

    Hence why I said “it is easier to BALANCE items than a base vocation.” So…I don’t intend to have any one option be weaker than the rest.
Top