• 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

    Jeff, where the f did you go?

    lies! Give jeff back!
  2. Snavy

    Jeff, where the f did you go?

    He was abducted by @Evil Puncker
  3. Snavy

    The request thread.

    drop the ban hammer on @Evil Puncker for bumping old thread
  4. Snavy

    MoveEvent [1.3] Zombski 🧠🧟‍♂️

    try math.fmod instead of math.mod
  5. Snavy

    Anything is possible

  6. Snavy

    Anything is possible

    1x > 2y 🤔 maybe not impossible but improbable
  7. Snavy

    Lua attempt to call method 'sendCancelMessage'

    not creature:isPlayer() trying to call sendCancelMessage on a non-player creature? XD That method seems to be only available for player https://github.com/otland/forgottenserver/search?l=C%2B%2B&q=sendCancelMessage
  8. Snavy

    TFS 1.X+ Check x players for x storage? TFS 1.3

    Try this local cfg = { topLeft = Position(1, 1, 1), bottomRight = Position(2, 2, 2) } -- local playersTable = {} local storageKey = 123456 for z = cfg.topLeft.z, cfg.bottomRight.z do for y = cfg.topLeft.y, cfg.bottomRight.y do for x = cfg.topLeft.x, cfg.bottomRight.x do...
  9. Snavy

    RevScripts TFS[1.3] action revscript lever shop(cant get it to work)

    I see several things; change shopitem = shop[item.aid], to shopItem = shop[item:getActionId()], reference: https://github.com/otland/forgottenserver/blob/master/src/luascript.cpp#L2178 The following line will not work as you expect for two reasons itemType = ItemType(ShopItem.id), a)...
  10. Snavy

    error when trying to create a character

    rank_id missing from players table
  11. Snavy

    Lua Error Script

    change if player:isPlayer() then to if player then
  12. Snavy

    Solved Character does not save error

    https://otland.net/threads/database-issue.275071/
  13. Snavy

    Summon tp to pz

    Yes, you need to compile sources after editing.
  14. Snavy

    C++ Error Consola

    https://github.com/opentibiabr/otservbr-global/blob/db41b7862e2e4ed4a20923f7feb0c2f173bcf703/src/game/game.cpp#L6835
  15. Snavy

    AAC How to make a still background ?

    Looks like you have kept inline style attribute, remove that part. <div id="ArtworkHelper" style="background-image:url(<?PHP echo $layout_name; ?>/images/header/background-artwork.jpg);" > change to: <div id="ArtworkHelper"> css: body { margin: 0px; padding: 0px; background-color...
  16. Snavy

    Summon tp to pz

    L510-513 seems unrelated to your problem. L495-508 is what you should remove. have you re-compiled after removing those lines?
  17. Snavy

    AAC How to make a still background ?

    Remove this style="background-image:url(<?PHP echo $layout_name; ?>/images/header/background-3.jpg);background-attachment: fixed;" add this to body in css file background-image: url('/layouts/tibiacom/images/header/background-3.jpg'); background-position: top center; background-attachment...
  18. Snavy

    Summon tp to pz

    maybe this part https://github.com/opentibiabr/otservbr-global/blob/afd9b13f49b23de84bb525f145390e23afc1db24/src/creatures/creature.cpp#L496
Back
Top