• 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!

Recent content by Booker

  1. Booker

    Compiling OTclient, impossible!

    Humm, interesting. I'll try again later with 2k17, although compiling with 2k15 didn't return errors at all
  2. Booker

    Compiling OTclient, impossible!

    idk, it gives a milion errors and doesn't compile, even tho i did the exact same lib/inc importing as in vs 2015. Anyway, it's solved now :)
  3. Booker

    Compiling OTclient, impossible!

    Thank you @Mr Trala, it actually works! I've missed the C++ components. Still, i don't understand why MSVC 2017 doesn't do the job, do you have an explanation ? For the ones that are trying to compile too: after successful compilation, remember to copy the .dll files that are in otclient-sdk to...
  4. Booker

    Compiling OTclient, impossible!

    @Mr Trala , did that and nothing. All i get is 1 error now: Question is, are my configs correct?
  5. Booker

    Compiling OTclient, impossible!

    I will give it a shot. Thanks, but i already watched that, it doesn't work. It gives me the same errors.
  6. Booker

    Compiling OTclient, impossible!

    Hello. So, i'm trying to compile OT Client and it seems impossible to accomplish this frustrating task. I tried edubart's tutorial and searched, searched and searched with no success. I just get a thousand of errors at the beginning to the end. I'm using MSVC 2017, windows. Already tried...
  7. Booker

    New generic slot in a MiniWindow

    Ok, changed. Just to add, i put this in player.lua: Old: InventorySlotOther = 0 InventorySlotHead = 1 InventorySlotNeck = 2 InventorySlotBack = 3 InventorySlotBody = 4 InventorySlotRight = 5 InventorySlotLeft = 6 InventorySlotLeg = 7 InventorySlotFeet = 8 InventorySlotFinger = 9...
  8. Booker

    New generic slot in a MiniWindow

    Didn't make any changes to OTC sources yet. My code is inside the spoiler on the thread. Apparently, this is the error i get from OTC: The part of the code: function onInventoryChange(player, slot, item, oldItem) local itemWidget = partnerWindow:getChildById('partnerSlot'..slot) if item...
  9. Booker

    New generic slot in a MiniWindow

    Hello and thanks for trying to help =] Made all the changes and compiled with no errors, really appreciate. On OTC: in const.h, there are 4 more "extra" slot types : enum InventorySlot { InventorySlotHead = 1, InventorySlotNecklace, InventorySlotBackpack...
  10. Booker

    New generic slot in a MiniWindow

    What code do u mean? My TFS is 1.2, i did not modify anything server-side related to this i am trying to do
  11. Booker

    New generic slot in a MiniWindow

    Hello, i'm making my first scripts in lua by my own and got to an issue: i'm trying to create a window where there are 3 slots and only 1 type of item can be assigned to it, it actually looks like this right now: The problem is, when i try to place any item on them, i get the error: "You cannot...
  12. Booker

    TFS 1.X+ Creature() method with custom monsters?

    Yes! Working. Didn't know about MonsterType. Thank you @Vulcan_ , for the help and for those useful docs!
  13. Booker

    TFS 1.X+ Creature() method with custom monsters?

    Hey, thanks for the reply. Actually, i don't need to create(place) a monter in the game, i just need to instance it inside my code block, so i can get his name, health, etc., by passing in i'ts name or cid. src: otland/forgottenserver
  14. Booker

    TFS 1.X+ Creature() method with custom monsters?

    Hello, i'm using TFS 1.2 and i just cant get to return a monster instance using Creature() on a custom made monster passing in it's name as param. This works: local monster = Creature("rabbit") monster:getName() >> Rabbit This doesn't: local monster = Creature("myMonster") monster:getName() >>...
  15. Booker

    Dat Editor for tibia 10

    Hi, these are the latest 0.4 versions of object builder: Dropbox - ObjectBuilder Supports up to 10.56
Back
Top