• 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. imkingran

    [USA & FRANCE] [10.00] Middle Earth OTS | New world opens June 15th!

    The EU server client: Middle Earth OT - Ot Server, Open Tibia, Tibia Ots (https://eu.middlearth.net/account/download) The NA server client: Middle Earth OT - Ot Server, Open Tibia, Tibia Ots (https://na.middlearth.net/account/download)
  2. imkingran

    [USA & FRANCE] [10.00] Middle Earth OTS | New world opens June 15th!

    The First Omrafir on the NA Server It wasn't easy at first ... many heroes died in the process ... but with teamwork and perseverance ... They did it!
  3. imkingran

    [USA & FRANCE] [10.00] Middle Earth OTS | New world opens June 15th!

    Website: Middle Earth OTS - The Best OTS Around (https://middlearth.net) Client Version: 10.00
  4. imkingran

    GDB Log - Help

    If you were having a similar error I move the getDescription functions from the engine to Lua so I could manipulate them better. My problem was I had added some edits for the "Guild nick" from TFS 1.2+ to my TFS 1.0 (with many edits) so there some issues in my adaptation of the code in C++.
  5. imkingran

    Lua Buying Mount with Command

    You can edit this in data/XML/mounts.xml: <mount id="5" clientid="372" name="Midnight Panther" speed="20" premium="yes" />
  6. imkingran

    TFS 1.X+ lottery system request

    items = { {itemID = 2160, count = 1}, {itemID = 2170, count = 1}, {itemID = 2155, count = 1} } local randomItem = items[math.random(#items)] print(randomItem.itemID) print(randomItem.count)
  7. imkingran

    Map Editor Portal Cord Option Missing?

    Awesome :D
  8. imkingran

    Map Editor Portal Cord Option Missing?

    In your RME/data/clientversion/items.xml does the tp have the attribute tag: <attribute key="type" value="teleport" /> ?
  9. imkingran

    Outfit Images - 10.99

    Thanks for the wonderful releases Gesior! You're really a big help!
  10. imkingran

    [USA] Middle Earth OT 10.00 | Unique Real Map | Join us today!

    [Changelog #2] Here is the list of recent udpates: New command: !share, to enabled shared experience even if you already have a battle symbol Powerful Imbuements & Prey re-rolls added to nugget shop As per the poll results, ammo and runes are now unlimited [Changelog #3] Here is the list of...
  11. imkingran

    TFS 1.x !vial or !flask talkactions

    @leandroluck Could you paste both the talkaction script you are using and how you implemented it in login.lua? There's a language barrier and it would be easier to help if I could see how you implemented the code.
  12. imkingran

    TFS 1.x !vial or !flask talkactions

    Are you using the script from this post? TFS 1.x !vial or !flask talkactions Also I don't see anywhere in your login.lua where you pasted the code: if player:getStorageValue(50000) == 1 then removePlayerVials(player:getId()) end
  13. imkingran

    [USA] Middle Earth OT 10.00 | Unique Real Map | Join us today!

    [Changelog #1] Added new task Roshamuul Creatures (weakened) Paladins will no longer have delay in shooting while using potions. Sea Serpents spawn increased by Captain Haba Oramond houses will now kick to the proper position. Bug where unlocked prey windows were being locked has been fixed...
  14. imkingran

    TFS 1.x !vial or !flask talkactions

    post your login.lua
  15. imkingran

    [USA] Middle Earth OT 10.00 | Unique Real Map | Join us today!

    :D Small community looking for friends! :D
  16. imkingran

    TFS 1.x !vial or !flask talkactions

    @leandroluck Oh okay, I misunderstood local baseStorage = 50000 local vials = {7634, 7635, 7636} function removePlayerVials(cid) local player = Player(cid) if not player then return end if player:getStorageValue(baseStorage) < 1 then return...
  17. imkingran

    TFS 1.x !vial or !flask talkactions

    local baseStorage = 50000 local vials = {7634, 7635, 7636} function Player:removeVials() for k,v in pairs(vials) do local count = self:getItemCount(v) if count > 0 then self:setStorageValue(v, count) self:removeItem(v, count) end end end...
  18. imkingran

    Lua Spell transform

    local combat = Combat() combat:setParameter(COMBAT_PARAM_EFFECT, CONST_ME_TELEPORT) local condition = Condition(CONDITION_OUTFIT) condition:setParameter(CONDITION_PARAM_TICKS, 10000) condition:setOutfit({lookType = 21}) -- rat arr = { {0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0}, {0, 0, 0...
  19. imkingran

    TFS 1.2 pushing people faster

  20. imkingran

    Lua Set outfit and remove outfit

    local condition = Condition(CONDITION_OUTFIT) condition:setTicks(10 * 1000) condition:setOutfit({lookType = 35}) player:addCondition(condition)
Back
Top