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

  1. L

    Global message?

    local message = { "to see highschores, tip !highscores bla bla bla", } local i = 0 function onThink(interval, lastExecution) local message = message[(i % #message) + 1] doBroadcastMessage("Information: " .. message .. "", MESSAGE_STATUS_CONSOLE_ORANGE) i = i + 1 return TRUE...
  2. L

    TFS 1.X+ Error: illegal value

    Refresh. Same problem.
  3. L

    [MyAAC][Plugin] login.php for Tibia 11

    Same problem as guys b4, after character list:
  4. L

    TFS 1.X+ Remove access quests

    Hey, What storageid I have to set in login.lua to let everyone have access to some quest zones like: The New Frontier from quests.lua <quest name="The New Frontier" startstorageid="12130" startstoragevalue="1"> <mission name="Mission 01: New Land" storageid="12131" startvalue="1"...
  5. L

    TFS 1.X+ Powergamers GESIOR 2012

    BUMP Still need help ;/
  6. L

    Compiling pugihpp.xml

    "Extract TFS SDK anywhere on your computer and run the file "register_tfssdk_env.bat" to set the PATH environment variable for TFS SDK, so that the compiler can find the libraries once we get to compiling the source code. Move the file "register_boost_env.bat" from TFS SDK to the directory where...
  7. L

    Compiling pugihpp.xml

    Can you tell me what game protocol you use and from where did you download your TFS 1.2 ? #Edit Looks like your includes are incorrect, did you set up the sdk correctly from tutorial? You can try manually include each folder in the tfs sdk by project -> properties -> c/c++ -> additional include...
  8. L

    Compiling Compiling error [Solved]

    You have to download libboost_system-vc141-mt-1_64.lib https://sourceforge.net/projects/boost/files/boost-binaries/1.60.0/boost_1_60_0-msvc-14.0-64.exe/download from this list Boost C++ Libraries - Browse /boost-binaries/1.60.0 at SourceForge.net
  9. L

    Bonus with set pieces

    That's from TFS 1.0 --Set System by Strack local sets = { --descripcion, helmet, body, legs, boots [1] = {'Lava Set', 7900, 7899, 7894, 7891}, [2] = {'Ice Set', 7902, 7897, 7896, 7892}, [3] = {'Energy Set', 7901, 7898, 7895, 7893}, [4] = {'Tera Set', 7903, 7884, 7885, 7886} }...
  10. L

    HOW TO INSERT NEW OTX OUTFITS 7.4

    Look in here maybe this can help you a bit How to add Outfit to OTHire? Have a nice day!
  11. L

    TFS 0.X Reduce Monsters Sight Range

    I think all you need it that Monster ViewRange configured in monster.xml files But you need to edit source code of your engine. Have a nic day!
  12. L

    TFS 1.X+ Powergamers GESIOR 2012

    All I need is showing experience unmultiplied by exp rate (it is like killing monsters with 1x multiplier) e.g. (easier example if I will have just 1 exp rate no stage) exp rate x10 times more than real Hexlord get 150,000,000 experience. => So in Ranking of Powergamers it will show: Hexlord...
  13. L

    TFS 1.X+ Powergamers GESIOR 2012

    Hey! Can some1 help me with editing powergamers.php from Gesior 2012 Account maker to make it display Ranking of powergamers but unmultiplied by exp stages e.g. Player get +108.000.000 exp but from creating character through all exp stages 8 - 50 level, 100x 51 - 100 level, 50x 101 - 125...
  14. L

    [HTML/Web Problem] Creating Latest News problem

    Yes, I made some changes but I will try clean letestnews.php and will add my trash ;) thx
Back
Top