• 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. Unknown Soldier

    Lua Boss area entrance - crash

    Thank you for reply. Well, to be honest I have no idea how could I reverse that order. But looking at the error window, it made me thinking, that if it is not about the thing you mention, this could be related to reward bag item, which is container, and to which I gave decayto="0" attibute in...
  2. Unknown Soldier

    Lua Boss area entrance - crash

    Okay, finally got it to crash. No idea if it is related to mentioned script, I have doubts. But how do I get the detailed text file that can usually be seen in other threads? I have already saved the .dmp file.
  3. Unknown Soldier

    Lua Boss area entrance - crash

    Thank you for tips, valuable things, I will update the script. I will be back as soon as I have crashlog, but usually it takes over an hour to reproduce it, so might be a few days.
  4. Unknown Soldier

    Lua Boss area entrance - crash

    Hello, recently, after some chanegs in my script, I have noticed some crashes. Crash happens ocassionally while using the following script, so entering the boss area, usually after a fight or at the very end of it, or few seconds after player leaves the arena and enters it again. I blame...
  5. Unknown Soldier

    C++ Loot Channel System

    For anyone that will look for some answers in the future. TFS 1.4.2, and probably most of 1.X Make sure that you have public="1" in chatchannels.xml, just to avoid "Player joined the channel" <channel id="9" name="Loot" public="1" script="loot.lua" /> In order for the message to appear...
  6. Unknown Soldier

    [list] CIPSoft lazy solutions

    There is one morrre, it seems that they copy that... what a save of time! 🧐
  7. Unknown Soldier

    The Unknown | Mapping Thread

    [278] [279] [280] [281] [282]
  8. Unknown Soldier

    [OTClient Mod] Loot stats

    I am also having that problem, it doesn't recognize that folder, tried also changing folder permissions... no luck, how about you?
  9. Unknown Soldier

    [TFS 1.5] ⚡ Bounce Spell ⚡

    Love it so much! 😍 Can you consider creating also a version for monsters?
  10. Unknown Soldier

    [France][13.20] Noveria Online - 1st July 2023 - FULL LAUNCH!

    The big advantage of this server is that its' community does not like toxic ppl. Seems like you had some problem or tried being toxic or offensive or anything else than just enjoy playing, otherwise nobody would do anything to you. If thats true, I'm happy to see that you're out!
  11. Unknown Soldier

    The Unknown | Mapping Thread

    Primal Jungle [273] [274] [275] [276] [277]
  12. Unknown Soldier

    The Unknown | Mapping Thread

    Thanks! To me the library corridors surrounded with clouds (that is the snow/fog combo) sounds and looks cool, and it is my favorite part out of the all sections, but I guess I won't be able to convince you with any additional gif... 🤪 [272]
  13. Unknown Soldier

    The Unknown | Mapping Thread

    Secret Library divided into elemental sections, including new ones like holy for example. [258] [259] [260] [261] [262] [263] [264] [265] [266] [267] [268] [269] [270] [271]
  14. Unknown Soldier

    TFS 1.X+ Leech bug again, using mana potion returns health and additional mana

    I came across the same pull request, but those fixes were implemented for TFS 1.3 as far as I remember, so TFS 1.4.2 already have them. Anyway, using target != caster helped :) I appreciate your help! It has to be fixed in official TFS too.
  15. Unknown Soldier

    TFS 1.X+ Leech bug again, using mana potion returns health and additional mana

    Hello, Tried to search for solution on github as well as on OTLand but couldn't find any fix for that, but I am sure many people already noticed that. Have this bug been already solved? Drinking a mana potion in TFS 1.4.2 while having mana and/or life leech condition(s), beside adding...
  16. Unknown Soldier

    TFS 1.X+ Weapon script with area effect and damage

    Hello, so I was messing with weapon scripts, and made a script as below. However that is not the intention, not the result that I want. The idea: if players has specific weapon equipped, then there is x% chance to trigger an area effect/spell that will damage also nearby creatures. In other...
  17. Unknown Soldier

    [France][13.20] Noveria Online - 1st July 2023 - FULL LAUNCH!

    I highly recommend it, I played the beta and really enjoyed it, what I would like to mention is that I am not a big fan of evo servers, but somehow I still found it very enjoyable. I think that not only evo fans would find it entertaining. Besides, the number of features and thus the amount of...
  18. Unknown Soldier

    Lua Get item count/fluid type on a specific tile

    function onUse(player, item, fromPosition, target, toPosition, isHotkey) local itemId = 33883 local position = Position(2098, 1238, 10) local tile = Tile(position) if not tile then return end if item.itemid == 1945 then item:transform(item.itemid == 1946 and 1945 or 1946) local items =...
  19. Unknown Soldier

    Lua Get item count/fluid type on a specific tile

    Thanks for quick reply! It's almost working! ^^ Made a lever script using your code, but it doesn't go inside last "if", so after checking fluid type, as a result "cc" is not printed. Where could be an error? function onUse(player, item, fromPosition, target, toPosition, isHotkey) local itemId...
  20. Unknown Soldier

    Lua Get item count/fluid type on a specific tile

    Hello, I thought it would be pretty simple to get the position and amount of items on the ground, but got no results. So the thing is, that I want to check if a fluid container (a vase for instance) at certain position is filled with certain fluid like water or blood or whatever fluid type it...
Back
Top