• 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. 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
  15. L

    [HTML/Web Problem] Creating Latest News problem

    Ok, idk why I didn't do that earlier xD http://pastebin.com/3WQfSN3u
  16. L

    [HTML/Web Problem] Creating Latest News problem

    $tickerSql = $SQL->query("SELECT "); //NEWSTICKER $time = time(); $vTick = $SQL->query("SELECT " .$SQL->fieldName('date'). " FROM " .$SQL->tableName('z_news_tickers'). " WHERE " .$SQL->fieldName('hide_ticker'). " = '0'")->fetch(); if(isset($vTick['date'])){ $news_content .= ' <div...
  17. L

    [HTML/Web Problem] Creating Latest News problem

    Hey, when I create Latest News on main OTS web it create crazy big "space" in the beginning of each post if I use HTML code editor. After submit: https://imgur.com/6asbbEg In editor b4 submit: https://imgur.com/SCNYD6v In editor it looks great but after submit idk... and it happens just if I...
  18. L

    Windows Basic problem with login

    I was trying to connect with: localhost 127.0.0.1 no-ip 192.168.1.15 All fail, but with local/192./127 I get to character screen, with no-ip can't even connect to character screen edit: If I Get to character screen I got: https://imgur.com/xyWloU1 and if I EXIT tibia client my character logs...
  19. L

    Windows Basic problem with login

    Hello I just wanna ask what ip I should have in config.lua if I got dynamic IP address -- Connection Config -- NOTE: maxPlayers set to 0 means no limit ip = "(...).ddns.net" bindOnlyGlobalAddress = false loginProtocolPort = 7171 gameProtocolPort = 7172 statusProtocolPort = 7171 maxPlayers = 0...
Back
Top