Jump to content

Akkarin

Forum Manager
  • Posts

    3147
  • Joined

  • Last visited

  • Days Won

    214

Everything posted by Akkarin

  1. Probably via a diff, but as the diff doesn't exist it'll be difficult to force the client to load something from a different location.
  2. Use ./configure first, then you can 'make server'.
  3. Don't beg - people will help if they feel like helping. Provide a screenshot of the error on-screen. I don't see anything wrong with those files. Don't double-post. Perhaps you need to read the forum rules again?
  4. Upload your entire lua file. There's nothing technically wrong with that line so it stands to reason that the line before it may be screwed, or something else is affecting it.
  5. I'm disappointed in the lack of codebox usage for these walls of code. Use the code button.
  6. Free hosting sites don't work well enough for FluxCP.
  7. The simplest solution would be to get in-touch with your web host and speak to them about increasing your plan. You'll probably be charged overages.
  8. Akkarin

    About LINQ

    Short answer: No.
  9. Akkarin

    Drop Rate

    No. As i said, if you read the file, you'd see what you're doing is wrong.
  10. Akkarin

    Drop Rate

    The header of that file answers your question. If 100 = 1%, it's safe to assume that 200 would be 2%. Read the file and look at the original values.
  11. 4300!
  12. Your spoiler is empty. Try again.
  13. Screenshots are helpful. Is it a phpmyadmin error or a webserver error? Have you looked in your error logs?
  14. It's not because it's a monster script, it's because it's spawning monsters to a map and most likely all have attached scripts and a timer. It can cause small amounts of network latency and increases the ram and cpu usage of the map server. It's not a big issue by any stretch, it's just something to remember when creating scripts for high population servers.
  15. Yeah, that's the Clan System and works well. VIP must be enabled in source. There is a define point in src/config somewhere. I don't remember off the top of my head.
  16. VIP has worked for years. There are several configs for you to change to your liking, or you can just enable it in /src/ and it'll work right out of the box. Trophies? I'm assuming you mean Achievements - this is in it's final stages. As is RODEX. Guilds have worked since the dawn of time... or atleast for the last 13(ish) years since they were implemented.. unless you mean Clans, which also work fine.
  17. From what i understand, it's optimum value is 2. I personally have set mine to 20 as i have a lot of OnPCLoginEvent scripts which would ordinarily exceed the queue value. There's no magic settings to "optimize performance". The more scripts you run on a server, the more resources it will use. The more players you have connected, the more scripts you have running. The best answer i can give you for number 3 though, is to avoid scripts that use timers/loops. Scripts that use static data perform better than scripts that use dynamic data. Keep your variable usage to a minimum by using bitmasked values. Event scripts that spawn x amount of monsters in a specific location at x times of the day are discouraged, as that will create your resource bottlenecks.. but if you know where they are, then you can do things to combat them
  18. Change #!bin/bash to #!bin/sh
  19. Yes. Read the instructions for the software tool you're using.
  20. rAthena takes "too long" to merge pull requests because too few people bother merging, testing, giving us their results. There are plenty of guides around on how to merge Pull Requests: https://help.github.com/articles/checking-out-pull-requests-locally/ https://gist.github.com/piscisaureus/3342247
  21. There's no single solution to this as there are many aspects to running a VNC server that affect how this would be setup. For a basic example though, you can look at these: Desktop shortcut file (start.desktop) [Desktop Entry] Version=1.0 Encoding=UTF-8 Name=Start rAthena Type=Application Terminal=false Exec=/path/to/scripts/start_server.sh Icon=/path/to/icon.png start_server.sh #!/bin/sh DIR=/path/to/scripts xterm -title "Login Server" -bg black -fg white -hold -e $DIR/start_login_server.sh & start_login_server.sh #!/bin/sh cd /path/to/rAthena ./login-server There are a great many guides on the internet that can walk you through setting up a VNC server and then configuring it to run scripts based on desktop shortcuts.
  22. As i said, the error is telling you which file is the problem. It's even telling you which line the issue is on.
  23. There are 20+ guides on client setup - the more relevant guides are in https://rathena.org/board/forum/99-client-releases/
  24. Not really sure why you're copy pasting config files when the error is given to you in the consoles, and if you read it you'd be able to fix it. Also, use code box in future.
  25. Not really sure why you're only pointing 1 server out in bold.. I know of atleast 6 that have rodex fully implemented. NovaRO is actually the only server that does their own research on kRO and then gives their findings to the rA dev team, since it's owner is one of our devs. Looks like your post needs rewording.
×
×
  • Create New...