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

    convert to tfs 1.2

    local config = { -- [ID_DA_ARVORE] = {FRUIT, amount{min, max}, fruit id,} [5157] = {fruit = 5097, quantity = {0,1}, treeWithoutFruit = 5156, timeToGrow = 5}, [4006] = {fruit = 2675, quantity = {0,3}, treeWithoutFruit = 4008, timeToGrow = 20}, [5094] = {fruit = 2676, quantity = {3,6}...
  2. mpa

    Compiling Compiling error (visual studio 2015)

    You can also try to disable your anti virus software. Maybe it blocks it?
  3. mpa

    ZnoteAcc 1.5 Paypal Success But No Points Added

    Is this the latest version? If not try with a newer version. Also, I know I've seen a version of this that prints everything for debugging. Look on znote github.
  4. mpa

    Compiling Compiling error (visual studio 2015)

    Go to the boost folder and double click bootstrap.bat try right click > start as admin if double click doesnt work Then do step 3, but use cmd in admin mode instead.
  5. mpa

    Compiling Compiling error (visual studio 2015)

    I don't know how long it should take. Probably not an hour.. Step 3 took like 30 minutes for me. Try to type just type bootstrap instead (not .bat).
  6. mpa

    Solved super sudden rune TFS - 1.1

    Change charges to 0
  7. mpa

    ZnoteAcc 1.5 Paypal Success But No Points Added

    You could change one thing in your script, just to see what the response message from paypal is: Since it inserts the "connection from ip...." you can change it from: mysql_insert("INSERT INTO `znote_paypal` VALUES ('', '$txn_id', 'Connection from IP: $connectedIp', '0', '0', '0')"); and use...
  8. mpa

    Compiling Compiling error (visual studio 2015)

    I know how to fix it, you are missing the win32 libraries! Open Start Menu > Visual Studio 2015 (folder) > Developer Command Prompt for Visual Studio 2015 and enter following commands: 1. cd %BOOST_ROOT% 2. bootstrap.bat 3. b2 toolset=msvc-14.0 --build-type=complete...
  9. mpa

    Compiling Compiling error (visual studio 2015)

    It should work now. Try to download new sources so you compile from a new project.
  10. mpa

    Item's slot type

    Really? I hadn't noticed, I always have it the same way!
  11. mpa

    Item's slot type

    Because weapons and shields can be equipped in both slots..
  12. mpa

    Solved super sudden rune TFS - 1.1

    super sudden death.lua local combat = Combat() combat:setParameter(COMBAT_PARAM_TYPE, COMBAT_DEATHDAMAGE) combat:setParameter(COMBAT_PARAM_EFFECT, CONST_ME_MORTAREA) combat:setParameter(COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_SUDDENDEATH) function onGetFormulaValues(player, level, maglevel)...
  13. mpa

    /Ghost be seen by party

    I'm not sure but I think it's in tile.cpp
  14. mpa

    Kazordoon wagon

    What distro are you using?
  15. mpa

    Solved super sudden rune TFS - 1.1

    What is wrong? The script is exactly the same as a normal sd.
  16. mpa

    Compiling Compiling error (visual studio 2015)

    This is what mine looks like btw, but I put both the folders in C:\ C:\tfs-sdk-3.2 C:\boost_1_60_0 %TFSSDKDir% = "tfs-sdk-3.2" folder %BOOST_ROOT% = "boost_1_60_0" folder
  17. mpa

    Compiling Compiling error (visual studio 2015)

    Reboot and try again Edit: Path might still be wrong, post results from echo %TFSSDKDir% && echo %BOOST_ROOT% again
  18. mpa

    Compiling Compiling error (visual studio 2015)

    There's your problem. The path didn't get set correctly from the .bat files. You can change them manually in Control Panel > System and Security > Advanced system settings(left sidebar) > Environment Variables, look for TFSSDKDir and BOOST_ROOT.
  19. mpa

    Compiling Compiling error (visual studio 2015)

    run this command in cmd: echo %TFSSDKDir% && echo %BOOST_ROOT% and post the results
  20. mpa

    Solved Linux - Error: undefined reference to `Tile::getHeight() const'

    also double check if you included tile
Back
Top