• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. Z

    What makes real tibia map so successful in regards to OTS? (compared to custom maps)

    Thanks guys for your answers :) By looking at the votes so far you seem to be quite right on that. Well. I hope there will be way more votes (and comments as for that matter) here!
  2. Z

    What makes real tibia map so successful in regards to OTS? (compared to custom maps)

    Hello everyone! I was meaning to ask this question for a long time. I've been wondering a lot and seeing so many real tibia map OT servers made me look for an answer here. What I would like to know is your opinion on why is real tibia map so widely used in OTS. What makes you play these...
  3. Z

    Compiling Error while compiling OTC

    I've never used his compiled versions, but maybe in his builds libraries are linked statically (meaning they're embedded within the .exe file). This you'd have to ask Summ about.
  4. Z

    Compiling Error while compiling OTC

    Sorry, don't have Windows. But I did use the same sources to compile on linux (got some warnings) and it works fine. If you get missin dlls errors, just put missing dlls in folder where otclient.exe is?
  5. Z

    make it do damage.

    If I'm not mistaken, you should be adding COMBAT_PARAM_EFFECT instead. Distance effects work for target spells.
  6. Z

    Compiling Liblua5.2.so on CentOS 7?

    Then I can only suggest you to try compiling lua 5.2 yourself or look for binaries compiled for CentOS.
  7. Z

    Compiling Liblua5.2.so on CentOS 7?

    Why don't you use yum to find out? yum list lua or something similar.
  8. Z

    Tibia Multi World System help!

    I would say it is possible to do, although your best shot would be to extract login server part from TFS and run it separately, then compile your game servers without login server. If you want a hint, have a look at ProtocolLogin::getCharacterList() and see how Proxy servers are implemented. You...
  9. Z

    make it do damage.

    You are right, my mistake. I got mislead by argument name, but indeed in TFS (1.3 at least, didn't check the others), it's onCastSpell(creature, variant).
  10. Z

    make it do damage.

    This won't work, cid is Creature ID, it's already an ID. The warning comes from the combat passed that way. Don't know if there's any solution for this other than ignoring this warning.
  11. Z

    Compiling Liblua5.2.so on CentOS 7?

    Should be a readme file somewhere? Are you checking the sourceforge repository? Here you have all the sources available: Lua: download area
  12. Z

    C++ True Dual Wielding for TFS 1.2

    I don't think there's any mention of TFS 1.2 in that topic (other than it fails). The github gist says it's for TFS 1.1 and I doubt it will work for TFS 1.2/1.3 without changes and fixes.
  13. Z

    Compiling Liblua5.2.so on CentOS 7?

    I don't really have much CentOS experience (I work with Debian), but shouldn't it be available via yum? Otherwise you should check on lua homepage (The Programming Language Lua) if there are binaries for CentOS available. Otherwise you will need to get the source and compile it yourself.
  14. Z

    make it do damage.

    As far as I managed to notice you need separate functions for each of your damage formula. I have no idea why, because I didn't track it further down, but I also had a similar problem once. So here: setCombatCallback(combat1, CALLBACK_PARAM_LEVELMAGICVALUE, "onGetFormulaValues")...
  15. Z

    Proper server launch?

    Well, to begin with, this seems very nice. I'm wondering if you are going to release the source code? I did think of that before, but the fact .NET is limited to Windows platform (Mono is no-go imo). But if you do release the source code I will be happy to port it to Java :) As for your...
  16. Z

    How to edit multiple sprites at the same time?

    Or you could just use a built-in Photoshop actions.
  17. Z

    Compiling Error while compiling OTC

    How can someone help you if we don't know what errors you are getting? Are there errors or warning? Post at least some of them. If they are linker errors you're probably missing some dependencies. Also please check this OpenSSL API Change · Issue #837 · edubart/otclient · GitHub and see if...
  18. Z

    C++ how to give "array -1" a value

    Just push whatever you want to be at -1 to 0, pushing the rest of values further? And start your loop from 1 (so you get x = 0, y = 1). Like this: double percentMax[5] = {0.0, 0.25, 0.40, 0.80, 1.50}; for(int i = 1; i < 5; i++) { uniform_random(parcentMax[i-1], percentMax[i]); }
  19. Z

    Make password visible

    It's encrypted by default in OTC. I will not post any links here, but you should google for these terms "Asterisk Key Spy Password" and you will most likely find a software that will let you "reveal" what's behind this input. If one does not work try another one. You could also try to ask...
  20. Z

    Compile Proplem

    Seems like you're missing a dependency, I'd say libcrypto is the one by looking at the errors (or it may be openSSL, I'm not sure). You need to install to libcrypto AND in case you haven't done it yet, you need to also tell linker to use it. #EDIT It seems like ssl actually.
Back
Top