Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 06/21/17 in all areas

  1. RODEX Support As of Git Hash: 58776da, rAthena now supports the RODEX System! Thanks to @Lemongrass for getting it applied to rAthena! What is RODEX? RODEX (RO Delivery Express) is the replacement of the Mail System within RO. (Read more here) Requires PACKETVER 20150513 or newer. All mailbox NPC are disabled as RODEX is accessible through the client. Basic configurations can be found in conf/battle/misc.conf with more configurations in conf/char_athena.conf. mail_return_days and mail_delete_days are defaulted to 15 days for when an unread message is returned and another 15 days for when that returned message is finally deleted. As with the previous mail system, zeny and items can be sent through RODEX. RODEX supports up to 5 attached items now, as opposed to 1. A tax of 2,500 zeny per item (misc.conf::mail_attachment_price) and a tax of 2% zeny when sending zeny (misc.conf::mail_zeny_fee). Players are given a default of 100 mail stamps a day. (misc.conf::mail_daily_count)
    7 points
  2. Hello dear community, I haven't done a public release in quite a while so I wanted to do something for you all again, but this time in a different category than maps. Summary This is a big pet pack that I've been using for my own server, the players loved it. It was definitely one of the bigger attractions that caused the server to be successful. There are approx 627 pets (including the commented pets) and I followed up until episode 14. All pets can be tamed with the same taming item (#12105). Currently, immovables and the bigger monsters (Anubis, Abysmal Knight, Detale, Bapho, Naght, Dark Lord, etc) are commented. If you wish to enable them, simply uncomment them; although I do not advice this for immovables to avoid lost pets! _____________________________________________________________________________ Server-Side Installation Just paste the following entries in your trunk. Needless to say, but don't replace the whole thing, just add it at the bottom. db/pet_db2.txt db/item_db2.txt Client-Side Installation Same as above, copy and paste the content of these links in your data folder. data/idnum2itemdesctable.txt data/idnum2itemdisplaynametable.txt data/idnum2itemresnametable.txt About the universal tame... Since I've used an existing item ID for this, you should change the script of it: 12105,Monster_Tame,Monster Tame,2,10000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 0; },{},{} It's up to you to change the data/text files appropriately to match its effect! _____________________________________________________________________________ Questions & Answers Q: Have all pets been tested? A: No. I did not go through them all, that said you might come across an egg that summons the wrong monster but that's not very difficult to fix. Q: I see these are done with the old text files, do you also have a 2013+ client (itemInfo.lua) version? A: No. I do not. My server was running on the old client files so I never needed this. If you want to make it happen, I recommend you to use kind sir xazax's converter. Q: How to change the capture rate? A: Refer to the pet_db2.txt structure and the conf/battle/pets.conf file. Q: Some pets do not open! The egg turns red as it is an broken item! What do I do? A: The MAX_PET_DB in pet.h must be increased to 3000 (or up), make sure to re-compile after. Your one broken egg might still not work though, drop it and make another, you'll see that it works fine now. Q: I un-commented the MVPs/Mini-Bosses, but I still can't capture any! How come? A: Servers by default do not support capturing Boss Mosters, if you wish to enable this, go to src/map/pet.c and search for "// catch_target_class == 0 is used for universal lures (except bosses for now). [skotlex]" and change the lines below into: if (sd->catch_target_class == 0) sd->catch_target_class = md->class_; if(i < 0 || sd->catch_target_class != md->class_) { clif_emotion(&md->bl, 7); //mob will do if wrong lure is used on them. clif_pet_roulette(sd,0); sd->catch_target_class = -1; return 1; } // (Don't forget to re-compile after) _____________________________________________________________________________ Have fun with this! ♥
    1 point
  3. Hello! Same with many rAthena users, I too have encountered the massive warnings upon compiling the latest git. So i took my time to google around and finally was able to find something that could solve this issue without using Centos7. Just follow the sequence below and you'll have your gcc updated to 4.9 in no time! First you need to login as root. yum install centos-release-scl yum install devtoolset-4-toolchain scl enable devtoolset-4 bash Then login to your non-root "user". scl enable devtoolset-4 bash After the 1st and 2nd step, you may now check your gcc version gcc --version g++ --version gfortran --version Recompile your rathena and you will find that the shadow warnings are all gone =) CHEERS! UPDATE: from devtoolset-3 to devtoolset-4
    1 point
  4. ls -la /var/www/html/cp/FluxCP/data/tmp ....
    1 point
  5. If it's a CentOS VPS, disable selinux. Lots of guides available via Google for your specific version. If not a CentOS VPS, paste the permissions for each directory going upto the cache dir.
    1 point
  6. i think you can try something like this. prontera,155,181,5 script RebirthNPC 4_F_KAFRA1,{ doevent "rebirth_main::OnTalk"; } - script rebirth_main -1,{ OnTalk: if ( BaseLevel < 175 || JobLevel < 60 ) { mes "You need to be level 175/60."; } else { jobchange Job_Novice; resetlvl 1; REBIRTH_COUNT++; } close; OnPCStatCalcEvent: if ( REBIRTH_COUNT ) { bonus2 bExpAddRace, RC_All, ( REBIRTH_COUNT * -2 ); } end; }
    1 point
  7. Version 1.0.0

    1476 downloads

    Hi guys, just designed a web template, too lazy to php/sql it, so... ill give it away for free to anybody who wants to give it a good use. * Do NOT sell it as a personal work.
    Free
    1 point
  8. Here, you can have it i test both and work fine. hairs.rar
    1 point
  9. I only have that black one but you can DL all my hair sprite here is the link : https://rathena.org/board/files/file/3462-my-girls-hair-sprite/ they are all corrected sprites for custom palettes
    1 point
  10. or you can try this? mes "How many Status Point you want to purchase ?"; mes "1 Point = 300,000 Zeny."; mes "You have "+Zeny+" Zeny , can purchase "+( Zeny / 300000 )+" Points."; input .@i,0,( Zeny / 300000 ); mes "You purchased "+.@i+" Points."; set StatusPoint,StatusPoint + 1; set Zeny,Zeny - ( 300000 * .@i ); close;
    1 point
×
×
  • Create New...