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

    Lua Quest Chests help

    local rewardChests = { [45000] = { -- 45000 as Action id on ALL 3 chests [45001] = {itemId = 1294, count = 100}, [45002] = {itemId = 2394, count = 1}, [45003] = {itemId = 2374, count = 1}, storage = 45000 }, [45001] = { -- Action id [45004] =...
  2. Himii

    [8.6] Remere's Map Editor

    You can change client version for your map when its created
  3. Himii

    Lua Task Count

    Bump
  4. Himii

    Lua Task Count

    Tfs 1.4.2 I've tried to get this to count properly for a while now, when i kill a creature alone i get 1 count per kill but when theres 2 or more players it goes wild, i can get everything from 1 to 6 count for each kill. Can anyone explain why this could happen? local config = { ['nomad']...
  5. Himii

    Lua Quest chest help

    If the script looks like this, add it to data/actions/scripts and add to action.xml: <action fromuid="45001" touid="45003" script="script_starring_weapon.lua" /> <action actionid="45000" script="script_starring_weapon.lua" />
  6. Himii

    Lua Quest chest help

    (For the first script you posted) You dont want anything in your action.xml, just put the script in data/scripts/actions And if you want to only be able to use 1 of 3 chests you are configuring it wrong local rewardChests = { [45000] = { -- 45000 as Action id on ALL 3 chests [45001]...
  7. Himii

    Help to compile

    Just add under your #includes shuld work
  8. Himii

    Help to compile

    tools.h add: template < typename E > auto format_as(E e) { return fmt::underlying(e); }
  9. Himii

    OTClient TFS 1.5 8.60 Downgrade - Can't log into my server

    Try "localhost" instead of 127.0.0.1
  10. Himii

    Lua Making the damage scale based on player's skill stats.

    Search for COMBAT_FORMULA on here, you will find alot
  11. Himii

    Lua item casts spell words

    Do you want a weapon to use a spell instead of autoattack or use item to cast spell?
  12. Himii

    Lua How Add/AUTO REBIRTH IS AUTOMATIC!

    Just looking at the talkaction, no idea of your resetsystem though: function onAdvance(player, skill, oldLevel, newLevel) if newLevel > 999 then ResetSystem:execute(player) end end Edit: Not recommending this, doesnt sound like a good thing to have on your server. But according...
  13. Himii

    Lua How Add/AUTO REBIRTH IS AUTOMATIC!

    You want the player to rebirth instantly when they go from 999>1000?
  14. Himii

    OTClient i cant solve this problem i dont know what group id

    I would suggest begining to work with something else Dont know your experience but if you are new i would say start with something quite clean, there is alot of bad datapacks
  15. Himii

    Buying Houses using ZNOTE AAC or MyAAC

    I believe Forkz mean isnt it easier to just use !buyhouse ingame if its just for 2 people
  16. Himii

    Compiling is it possible to compile otlcient in ubuntu to use in windows?

    Possible: probably. But its probably easier to fix your errors on windows than trying to compile an exe file on linux
  17. Himii

    Server not found

    84.115.236.27
  18. Himii

    Server not found

    Same results with normal ip adress?
  19. Himii

    OTClient (TFS 1.5) Connecting to server with Tibia 12.87

    Hello Havnt worked alot with 1.5 yet myself but have you looked at Nekiros Rcc Editor? Open source and shuld be able to extract the assets
  20. Himii

    C++ TFS 1.2 downgrade by Ninja show healing

    Replace it in Game.cpp
Back
Top