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

    [OTBR]Bomberman Event

    Avoid spamming. I know that there are some bugs in the code and I've added it to my todo list. Try to reproduce the crash on official TFS. If it doesn't crash, then I will probably not assist you with that part.
  2. Snavy

    RevScripts Lever Shop, change payment to item and amount

    Looks like I was tired as well 🤣
  3. Snavy

    RevScripts Lever Shop, change payment to item and amount

    Are you trying to remove 1x2294 ? -- Script by Klonera/Joriku local testAction = Action() -- this is our header, the first thing we have to write (except for configuration tables and such) local c = { spellName = "Increment Super Mana", item = 2294, price = 1 } function...
  4. Snavy

    [OTBR]Bomberman Event

    I have read you type this over several places but have a hard time understanding the problem. There seems to be bugs in bomberman code 🤔
  5. Snavy

    AAC MyACC make the website picture stay on scrolling?

    Make these changes: Add to body in basic.css: background-image: url('/templates/tibiacom/images/header/background-artwork.jpg'); background-attachment: fixed; background-size: 100% 100%; Remove from <div id="ArtworkHelper" ... background-image...
  6. Snavy

    Compiling Error when compiling

    could you try the following https://stackoverflow.com/a/46805870
  7. Snavy

    Compiling Error when compiling

    See if this works # uninstall current cmake package apt-get purge cmake apt-get autoremove # update package list apt-get update apt-get upgrade # install cmake apt-get install cmake # check version cmake --version
  8. Snavy

    Compiling Error when compiling

    Try installing newer version apt-get install cmake=3.16
  9. Snavy

    TFS 1.X+ Spell

    https://github.com/otland/forgottenserver/wiki/Compiling-debug-binaries-in-cmake Could you compile with debug symbols
  10. Snavy

    Mwall Bridge Uer Rune

    local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_ENERGY) setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, FALSE) setCombatParam(combat, COMBAT_PARAM_CREATEITEM, 1497) local arr = { {0, 1, 0}, {0, 3, 0}, {0, 1, 0} } local area =...
  11. Snavy

    Mwall Bridge Uer Rune

    local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_ENERGY) setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, FALSE) setCombatParam(combat, COMBAT_PARAM_CREATEITEM, 1497) local arr = { {0, 1, 0}, {0, 3, 0}, {0, 1, 0} } local area =...
  12. Snavy

    Mwall Bridge Uer Rune

    Tested on 0.4 - 3777, Works. local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_ENERGY) setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, FALSE) setCombatParam(combat, COMBAT_PARAM_CREATEITEM, 1497) local arr = { {0, 1, 0}, {0, 3, 0}, {0...
  13. Snavy

    Mwall Bridge Uer Rune

    Show the script
  14. Snavy

    Mwall Bridge Uer Rune

    a) in config.lua set removeRuneCharges to true b) if u don't want charges to be removed from all runes, then add local runeId = 2293 local chargesToRemove = 1 before for i = 1, #t do and then add: doPlayerRemoveItem(cid, runeId, chargesToRemove) -- tries to remove item from player inventory...
  15. Snavy

    Lua Transform script

    local startCast = TalkAction('!cast') function startCast.onSay(player, words, param) if player:startLiveCast(param) then player:sendTextMessage(MESSAGE_INFO_DESCR, "You have started casting your gameplay.") else player:sendCancelMessage("You're already casting your...
  16. Snavy

    Linux RME 3.7 with 12.5 items for linux mint

    Which version of wxWidgets do you currently have?
  17. Snavy

    AAC MyACC make the website picture stay on scrolling?

    add this to the stylesheet rule responsible for background image: background-attachment: fixed; background-size: 100%;
Back
Top