• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. J

    request Lua script TFS[1.2]

    using Player:onMoveItem function on script. Im looking for a script that block players to put different items on x container. For example Container id = 5050 Items allowed = 1203,1045,1345 if players try to add an item different of items allowed, a message appear "You cannot add this type of...
  2. J

    Quiver for paladins - tfs1.X

    any method to block for example items diferent of xxx id inside container->getID() == 1999 ? for example? because i tested here, i can put a normal backpack inside quiver container and work normally like a quiver.
  3. J

    Quiver for paladins - tfs1.X

    Will be good in this script for example of specifc x item id to work
  4. J

    Lua script help

    How can i check if isSplash() return true? This is possible?
  5. J

    Lua script help

    shovel script function onUse(player, item, fromPosition, target, toPosition) local tile = Tile(toPosition) if not tile then return false end if not target:isItem() then return false end if target:getId() == 231 then...
  6. J

    Lua How add more items script?

    yes i want exactly same thing for every item, but i did this and no work ;/ function onStepIn(creature, item, position, fromPosition) if creature:isPlayer() and creature:isInGhostMode() then item:getPosition():sendMagicEffect(16) return true end end
  7. J

    Lua How add more items script?

    then i need remove the item id inside the script too?
  8. J

    Lua How add more items script?

    function onStepIn(creature, item, position, fromPosition) if creature:isPlayer() and creature:isInGhostMode() then return true end if item:getId() == 1487 then item:getPosition():sendMagicEffect(16) end return true end how can i add more items in this...
  9. J

    Movement Lua script

    For TFS 1.2 Can someone help me to create a script? Item = 7652 If a player or monster pass over item 7652, appear the effect number 14 on item and the item will transfor on item 7978. Thanks advance
  10. J

    Nostalrius 7.7

    Anyone fixed the bug with exana pox? No work with the player walking...
  11. J

    Quiver for paladins - tfs1.X

    If use backpack on arrow slot this will work too, how work only quiver?
  12. J

    TFS 1.X+ Help with function RemoveItemOfType

    Are you using Nostalrius engine right? Can u explain better what u want do?
  13. J

    TFS 1.X+ Firstitems script don't work.

    Im using this server engine. https://github.com/TwistedScorpio/Nostalrius/blob/master/src/player.cpp#L1734 Looking this line, everything seems correct... the problem that is not occurring the change in the database, Lastloginsave and Lastlogout stay with number 1. Can someone tell me what...
  14. J

    OTClient Help Compilling dx9

    Using Microsoft Visual Studio 2015 I already download OpenGL-ES-SDK-master In this folder have include include(sdk) lib lib(sdk) sample x86 x86-64 I want know where i link these folders in project. I open Project - Properties In C/C++ General Addictional Include Directories: What i need...
  15. J

    TFS 1.X+ About a commit tfs repository

    i saw this commit there on Otland github... https://github.com/otland/forgottenserver/commit/e6f8a9a37a52ab94513a4082492f3016756ef366 Someone can tell me if this fix is for tfs 1.2 too or only 1.3? also can tell me, What do I have to do to test if my server has this crash for me too? i...
  16. J

    Lua script edit help

    thanks so much, worked
  17. J

    Lua script edit help

    i understand, but is because if i put the item on position 2 now for example then position 1 and 3 will only remove item and send magic effect.
  18. J

    Lua script edit help

    works, i think just need add more position in local pos_needed = how can i do it ?
  19. J

    Lua script edit help

    Up
  20. J

    Lua script edit help

    up
Back
Top