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

    Help with function

    I need to transform this TFS 1.x function to OTHire (7.72). local function getMoneyAmount(position) local moneyAmount = 0 for _, item in ipairs(Tile(position):getItems()) do local itemId = item:getId() if itemId == ITEM_GOLD_COIN then moneyAmount =...
  2. Elpulpo

    7.6 Gambler NPC

    I'd like to have a gambler npc on my server, but in 7.6 there is no dice. Can anyone make a script for this version?
  3. Elpulpo

    Key 4501 ?

    Anyone knows where to use key 4501?
  4. Elpulpo

    What is for you the perfect shop?

    I want to make a long term server, and one of the most important things I look on a server to join is not to have a pay to win shop, but not all the players think the same way. Most successful servers only have premium time, then there are another servers who have miriads of items, the #1 in...
  5. 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...
  6. 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?
  7. 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
Back
Top