Jump to content

Jey

Members
  • Posts

    249
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by Jey

  1. When you're recompiling are you using the following?
  2. Are you sure? make clean just removes the compilation. Please provide more informations. What system are you on, how do you actually compile, etc. Thanks
  3. @bewfbi are you on a 32 bit system? Then you should rerun configure with the --disable-64bit flag @hendra814 you should open your own topic, since these are likely different problems. https://stackoverflow.com/questions/43306266/cannot-open-stdio-h#43656990
  4. Looks like your 'id' field doesn't have a default value id normally has the auto_increment attribute: https://github.com/rathena/rathena/blob/master/sql-files/logs.sql#L170 You either can add it by hand, or drop the table and re-add it.
  5. https://github.com/rathena/rathena/blob/master/src/map/script_constants.hpp#L2624 Have a look at that file, either these constants are missing on your side which means your copy is out of date, or you forgot to recompile (or something similar)
  6. Looks like you run updated scripts on an old version of rathenas source. Did you properly update your src files?
  7. You could use `checkidle` to check if a player is afk-farming.
  8. A diff contains the difference between two files or between two file versions. You can use tools like git diff/apply, diff, meld, WinMerge, ... To view, apply or create diffs. https://en.wikipedia.org/wiki/Diff_utility
  9. Most things are working neat, even though the doram class is still somewhat new and the rebellion class just got an update (https://github.com/rathena/rathena/pull/1692). Partly rathena doesn't emulate the official behavior exactly, but mostly because we're missing these informations. Examples: https://github.com/rathena/rathena/issues/1083 https://github.com/rathena/rathena/issues/2239 You should just clone the repo and try it out
  10. You need to convert those constants. We prepared a script for that. https://github.com/rathena/rathena/blob/master/tools/convert_emotions.py If you installed python3, you just need to run cd tools ./convert_emotions.py Related Pull Request: https://github.com/rathena/rathena/pull/2527
  11. You should ask yourself first why the Assassin is doing so much damage. Maybe because your maximum for stats are set too high and the assassin can max out very useful stats which are important for his class, while other classes need too many different stat points to increase their damage. Maybe special skills like EDP are too strong, you could decrease their effect. Maybe some items are too strong, Assassin are scaling very good on high end equipment. Maybe other players don't know how to counter an assassin. Then you may shouldn't do any changes at all. For example if everyone is playing with high def and assassin are just using items with piercing effect (thanatos card, ice pick); well... then they may should change their behavior
  12. Jey

    How to use tools?

    So you should update unitemote and emotion calls with third parameter by yourself, because automated changes could cause unexpected behavior.
  13. Jey

    How to use tools?

    You need to install python3
  14. Jey

    How to use tools?

    https://github.com/rathena/rathena/issues/2598#issuecomment-343857029
  15. Thanks! So your initial issue (missing NPCs) is because of the high number of maps? Or are these two independent issues?
  16. Sounds like a bug to me. Can you do some further tests? Like - Check if you're actually in a guild - Try to enter with other guild members - Check if the instance is created correctly (Type "/where" in the instance) - Recheck your steps Would be highly appreciated, thanks!
  17. Jey

    Home Server

    For home servers most problematic should be the Internet connection. Most providers doesn't offer high upload speed and the reliability of the connection is often poor. If you really want to run a server with more than 10 players, I'd recommend to use a dedicated server. Everything else is just wasted effort. But for testing with some friends it should be perfectly fine to offer a home server.
  18. git clone https://github.com/rathena/rathena.git rathena cd rathena git checkout <commit_hash>
  19. Alt+H -> Friend List ^ Click the Magnifier at the bottom. ^ Disable the check boxes.
  20. Please use git instead of svn https://github.com/rathena/rathena/ https://www.elegantthemes.com/blog/resources/git-and-github-a-beginners-guide-for-complete-newbies
  21. Try to check your servers connection with tools like mtr (winmtr for windows).
  22. https://github.com/rathena/rathena/wiki/installations https://dev.mysql.com/doc/refman/5.7/en/create-user.html Also have a closer look in our configuration folder: https://github.com/rathena/rathena/tree/master/conf especially the inter athena settings for this very problem: https://github.com/rathena/rathena/blob/master/conf/inter_athena.conf keep in mind you can set the configurations in an import folder, which helps you keep the files untracked from your version control https://github.com/rathena/rathena/tree/master/conf/import-tmpl If you already have problems at this stage please get more used to reading and testing stuff out. We can't help you at every little step. Don't underestimate your common sense and your personally preferred search engine to solve these problems.
  23. That's a mysql error, which means you cannot connect to your mysql database. You either need to create the mysql user or adjust your configuration.
  24. Was hat rathena denn mit C# zu tun? Ich würde schon in erster Linie git updates/merges empfehlen. Das geht meist schneller und man kann nur schwer etwas übersehen. Die Konflikte sind letztendlich genau dafür da, dass der Entwickler sich die stellen nochmal genauer ansieht. Ich würde git allgemein als DAS wichtigste Tools bezeichnen, wenn es um Entwicklungen (im Team oder von Forks) geht. Vor allem, wenn man seine Änderungen mit anderen mergen möchte. Das Git Handbuch ist da sehr ausführlich. Lesen lohnt: https://git-scm.com/book/en/v2 Für Syntax Highlighting kann ich für rathena Scripts schlichtweg das C Highlighting empfehlen. Das ist in den meisten Editoren von Haus aus mit dabei und es ist besser als nichts.
×
×
  • Create New...