Jump to content

Akkarin

Forum Manager
  • Posts

    3144
  • Joined

  • Last visited

  • Days Won

    212

Everything posted by Akkarin

  1. I host the files on my own web servers. I don't mirror to other file-hosts.
  2. The wiki exists at github and contains the same information that the old wiki had. I don't think we're going to be creating a curriculum for setting up rathena as there are already guides all over the place.
  3. Hi. There's no guide for this, just extract it. You can then grab your client translations and diffed client.
  4. I've just hired 4 new Mods. Aleos will get jealous Don't stop submitting!
  5. Because only kRO clients work fully with any of the RO emulators. And only kRO data will work with kRO clients.
  6. Correct. Use kRO's data instead of iRO's.
  7. Trump style?!?! We used to have these when we used the integrated Tracker. Github has it's own "Projects" tab which allows Trello-style cards for issues and PRs to be sorted into columns similar to a to-do list. See the one i use for FluxCP for examples. This can actually be done via the Github API to pull a list of issues with particular labels so we can separate them on the board index into nice tidy boxes. Good idea - i'll see what i can come up with. Update: I've created a unique rss feed stream for our forums to use based off Github's API. This now gives us the means to dynamically pull all kinds of data from our Repo for display within the forums!
  8. The Bug Tracker badges are itching to be applied to your forum accounts! In an effort to close a few of our 40,000 open issues (199 at the time of this post), the devs are seeking your help. We need users to help our devs out by picking a page on the issues list, reading a few of the open issues and commenting on whether or not you can reproduce the issue. The devs are steaming ahead with the implementation of new features, ironing out bugs from older features, updating skills, etc, so i thought it'd be nice if some members of the community could provide some input on a few of the issues to help them out! We're aware that sometimes there's an issue that is over two years old and gets forgotten about, then another user opens an issue that essentially duplicates them, but only the most recent one gets closed off properly via the commit message, because the first/original issue may have been forgotten. Aleos and I will be handing out Bug Tracker badges to users who provide helpful input on any 5 issues that are more than a year old (or anything past page 4). Helpful input is: Confirmation of a bug that still exists Testing and providing an update if the reported bug is now giving different results Proving that the issue can be closed by commenting with commit hashes relevant to the fix, or referencing other open issues relating to the same problem Happy hunting boys and girls!
  9. I use the following to grab both SQL and File based backups: #!/bin/bash dbhost='127.0.0.1' dbuser='user' dbpass='pass' dbname='db' savepath='/home/backups' date=`date +%Y-%m-%d_%H%M` month=`date +%Y-%m` filename="$savepath/$month/"$dbname"_"$date".sql" tarname="$savepath/$month/"$dbname"_"$date".tar.gz" if [[ ! -d "$savepath/$month" ]]; then mkdir -p "$savepath/$month" chmod 700 "$savepath/$month" fi mysqldump --opt --host=$dbhost --user=$dbuser --password=$dbpass $dbname > $filename chmod 400 $filename dirname='/var/www/htdocs' tar -cvpzf $tarname $dirname chmod 400 $tarname This is ideal for when you also have file based logs (like with FluxCP) so everything is backed up and saved to a location. I have another script running on a separate vps that remotes to the server that has the new backups and copies them. This script doesn't send them anywhere.
  10. Using a diffed kRO EXE means you need a set of kRO .grfs. iRO's client-side data won't work correctly with kRO's clients.
  11. No one. I have access to everything, Aleos has access to ACP. No one other than myself has access to the filesystem. I keep saying Aleos and I have access to them - i'm not going to approve a file that doesn't work. People are still commenting about it because they like drama. Perhaps i should never have mentioned it, i only did so because i see no reason to hold back information about how systems failed in the past, especially when i'm trying to prove to the community that our current setup is far better than that of the previous admins. In future i won't bother. Don't mistake that for butthurt, i'm just getting bored of saying the same things all the time. Why does no one bother reading?
  12. But they don't have access to it for free.
  13. In theory, yes. Though we don't approve files that can't be tested. Perhaps there's something we could do for that.
  14. How many times do i have to say that moderators don't have the ability to download paid files for free since the system was brought back to life. I'm starting to get bored of going round in circles.
  15. Blank map is caused by the mapcache not loading the same map in your grf. Remember you need to use a translated package to be able to use this for your private server.
  16. It's already been expressed multiple times in this thread, Moderators can't download Paid Files for free. There are no discounts, stop spinning theories. I've already told everyone that the only two people who are able to download these files without having to pay for them are Aleos and myself so we can approve them.
  17. Akkarin

    Background Color

    There's no need to edit the default theme if you're using a custom theme.. unless designers are still being stupid and putting their custom theme in a folder that you're supposed to overwrite the default theme with.. which amazes me.
  18. There are 15 parts in total. It has everything that kRO has up until the date on the files.
  19. My servers in the past have been staffed entirely by people who at one time were a player. I needed people who understood the community more than i needed people who could script. GM's alt-accounts were closely monitored by automated scripts. I left it upto them if they wanted to keep their alt's secret from the public or not. All GM activity (command logs, in-game event and script logs, etc) were all publicly visible. There wasn't really anything in particular i looked for in terms of skills.. they just had to be polite and have a desire to make the server a friendly place to play the game. I did everything else myself
  20. As far as i'm aware there's no function to open the world map except via the world map button. You could achieve similar if you added a script function to your item that opens a cutin of the map.
  21. - script impbossnia -1,{ OnInit: monster "bossnia02",0,0,"Imp",MOBIDHERE,10,"impbossnia::OnMobDeath"; end; OnMobDeath: getitem 7929,1; // 1 Gold Coin end; } Something similar to this.
  22. One method of achieving this would be to use the OnPCLoadMapEvent to check if the map is bossnia_02 and then use atcommand to alootid. The other (and most preferred) is spawning the imps via the monster script and attach an OnMobDeath event to give the player item x number of ID:7929 when it's been killed.
  23. You can, but it's a very bad idea. Patching something custom against an older rA revision will almost 100% of the time scream with errors.
  24. 17454 is not a git hash. The errors tell you what is wrong.
×
×
  • Create New...