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

    Lua UPGRADE SCROLL [canary server]

    Data/scripts and change id to item you want to use it. Must be useable like runes.
  2. E

    Lua UPGRADE SCROLL [canary server]

    try: local UPGRADE_ITEM_ID = 44077 local MAX_TIER = 10 -- Maximum tier an item can be upgraded to local function upgradeItemTier(target) local currentTier = target:getTier() if currentTier >= MAX_TIER then return false, "This item has reached the maximum upgrade tier."...
  3. E

    Lua UPGRADE SCROLL [canary server]

    ~Sorry this was wrong script I will try again soon.
  4. E

    TFS 1.X+ How do I add custom effects to my client

    What client what version what engine? Maybe this? https://otland.net/threads/assets-editor-2-0.286901/
  5. E

    canary war system with green plates

    What you want for it?1
  6. E

    RevScripts ❤ ℱ𝓇𝑒𝑒 𝒮𝒸𝓇𝒾𝓅𝓉𝒾𝓃𝑔 𝒮𝑒𝓇𝓋𝒾𝒸𝑒 𝒯ℱ𝒮 𝟷.𝟻+ ❤

    Why this topic was opened again when Sarah closed it? And for some reasons scripts were deleted? Just wonder why.
  7. E

    C++ Is this safe?

    My server is not online yet to the public but for some reason I get logs from strange IP's. I decided to change my code to the code bellow related to RSA. Can somebody tell if this is safe? as now if somebody try to login from dodgy client he will be banned for 7 days I mean IP. Code: if...
  8. E

    OTC 13.32

    Is not alowed to share .exe here. I think.
  9. E

    C++ Help with monsters reactions to players.

    Can somebody help me find function which is responsible for monsters detecting player I am having trouble with mainly reaction of the creatures when player is detected on the screen it takes creature like a second to realize this. Where can I speed this up? TFS 1.X
  10. E

    TFS 1.X+ [error] [combatTypeToIndex] Combat type 255 is out of range

    I have found solution: my magicfield in items.xml was causing these errors: I may have to search more. <item id="2136" name="smoke"> <attribute key="type" value="magicfield"/> <attribute key="replaceable" value="0"/> </item> Thanks for all help! ;)
  11. E

    TFS 1.X+ [error] [combatTypeToIndex] Combat type 255 is out of range

    I have detected some issue with COMBAT type 255 which is COMBAT_NONE = 255 it seems to happen a LOT when creatures attacking player a specially it seems when creatures have to walk around obstacle or any solid object. Did anybody had issue like that or may know solution to it? Latest TFS...
  12. E

    Uncover Map Talkaction

    Well I have been trying to uncover my mini map properly, this seems to work. I did only little bit of searching but could not find solution so there you have some dodgy talkaction. It works just fine you can search any location you would like. screen: uncovermap.lua local mapUncover =...
  13. E

    Bag You Desire

    First make sure you use notepad ++ and take your entire server folder and throw at open notepad c++ then click on the server folder and search for itemid from any item that bag of desire gives. Easy.
  14. E

    Training Room

    Create small training rooms for player to teleport to and add positions to the script. Done Example screen: Script: local trainingTeleport = MoveEvent() local roomPositions = { Position(2142, 2300, 8), Position(2148, 2300, 8), Position(2154, 2300, 8), Position(2160, 2300, 8)...
  15. E

    RevScripts if vocation id 10

    I did this for my upgrade system. It was paniful.
  16. E

    C++ Simulate Online Players.

    Real reason is to test how server will react to this amount of players in some ways. Well it seems hate is all you think about. My server ain't online Yet.
  17. E

    C++ Simulate Online Players.

    Is there a way to simulate for example 500 players online? This would mean to create some sort of AI behavior too. So at least they move at random interval as well. I know I could launch mc clients but this is not what I am looking for. Maybe somehow place unique npcs that count as players...
  18. E

    Windows RSA question

    What do you mean?
  19. E

    Windows RSA question

    I was just wondering. What can anybody with knowledge do if they have your server RSA key? Can they hack your server or disturb or anything like that?
  20. E

    Make 1 out of X item always drop

    How about increasing chance?
Back
Top