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

    GlobalEvents on TFS 0.2.8

    How can I make a globalevent work in TFS 0.2.8? I have no globalevents folder/xml, but I would still like to have features like healing spots, capture the flag events, talking teleports and such.
  2. Micool777

    Talkaction Doesn't Register with Params

    I'm using TFS 0.2.8, and I am wondering why the talkaction doesn't register when used with a parameter. When I use something like this: function onSay(cid, words, param) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, param) end It will only give me a message when there is...
  3. Micool777

    Lua Output to Server .exe

    I would like to know if there is some function that allows me to return a result in one of my lua scripts to the server's .exe (where script errors are returned and such). i.e. foo="test" sendMessagetoConsole(foo)
  4. Micool777

    Lua isPlayer(cid) not functioning correctly?

    function onStepIn(cid, item, position, fromPosition) if item.actionid > 30020 and item.actionid < 30100 then doPlayerSetTown(cid, item.actionid - 30021) elseif item.actionid == 1776 then local toparea={x = 445, y = 59, z = 7} local botarea={x = 445, y = 64, z = 7} local...
  5. Micool777

    Simple Script Error Fix

    local fromPos={x = 110, y = 78, z = 0} local toPos={x = 116, y = 84, z = 0} local firstpos={x = 113, y = 81, z = 6} --<very first lever beginning quest positions local secondpos={x = 116, y = 84, z = 6} --> function onUse(cid, item, fromPosition, itemEx, toPosition) local currentlevel =...
  6. Micool777

    Solved Vapus Custom Client Crash

    I have created a Custom Client for my OT at vapus . net, entered my no-ip site "armageddon.servegame.com" as the server address at port 7171, (the site redirection has been tested as working through an IP changer), but it crashes with a "critical error" each time I try to connect. Of course, it...
  7. Micool777

    Mass Delete

    I'm using SimOne's Map Editor to create a map. I want to keep real-tibia cities like Venore, which is all contained in 25,000 (x/y) - 33,000 (x/y). I want to delete everything but this approx. 8,000 square in the lower right corner of my map, how can I do this? - - - Updated - - - help please...
Back
Top