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

    Lua StepIn animation (55) on x y z (only one)

    How to make script on SS? TFS 0.4, Tibia 8.60 @edit where i found TFS lua documentation?
  2. Szafi

    Solved Use on map and add mark's

    Thanks for help - all worked script on TFS 0.4 : Item ID: 1956 Actions: <action itemid="1956" event="script" value="minimapa_klienta/marki.lua"/> Lua: local config = { storage = 9432, version = 1, -- Increase this value after adding new marks, so player can step again and...
  3. Szafi

    Solved Use on map and add mark's

    Can say example?
  4. Szafi

    Solved Use on map and add mark's

    2 line: [/code]storage = 9432,[/code] what is it? and how to remove item? I add doRemoveItem(item.uid,1956) and dont work local config = { storage = 9432, version = 1, -- Increase this value after adding new marks, so player can step again and receive new map marks marks = {...
  5. Szafi

    Solved Use on map and add mark's

    Hello, i use http://otland.net/threads/map-marks.36915/ how convert to "actions"? Item ID: 1956 (Map) Client: TFS 0.4, 8.60 How to convert script: use item ID: 1956 ---> all marks add to minimap local config = { storage = 9432, version = 1, -- Increase this value after adding new...
  6. Szafi

    Lua YALAHARIGHOST effect on death

    Good :D Thanks - worked
  7. Szafi

    Lua YALAHARIGHOST effect on death

    My bad again, worked on player's and monsters. How to fix? Need effect only on players --->
  8. Szafi

    Distable write window in book

    Thanks, im newbie lua programming. Make first scripts. Thanks
  9. Szafi

    Distable write window in book

    I use book, script add me premium time and open book writeable window. How to distable open window and run only script?
  10. Szafi

    Lua YALAHARIGHOST effect on death

    yes :P function onKill(cid, target) doSendMagicEffect(getCreaturePosition(target), CONST_ME_YALAHARIGHOST) doSendAnimatedText(getCreaturePosition(target), "Own3d!", TEXTCOLOR_RED) return true end Ok, worked - thanks for "road"
  11. Szafi

    Lua YALAHARIGHOST effect on death

    Don't worked, errors in engine 0 :/ @edit!!!! My bad, worked How to text Own3d! and CONST_ME_YALAHARIGHOST viev to all player's? And Text "Own3d!" that was red all the time?
  12. Szafi

    Lua YALAHARIGHOST effect on death

    Hello i search more script and all script is now worked on my TFS 0.4 :/ http://otland.net/search/684445/?q=Effect+on+Death&o=relevance&c[node]=132 Add to login lua: registerCreatureEvent(cid, "own3d") Add to creaturescript.xml <event type="kill" name="own3d" script="own3d.lua"/>...
  13. Szafi

    Distable write window in book

    Hello. I use book and show me writeable window. How to discable window to click this? Item ID: 8983 sorry for my english. Thanks for help. script function onUse(cid, item, frompos, item2, topos) if item.itemid == 8983 then doPlayerAddPremiumDays(cid, 31) doRemoveItem(item.uid,8983)...
  14. Szafi

    How to fix Ramp

    Postion is better, dont worked
  15. Szafi

    How to fix Ramp

    how to improve 2sqm to 1sqm?
  16. Szafi

    Solved WTF? Forever aol?

    Worked. Lol -> (sorry for sound, I listened to the radio)
  17. Szafi

    Solved WTF? Forever aol?

    Have 0.4 sorry for bad info Source: http://otland.net/threads/8-6-tfs-0-3-0-3-7-r5916-v8-60.178246/
  18. Szafi

    Solved WTF? Forever aol?

    <?xml version="1.0" encoding="UTF-8"?> <creaturescripts> <event type="login" name="PlayerLogin" event="script" value="login.lua"/> <event type="channelrequest" name="Ban_Type" event="script" value="ban/type.lua"/> <event type="channelrequest" name="Ban_Action" event="script"...
  19. Szafi

    Solved WTF? Forever aol?

    deathLostPercent = 10
  20. Szafi

    Solved WTF? Forever aol?

    Thanks :) local config = { loginMessage = getConfigValue('loginMessage'), useFragHandler = getBooleanFromString(getConfigValue('useFragHandler')) } function onLogin(cid) local loss = getConfigValue('deathLostPercent') if(loss ~= nil) then doPlayerSetLossPercent(cid...
Back
Top