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

    Lua I wanted a reflect stone script 0.4 8.60

    tested, working, thanks.
  2. D

    TFS 1.X+ Kill task error in function onKill

    heyo, local monster = config[target:getName():lower()] this pointing to table like config["necromancer"] if any monster will be killed and he is not in that list it will return nil, simple check if "monster" check exsists will fix it nvm i am blind, i see ure solved it already.
  3. D

    TFS 1.X+ TFS 1.2 How can i change this and add items to creature and not players

    move your script to onDeath event, there is returned corpse as argument and you can directly use corpse:addItem(xxxx, 1)
  4. D

    C++ Simulate Online Players.

    Yeah for sure and i am a santa claus, anyway i think @Gesior.pl was doing similar project, but cant find this, it was released to public usage for otland users.
  5. D

    Compiling Compiling error tfs 1.4.2 FMT and STD

    use vcpkg manifest and downgrade FMT version, that resolve 95% of problems with compiling raw tfs version
  6. D

    TFS 1.X+ task and daily system I want it to be counted for all players in the party

    in function function creatureEvent.onKill(creature, target) you are supposed to do a loop with a whole party like local members = party:getMembers() then you can do simple loop like for _, member in pairs(members) do and here you can add your code about task count, also remember that in party...
  7. D

    Xampp got aids and it ruined phpmyadmin

    i had one time this problem, do not blame xampp blame fucking microsoft with their cringe forced updates that destroy non stop performance, settings that user selected, some apps configs and many others thing's.
  8. D

    Compiling TFS 1.5

    or it will print another missing library, but atleast he move on with this one
  9. D

    Compiling TFS 1.5

    it can't find the boost locale, give a try: 64bit: .\vcpkg install --triplet x64-windows boost-locale 32bit: .\vcpkg install boost-locale
  10. D

    Tibia API update

    useless, 90% of structure changed, topic shouldbe called "Looking for someone who will re-write whole api to be compatible with tibia 12+."
  11. D

    OTClient Attributes window for Otclient

    CSS Tutorial (https://www.w3schools.com/css/ (otui files are very similar to css, almost 1:1) https://otland.net/threads/tutorial-mods-creating-modules-with-extended-opcode.270062/
  12. D

    Need help with script.

    under function onStepIn(cid, item, pos) make a print that make sure server see that tile you wanna to step its registered properly like idk print("Its working!")
  13. D

    TFS 0.X 0.4 8.60 - Advanced Poll System error HELP

    unserialize? is this system using json?
  14. D

    TFS 1.X+ Upgrade script by Xikini.

    yes u can use for this os.time() item:getCustomAttribute(attribute name) item:setCustomAttribute(attribute name, value) or just tables if you dont wanna keep the values when server is restarted
  15. D

    Hoster Ovh setup debian/windows call session

    Homemade Bread (https://tastesbetterfromscratch.com/bread-recipe/) here is a tutorial how to make a fresh awesome bread, you dont need to buy it from markets
  16. D

    TFS 0.X 8.60 0.4 MOD MYSQL THERE IS HOW TO DO IT SQLITE

    ?? xD someone rly understood this topic?
  17. D

    Solved 8.60 OTCLIENT BLACK SCREEN

    cool, but what u did exactly, every custom changes shouldbe mentioed in problem because official tfs's without edits, same for clients will always work
  18. D

    AAC MyAAC v0.8.16 - cannot access admin page after installing gesior plugin

    ALTER TABLE pagseguro_transaction ADD id int(11) NOT NULL default 0;
  19. D

    TFS 0.X 8.60 0.4 Need Script Check Bless

    this is a briliant how your message been ignored XD @topic solution is already posted by @Fabi Marzan and @Mtx69
  20. D

    AAC myaac-0.8.16 When a player buys points, he does not get them

    maybe SSL missing? not sure if paypal accept requests without ssl protection
Back
Top