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

Recent content by matthew123456

  1. M

    RevScripts script request summon trainer

    local config = { [6579] = {levelRequired = 10, creature = "Training Machine", isSummon = false}, } local actions_createCreature = Action() function actions_createCreature.onUse(player, item, fromPosition, target, toPosition, isHotkey) local index = config[item:getId()] if...
  2. M

    [12.x] OTServBR-Global

    yea the issue is all the links say 404 not found
  3. M

    [12.x] OTServBR-Global

    anyone know where to get the tools link not working or at least the map editor and client?
  4. M

    [USA] [12.64][Global Map] Lucian OT

    IP: lucian.servegame.com Port: 7171 Client:12.64 Download on our Website Uptime: 24/7 Hosted in: USA Dedicated PC For Host Website:lucian.servegame.com Exp rate: 1-8 x14 9-25 x13 26-50 x12 51-100 x11 101-200 x10 201-300 x9 301-400 x8 401-500 x7 501-600 x6...
  5. M

    RevScripts how to add level requirement to buyhouse script

    local buyHouse = TalkAction("!buyhouse") function buyHouse.onSay(player, words, param) local housePrice = configManager.getNumber(configKeys.HOUSE_PRICE) if housePrice == -1 then return true end if not player:isPremium() then player:sendCancelMessage("You need a...
  6. M

    [TFS 1.3] [Revscriptsys] Free Lua scripting service - Post your requests! Let's learn it together!

    could someone convert this please local config = { idcoin = 24774 } function onUse(cid, item, fromPosition, itemEx, toPosition) local player = Player(cid) local item = Item(item.uid) if player:getItemCount(config.idcoin) > 0 then local coinplayer =...
  7. M

    [12.x] OTServBR-Global

    where are the door ids at for actions there is some doors that aren't working im trying to fix them
  8. M

    RevScripts convert action to revscripts

    local config = { idcoin = 24774 } function onUse(cid, item, fromPosition, itemEx, toPosition) local player = Player(cid) local item = Item(item.uid) if player:getItemCount(config.idcoin) > 0 then local coinplayer = player:getCoinsBalance()+item:getCount()...
  9. M

    [12.x] OTServBR-Global

    ho do i register new scripts now? such as actions since its not registered in an xml file anymore?
  10. M

    [USA] [12.40] [Global Map] [Custom] Striker OT

    its just a bad shortcut just open the folder look in bin and open the client
  11. M

    [USA] [12.40] [Global Map] [Custom] Striker OT

    did you download the new one it seems to work for everyone else
  12. M

    [USA] [12.40] [Global Map] [Custom] Striker OT

    ill check and see what the problem is i have fixed the client and re uploaded thank you for letting me know what is your name in game ill give you a reward
  13. M

    Lua magic wall timer help with script

    local combat = Combat() combat:setParameter(COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_ENERGY) function onCreateMagicWall(creature, tile) local item = Game.createItem(ITEM_MAGICWALL, 1, tile) item:setAttribute(ITEM_ATTRIBUTE_DURATION, math.random(14000, 20000)) end...
Back
Top