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

    MANARUNE

    below <actions> and must be above </actions> <actions> <action itemid="2294" event="script" value="manarune.lua"/> </actions>
  2. S

    Lua TFS 1.2 !exit

    Here is final script fully working and calculated. Script made by RazorBlade, thank you. To make exhaust working you need this: talkactions/lib/talkactions.lua function checkExhausted(cid, storage, seconds) local v = exhaustion.get(cid, storage) if(not v) then...
  3. S

    MANARUNE

    Lack of info about your engine, we don't know your version etc. To make action script working you need to do 3 things. 1. data/actions/actions.xml edit and place there line with script, example: <action itemid="2294" event="script" value="manarune.lua"/> 2. data/actions/scrips/ and create new...
  4. S

    Compiling [TFS 1.2][Windows7] How to generate a crash dump for Windows MSVC 2013

    This is not working: https://otland.net/threads/generating-crash-dump-with-windows-microsoft-visual-c-2010-msvc-only.141725/#post-1364751 Using MSVC 2013 and TFS 1.2 ORTS Anyone knows how to make crash log on windows 7? I need to know what i should write in: C/C++->Preprocessor->Preprocessor...
  5. S

    Feature Reward Chest & Boss Reward [TFS 1.2]

    Maybe to kill 350 000 hp monster he used gm with option no loot when hit and when monster had 35 hp he killed it with normal character and thats why no loot on 350 000 hp monster? Create testing rune with 150k damage for normal character then see if it drops loot. This reward system is great...
  6. S

    [8.6] Lever that removes an item and has a timer.

    elseif don't need end so one should be removed. I don't see any use of it so i wont make for tfs 1.2 but i give you tabs and correct ends if you want ^^ local function reset(p) doTransformItem(getTileItemById(p, 1946).uid, 1945) doCreateItem(387, 1, {x=989, y=998, z=7}) --Item's ID AND...
  7. S

    Action [TFS 1.2] Stamina doll

    I made this script since i don't see any useful stamina doll. actions/actions.xml You can change 7377 to your item ingame, make sure this item is not used by other script in actions.xml. <action itemid="7377" script="staminaDoll.lua" /> actions/scripts/staminaDoll.lua --script made by...
  8. S

    Solved TFS 1.2 interesting bug with destroy.lua onDestroyItem, added video and ss to explain

    I tested twice code from TFS and it's still same error. That fixed my error, thank you Ninja!
  9. S

    Solved TFS 1.2 interesting bug with destroy.lua onDestroyItem, added video and ss to explain

    My lib/actions.lua has 670 lines and yours 41. I have lastest files from github. Btw. i tested your code and same error so please don't say its fault because of outdated files. I downloaded it few days ago.
  10. S

    Solved TFS 1.2 interesting bug with destroy.lua onDestroyItem, added video and ss to explain

    Someone create issue on github, i created issue and its closed because of invaild label. Dunno which label is correct.
  11. S

    Solved TFS 1.2 interesting bug with destroy.lua onDestroyItem, added video and ss to explain

    If i do: if not target or not Item(target):isItem() then it is erroring from every side. Lua Script Error: [Action Interface] data/actions/scripts/other/destroy.lua:onUse data/actions/lib/actions.lua:89: attempt to index a nil value stack traceback: [C]: in function '__index'...
  12. S

    Solved TFS 1.2 interesting bug with destroy.lua onDestroyItem, added video and ss to explain

    Lua Script Error: [Action Interface] data/actions/scripts/other/destroy.lua:onUse data/actions/lib/actions.lua:89: attempt to call method 'isItem' (a nil value) stack traceback: [C]: in function 'isItem' data/actions/lib/actions.lua:89: in function...
  13. S

    Solved TFS 1.2 clean houses of inactive players

    #edit up Yeah i saw it too, he edited script ^^ ----------------------- Ok last thing was easy to fix. Thank YOU very much for your help! At the end file looks like this: local config = { days = 15, --- days to clean houses --- log = true, } function onSay(player, words, param)...
  14. S

    [TFS 1.0] Disconnected From Server

    Others can connect to my server using global ip but i can't? If thats your problem you should do this: start > run > write: cmd and press enter write: ipconfig and press enter copy your IPv4 adress should look like this: Adres IPv4. . . . . . . . . . . . . : 192.168.0.5 Now go to and edit file...
  15. S

    Solved TFS 1.2 clean houses of inactive players

    I don't think so and i can't find it on forums, could you write it here please?
  16. S

    Solved TFS 1.2 clean houses of inactive players

    edit soon ~~ testing top script Lua Script Error: [TalkAction Interface] data/talkactions/scripts/houses.lua:onSay data/talkactions/scripts/houses.lua:27: attempt to call global 'doWriteLogFile' (a nil value) stack traceback: [C]: in function 'doWriteLogFile'...
  17. S

    Solved Bug Loot distance, more then 1

    If you switch to TFS 1.2, yes. I switched to TFS 1.2 and need to make new scripts for my needs.
  18. S

    Solved TFS 1.2 clean houses of inactive players

    Maybe someone who understands this script will reply. I was trying also this way: local config = { days = 30, --- days to clean houses --- log = true, file = "data/logs/cleanhouses.txt" } function onSay(player, words, param) local ns_query = db.storeQuery("SELECT houses.owner...
  19. S

    Solved TFS 1.2 clean houses of inactive players

    I did it and posted new error, what else you except me to write? is it really that hard to guess? For me connections to database and getting info from there is too hard atm and i need some help to understand it. local config = { days = 30, --- days to clean houses --- log = true...
Back
Top