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

    Action Chest System Multi-Item support.

    You wrote it. OK. I just want to say that you should not post scripts that already exist and are better then yours [your is bugged, may not give items, you check capacity, but what if player doesn't have place in backpack?]. Now someone will make map/script that use your scripts. After year...
  2. P

    [8.7] The Forgotten Server v0.2.9 (Mystic Spirit)

    Can you post error message? I must know lines and files names. I can't run tibia on my pc.
  3. P

    [8.7] The Forgotten Server v0.2.9 (Mystic Spirit)

    function NpcHandler:onWalkAway(cid) if(not isPlayer(cid)) then self:releaseFocus(cid) end if(self:isFocused(cid)) then local callback = self:getCallback(CALLBACK_CREATURE_DISAPPEAR) if(callback == nil or callback()) then...
  4. P

    [Talkaction] + [Globalevent] /save command and auto save script. (Simple).

    How can it execute LUA functions in other order?!
  5. P

    all msg to mysql

    Easiest (only?) way is source edition. Contact with me if you need help with it.
  6. P

    Npc very short script

    Try this: local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid)...
  7. P

    Gesior 0.3.8

    $config['site']['newchar_towns'][0] = array(5); You got something like this in config/config.php There you set ID of start city.
  8. P

    Action Chest System Multi-Item support.

    Are you reta...? It's on forum from 2 years (9th November 2008 16:21): http://otland.net/f81/advanced-quest-chest-14929/ In this script you can set unlimited number of items, backpack with items inside and even items with action ids [like keys to doors] It's even in TFS 0.3 and 0.4 scripts! (Elf...
  9. P

    Lua Function doAbsorbCombatPercentage && getCombatPercentageAbsorbed

    or better write LUA class for custom conditions :)
  10. P

    PayPal Script [RELEASE]

    Do not use this script it's bugged
  11. P

    [Thais War Map] [Team quests] 8.54

    Nice map. I will use it on my Thais war server :) Are you author of Thais map? :P
  12. P

    [8.7] The Forgotten Server v0.2.9 (Mystic Spirit)

    CAN NOT EDIT POST ABOVE (bugged!) Replace with: function NpcHandler:onWalkAway(cid) if(not isPlayer(cid)) then self:releaseFocus(cid) end
  13. P

    [8.7] The Forgotten Server v0.2.9 (Mystic Spirit)

    data/npc/libs/npcsystem/npchandler.lua replace: function NpcHandler:onWalkAway(cid) with: function NpcHandler:onWalkAway(cid) if(not isPlayer(cid) then self:releaseFocus(cid) end Fast fix. Tala~ should find where is bug and fix it.
  14. P

    [8.7] The Forgotten Server v0.2.9 (Mystic Spirit)

    Same problem is on 0.3.6 with some NPCs (bugged npcs). I fixed it, but I don't remember what was wrong :S
  15. P

    Monster stop moving for x time

    function stopMonster(cid, time) doCreatureSetNoMove(cid, true) addEvent(function(monster) if(isCreature(monster)) then doCreatureSetNoMove(monster, false) end, time * 1000, cid) end It should work too. Shorter :P
  16. P

    All Chat window to mysql

    Maybe set 'channel' log="yes" in channels.xml and add globalevent that load channel .log file and add all to mysql (and read from mysql texts written by www users and 'sendToChannel') ;) If you have fast HDD and no problems with lags :P
  17. P

    [Talkaction] + [Globalevent] /save command and auto save script. (Simple).

    Did they change anything in TFS? Old script: function onSay(cid, words, param, channel) if getPlayerGroupId(cid) > 3 then doBroadcastMessage("Start server save.") doSaveServer() doBroadcastMessage("Saved.") return true end does not work fine?
  18. P

    [ADVANCED] Auto Updater

    Go: otland.net->Open Tibia->Jobs and find guy who offer scripting, he posted screen with updater.
  19. P

    openShopWindow

    useful for what? Why do you have to make it 'action', not 'npc'?
Back
Top