Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/15/12 in Posts

  1. I've been in the RO server community for nearly 8 years now... and yes, within the past few years there have been hundreds of thousands of Ragnarok servers made. However, one fact remains true. The ones that have stayed online for nearly 4~6 years now, are the ones ran by people who A) Know wtf they're doing, and B ) Actually help contribute back to the development of the emulation software. People do have the right to run their own servers, hell a few years ago people would use eAthena to create testing grounds for testing RWC builds before the tournament came. These servers tend to die out really fast, it shouldn't make anyone nervous. Most servers are created with the following ideas in mind: Make Money Want to be in control. Want to make something "unique" and "different" to beat everyone else. The servers made with those goals in mind never survive. So, in short. Stop worrying about all the other servers out there and worry about your own. This is a free, open source software that anyone is allowed to use. It's what you do with it and how you contribute back to it that shows how much you care.
    3 points
  2. People need to use the search function. This question has been asked countless of times.
    2 points
  3. I spat my gum out so hard laughing at this thread it stuck to the wall. What. The. Fuck.
    2 points
  4. Relax? o.O I'm not arguing... This is a Scripting Support forum. I've giving support... The point of a support forum is to allow people to give the best possible solutions to the person asking for help. If outdated methods are being given then an experienced scripter coming in and giving feedback shouldn't be met with hostility... Development is about sharing methods of how we create things. Again, was giving feedback / support. Wasn't trying to argue or say your method is bad... it's just not a very clean way of scripting... there's a reason we spent a good time at eAthena converting all the goto / label menus with switch select menus. It's cleaner and easier to read; allows for better debugging.
    1 point
  5. Millenium, use the rAthena Wiki to your advantage. If you come across with script related errors, you can look them up here. Make a thread if you really can't figure it out.
    1 point
  6. For 30% drop announce, you would have to edit Drops.conf : rare_drop_announce: 3000 This also can't be done in a script as there's no way for the script to know what a monster just dropped (without source edits).
    1 point
  7. What are you talking about? o_o https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/conf/battle/drops.conf // Make broadcast ** Player1 won Pupa's Pupa Card (chance 0.01%) *** // This can be set to any value between 0~10000. // Note: It also announces STEAL skill usage with rare items // 0 = don't show announces at all // 1 = show announces for 0.01% drop chance items // 333 = show announces for 3.33% or lower drop chance items // 10000 = show announces for all items rare_drop_announce: 0 // This can be set to any value between 0~10000. As in, add 3000 so that items 30% and lower are announced
    1 point
  8. Hm. I noticed, that there are problems with the IPN in sandbox mode. So I tested the donation with paypal live enviroment. Now I got the IPN and the table cp_txnlog was filled. I made 2 donations, which are both completed at paypal. In cp_txnlog both transaction have 'payment_status' 'Completed', but the field 'credits' is empty respectively '0'. So I will be shown the transactions in ?module=donate&action=history as 'completed' AND 'failed'. And no credits are on the account. I searched the source code, but did not found the part where the field 'credit' is set. Error found and fixed: /lib/Flux/PaymentNotifyRequest.php, line 179 replace: $sql = "SELECT COUNT(account_id) AS acc_id_count FROM {$servGroup->loginDatabase}.login WHERE sex != 'S' AND level >= 0 AND account_id = ?"; with: $sql = "SELECT COUNT(account_id) AS acc_id_count FROM {$servGroup->loginDatabase}.login WHERE sex != 'S' AND group_id >= 0 AND account_id = ?"; Thread may be marked as "solved". :-)
    1 point
×
×
  • Create New...