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

Search results

  1. Elpulpo

    Xikini's Free Scripting Service. [0.3.7 & (0.3.6/0.4)]

    Can you help me adding 1 greet word to 1 npc? (not all npc) I use othire (it's like avesta)
  2. Elpulpo

    [7.72] OTHire 0.0.1b - Based in OTServ Trunk (Latest)

    Solved last issue but now I have new one: How I add a greet word to 1 npc? (not to all npc in modules.lua)
  3. Elpulpo

    Xikini's Free Scripting Service. [0.3.7 & (0.3.6/0.4)]

    It doesn't work because the shop module is like this: local shopModule = ShopModule:new() npcHandler:addModule(shopModule) shopModule:addSellableItem({'might ring'}, ID_mightring, 250, 20) In 7.72 there is no trade window
  4. Elpulpo

    Xikini's Free Scripting Service. [0.3.7 & (0.3.6/0.4)]

    I want a trade npc for avesta/othire engine that only trade if player has x storage. Thanks
  5. Elpulpo

    [OTHire] NPC trade only if player has x storage

    It will no work, because OTHire handle trade different way...
  6. Elpulpo

    [OTHire] NPC trade only if player has x storage

    I want something like this: local function onTradeRequest(cid) if Player(cid):getStorageValue(Storage.DjinnWar.EfreetFaction.Mission03) ~= 3 then npcHandler:say('I\'m sorry, but you don\'t have Malor\'s permission to trade with me.', cid) return false end return true...
  7. Elpulpo

    [7.72] OTHire 0.0.1b - Based in OTServ Trunk (Latest)

    How I make a trade npc only sell or buy if you have x storage here in OTHire?
  8. Elpulpo

    item not dropping

    The problem was with missing / Sorry...
  9. Elpulpo

    item not dropping

    I'm trying to drop a item from a monster with 100% chance, and I added 3 lines on monster's xml like that: <loot> <item id="2152" chance="100000"/> </loot> but it doesn't drops What's the problem?
  10. Elpulpo

    OTHire - Happy hour

    I use OThire, based on avesta 7.72. I want to add a "happy hour" to my server where you earn double experience at some hour of the day, for example: from 22:00 to 24:00
  11. Elpulpo

    Is there a gap for an Optional PVP OTserver?

    That's right. I think that a bit of rpg in form of new quest lines, new unexplored hunting grounds and some new npcs that evolve the Tibia lore a bit are needed. Little updates and active staff is the key.
  12. Elpulpo

    Is there a gap for an Optional PVP OTserver?

    I see the most feared thing is the uncertainty of not knowing whether the server will last more than a month or two. It's not easy to gain reputation if you don't have players, but I can manage that point. The question is: what are you looking for in a server in order to be serious?
  13. Elpulpo

    [7.72] OTHire 0.0.1b - Based in OTServ Trunk (Latest)

    https://github.com/TwistedScorpio/OTHire/wiki/How-to-use-RME-for-this-OTServer
  14. Elpulpo

    [7.72] OTHire 0.0.1b - Based in OTServ Trunk (Latest)

    Nice one! In RL Tibia you get teleported to Thais in case you are a premium citizen, and teleport to your free town temple in other cases.
  15. Elpulpo

    [7.72] OTHire 0.0.1b - Based in OTServ Trunk (Latest)

    I need help with premium expired, how can I check player's town and send him to temple?
  16. Elpulpo

    [7.72] OTHire 0.0.1b - Based in OTServ Trunk (Latest)

    I can't edit my last post grrrr... I made a mistake with the player.cpp part, here is the OK version: void Player::die() { ConditionEnd_t conditionEndReason = CONDITIONEND_DIE; if(getZone() == ZONE_PVP){ conditionEndReason = CONDITIONEND_ABORT; }...
  17. Elpulpo

    [7.72] OTHire 0.0.1b - Based in OTServ Trunk (Latest)

    ROOKGAARD SYSTEM Tested and working 100% Credits: @Okke (Scripts) - Me (Join all together and test ;P) Add this to your Configmanager.cpp: m_confInteger[LEVEL_TO_ROOK] = getGlobalNumber(L, "LevelToRook", 5); m_confInteger[ROOK_TEMPLE_ID] = getGlobalNumber(L, "RookTempleId", 1); Add this to...
  18. Elpulpo

    [7.72] OTHire 0.0.1b - Based in OTServ Trunk (Latest)

    Sorry for the last 2 posts, was my fault. Started from scratch guided by your indications and @tarantonio's help and it worked! Not easy to get level 5!! We made a server to check and there are the screens:
  19. Elpulpo

    [7.72] OTHire 0.0.1b - Based in OTServ Trunk (Latest)

    Server crashed an the log returned: :: Loading data/monster/monsters.xml... Unhandled exception. Generating minidump...
  20. Elpulpo

    [7.72] OTHire 0.0.1b - Based in OTServ Trunk (Latest)

    It seems to work, only two warnings on compile: configmanager.cpp(204): warning C4789: destination of memory copy is too small configmanager.cpp(205): warning C4789: destination of memory copy is too small Refered to: m_confInteger[LEVEL_TO_ROOK] = getGlobalNumber(L, "LevelToRook", 5)...
Back
Top