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

    Compiling [Debian 7.1] [0.3.6] undefined reference to symbol 'pthread_getspecific@@GLIBC_2.0'

    I get the following error when I try to compile 0.3.6 Crying Damson on Debian 7.1 g++ -I/usr/include/libxml2 -I/usr/include/lua5.1 -D__USE_MYSQL__ -D_THREAD_SAFE -D_REENTRANT -Wall -g -O1 -o theforgottenserver actions.o allocator.o baseevents.o beds.o chat.o combat.o condition.o...
  2. mpa

    Quick question

    Hypothetically (if you had the skills), What would be the best way to go about setting up a 8.0 server; download the TFS version that was made for it, or compile my own from the newest version? Sorry if this is a noob question but I just got started with c++.
  3. mpa

    Quick question

    Hypothetically, What would be the best way to go about setting up a 8.0 server; download the TFS version that was made for it, or compile my own from the newest version?
  4. mpa

    Suggestion Highlight bbcodes

    I think you should add highlighting as they did on otfans.net OTFans: New highlight bbcode - OpenTibia Fans
  5. mpa

    TalkAction Broadcast for Premium Players

    If a player has premium account, he can broadcast every five minutes. Credit to Keraxel for helping me with exhaust :thumbup: -- by mpa 2009-02-07 function onSay(cid, words, param) local exhaustTime = 5 * 60 local message = "" .. getCreatureName(cid) .. " [" .. getPlayerLevel(cid) ...
  6. mpa

    [Request] Tutorial about exhaust

    I haven't seen any good tutorials on how to add exhaust to a talkaction, item usage, etc. I would really appreciate if someone took the time to write a tutorial about this. Best regards, mpa
  7. mpa

    Which one?

    Which one is correct? if getPlayerStorageValue(cid, 8899) == TRUE or if getPlayerStorageValue(cid) == 8899
  8. mpa

    Lua Timer on Teleportscroll

    This timer on the teleportscroll isn't working. When I use it i only get the cancelmessage "You can only use this scroll once every hour." What's wrong with the timer? function onUse(cid, item) local compareTime = 60 * 60 * 1000 local scroll = 1959 local currentValue =...
  9. mpa

    luaGetPlayerStorageValue(). Player not found

    What is wrong? error: luaGetPlayerStorageValue(). Player not foundlocal compareTime = 60 * 60 * 1000 local scroll = 1959 local currentValue = getPlayerStorageValue(cid, 9798) if currentValue == -1 then currentValue = os.time() end function onUse(cid, item) if...
  10. mpa

    Action Extra exp rate scroll

    This is my first (working) script! I've tested it and it works. When you use poweritem you will get 5x extra exprate. local poweritem = 1958 local rate = 5 function onUse(cid, item) if doPlayerRemoveItem(cid, poweritem, 1) == 1 then...
  11. mpa

    Will this work?

    I have just started with lua and I have no idea if this will work (it is my first): dofile(getDataDir() .. "lib/exhaustion.lua") local item = 2263 local time = 10 local town = getPlayerMasterPos(cid) local exhausttime = 60 * 60 * 1000 local storevalue = 4850 function...
  12. mpa

    [Request] Lua school

    I just started to learn lua. You learn alot by reading tutorials and shit but you learn even better if you do like in real school. A teacher that gives you homework! So it would be very fun if a luaPro here on otland became a teacher. He would give us like 1 homework / week or whatever he...
  13. mpa

    Lua Desintegrate remove walls

    The desintegrate rune can be used to remove walls!! How can you change this? Here is the script: local function doRemoveObject(cid, pos) pos.stackpos = 1 local object = getThingfromPos(pos) if(object.uid > 65535 and isCreature(object.uid) == FALSE and isMovable(object.uid) == FALSE and...
  14. mpa

    Windows Table Crash

    My player_vip table crashed. Why did it crash? Could it be because we had a power cut? Can you repair a crashed table? I got some error messages in the conosle: Something about player_vip table has crashed and "Error:Couldn't save player [name]"
  15. mpa

    Windows Old outfits

    Hello! I want to have the 7.6 outfits, items and graphics to my 8.4 client. Is this possible to do? Thanks, mpa
  16. mpa

    Windows Premium Account

    I want players with premium accounts to skip waiting list. Any simple solution for this?
  17. mpa

    Lua Serverinfo

    When I try to execute /serverinfo i get the error message "expRate a nil value". So /serverinfo does not work in 0.3?
  18. mpa

    loginOnlyWithLoginServer?

    I found this option in config.lua, what does it do? loginOnlyWithLoginServer = "no"
  19. mpa

    Lua Raids

    When I try to execute a raid in-game with a god, it doesn't work and I get this message:
  20. mpa

    Leaseweb

    Hello! I need some help choosing a dedi. I have no idea what server to choose @ leasewebs.. The server should be able to hold 300 players without lags + xampp. As cheap as possible ofc :) How much data traffic Volume? What processor? Do you need server control panel? Other things you need to...
Back
Top