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

    TFS 0.X How to add something in character description?

    maybe something like this local desc = string.sub(getPlayerNameDescription(cid),1,-2) doPlayerSetNameDescription(cid, ""..desc.." and a king.")
  2. SpiderOT

    TFS 0.X How to add something in character description?

    doPlayerSetSpecialDescription(cid, "\nNew description line.")
  3. SpiderOT

    AAC IpTables - nuking my site

    True, that’s why you should only allow domain to access your webserver.
  4. SpiderOT

    AAC IpTables - nuking my site

    You have two options Easy one to use Cloudflare. Hard one to... 1-check your http error/access log files it will help to determine which type of attack or bug they are using. 2-check your mysql log maybe you have some pages that use a lot of resources based on 1,2 you might need to tweak your...
  5. SpiderOT

    OpenTibia Remere's Map Editor With Some Modifications

    You can compare sources with something like WinMerge
  6. SpiderOT

    OpenTibia Remere's Map Editor With Some Modifications

    Oops, my bad i must have swapped names gonna upload another version with option to disable the extra border and some options at find items dialog if anyone have good idea to implement let me know :)
  7. SpiderOT

    C++ alana sio

    bool InstantSpell::HouseKick(const InstantSpell*, Creature* creature, const std::string& param) { Player* player = creature->getPlayer(); Player* targetPlayer = g_game.getPlayerByName(param); if (!targetPlayer) { targetPlayer = player; } House* house =...
  8. SpiderOT

    Lua script error: [creaturescript interface]

    @up there's empty line on the start of his script therefore the error on line 18 not 17 doCreatureChangeOutfit(cid, outfits[getPlayerSex(cid)][getPlayerVocation(cid)]) there's no table for the other gender
  9. SpiderOT

    OpenTibia Remere's Map Editor With Some Modifications

    Hey there! This a modified version of remere's map editor, all edits made to ease the mapping process while developing my server. therefore, you might find some weird functions just ignore it xD I didn't really want to release the sources as most of the edits here made with the worst possible...
  10. SpiderOT

    Lua Spell Effect

    You have to define it in sources tools.cpp MagicEffectNames magicEffectNames[] = const.h enum MagicEffect_t
  11. SpiderOT

    MyACC How to remove or change places of boxes

    Nope ctrl+f5 will clear browser cache not the AAC cache (this AAC use cache system to save pages for faster load)
  12. SpiderOT

    MyACC How to remove or change places of boxes

    didn't use it before but yeah you will have to clear the cache every time you make edit
  13. SpiderOT

    Lua Error in script UPGRADE

    The script doesn't make any sense <movevent type="AddItem" tileitem="8303" itemid="12606;12603;12604;12607;12605;12610;12609;8849;2547" event="script" value="evolitem.lua"/> this means when you throw "itemid="12606;12603;12604;12607;12605;12610;12609;8849;2547" on this item "8303" it will...
  14. SpiderOT

    C++ Create a new option in config.lua

    If you're not going to use the new value in C++ then you can add whatever you want in config.lua and call it by getConfigValue("yournewvalue") in other lua script if you want to add it to sources then edit configmanager.cpp/configmanager.h
  15. SpiderOT

    How to use GDB?

    You can open the core file by gdb tfs core.xxx then type bt full
  16. SpiderOT

    Compiling (Object Builder) Flags, what are these 3 flags for?

    Topeffect is the effect that shows on item like the fish tank
  17. SpiderOT

    ObjectBuilder [10.32]

  18. SpiderOT

    Happy Birthday to me ;)

    Happy birthday! have a great one ;)
  19. SpiderOT

    Automatic database backup after server save.

    You can use this crontab -u root -e 52 07 * * * mysqldump -u root -pYourDatabasePassword YourDatabaseName > /home/backups/Databasename-`date +\%Y-\%m-\%d`.sql 52 07 * * * mean daily at 7:52 am
  20. SpiderOT

    ObjectBuilder [10.32]

    up again, it's outdated version but still will open up to 10.95
Back
Top