Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/30/17 in all areas

  1. Crimson Weapons and Item Random Options Drop Support As of Git Hash: e59cdff, rAthena now supports assigning additional monster item drops and adding random options to item drops via an extra files for item drops. You probably knew it already, the random options system that was added in 2016 still lacks an important component, an easy way to make drops from monsters have random options assigned. As of Git Hash: e59cdff, @Cydh implemented an additional database for monster drops that also has random options assigning support. We also shipped the system with a default set of Crimson weapon drops. Details: - A new database file has been added in db/{pre-}re/mob_drop.txt. Please see its usage at the file's header! - [Reminder] Options assigned to an item will NOT display if you are not using a 2015 or later client. Their stats will still be calculated, though. Thank you to @Cydh again for making this happen!
    8 points
  2. Hi Guys, Some of my works, please rate, Aja!
    2 points
  3. The following script emulates the Bounty Board Quests from iRO. This was made by having direct interaction with all the npcs, directly doing some of this quest and also using iRO Wiki information as a source. This quest uses a special function designed to concentrate and manage all the bounties in a few lines, to make it easy to update, modify or even create custom bounties. iRO Bounty Boards v1.1.rar : Added vip function to collect all bounties and fixed a minnor bug with one use of a close command. iRO Bounty Boards v1.0.2.rar : Removed += operations with strings. iRO Bounty Boards v1.0.1.rar : Changed npc and monsters constants to numerical ids. iRO Bounty Boards v1.0.rar : Initial Release For more details please check: Bounty Board Quests - iRO Wiki Special thanks to: Trixtan and ZacktheBear from AtlantisRO. This would not have been possible without their invaluable help. Some notes about this: There are some errors in iRO's npc. In example, in Juno the Bounty 70-110 for Juno with a char base level 127, the Bounty says it is for levels 70-100 (not 110, as his name says). This error was caused because this quests were implemented before update that expands max base level to 175 and it seems that iRO's npc were scripted individually one by one, not as a function, so, this errors may be only little bugs when updating values. This kind of error is present in some bounties for Lighthalzen, Hugel, and don't remember which other one. However, all the npcs presented here are using the information provided by iRO Wiki and presents information ingame avoiding this kind of errors. Some to-do : I'm missing base/job exp for False Angel and Mini Demon (Geffen Bounties), since that information is not present in iRO Wiki and I haven't The Sign quest. If somebody can open Portal to Geffenia, i will update that values. Bounties for biolab 3 and 4 has a special function, it is like containing two boards in one, since a player can choose to do all bounties for monsters from 3rd level and all bounties for monsters from 4th level (to receive the reward for all the bounties completed). Add vip function to Collect All Bounties. Add questinfo command to show quest mark in bounties npc. This quests are a close emulation to iRO's Bounty Boards. We hope players can enjoy this quests. If you detect any error or have a suggestion, please feel free to comment it.
    1 point
  4. Need the latest kRO Install folder for your private server? Look no further! ----> Download <---- Latest: 2023-04-04 Installation: Official kRO Updated: 04/04/2023 Download Link: https://mega.nz/folder/jUsDgRxQ#ttLmLjPY9p9cfU5_ShWVCw Package contains RSU RO Patcher Lite for kRO and kRO RE by [Ai4rei] This package is maintained by [Akkarin] Note: Due to continued abuse of my webservers, the files have been moved to MEGA. You can download an extractable .zip of an installed kRO directory, or you can download the official installer from kRO's website. Note: If you require older maps that are compatible with 2021 and older clients, download the 2021 .zip. A fan of this topic? Hit the rep button
    1 point
  5. This is not mine . but credits to the owner ! i use it a lot ! Use it with your own risk http://rod.2-d.jp/npc.html Dont forget to add some reputation on me (c) Gravity Co., Ltd. & Lee MyoungJin(studio DTDS). All rights reserved.(c) GungHo Online Entertainment, Inc. All Rights Reserved.当コンテンツの再利用(再転載・配布など)は、禁止しています。
    1 point
  6. i have the mob db already , but the mob is copy database from turtle dungeon mob item ! since i cant find any reference or info about the monster drop . if i ever have a chance i will distrubute it here in rAthena with a new thrend even that i will use it to my current server .
    1 point
  7. Do you have mushroom event enabled? When mushroom are summoned on the same map with punching bags, and killmonster .Map$,"All"; was executed, the puching bag will also be killed and the event label won't be triggered.
    1 point
  8. you can try this guide also poring king made some thread regarding dorem
    1 point
  9. change this getitem 12214,5; getitem 12210,5; getitem 12263,5; getitem 5826,1; getitem 569,30; getitem 12323,20; to getitembound 12214,5,1; getitembound 12210,5,1; getitembound 12263,5,1; getitembound 5826,1,1; getitembound 569,30,1; getitembound 12323,20,1;
    1 point
  10. 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.
    1 point
  11. you can check this thread
    1 point
  12. if you were looking to change base aspd formula you can change it here // Basic ASPD value int status_base_amotion_pc(struct map_session_data* sd, struct status_data* status) { int amotion; int classidx = pc_class2idx(sd->status.class_); #ifdef RENEWAL_ASPD short mod = -1; switch( sd->weapontype2 ){ // adjustment for dual weilding case W_DAGGER: mod = 0; break; // 0, 1, 1 case W_1HSWORD: case W_1HAXE: mod = 1; if( (sd->class_&MAPID_THIRDMASK) == MAPID_GUILLOTINE_CROSS ) // 0, 2, 3 mod = sd->weapontype2 / W_1HSWORD + W_1HSWORD / sd->weapontype2 ; } amotion = ( sd->status.weapon < MAX_WEAPON_TYPE && mod < 0 ) ? (job_info[classidx].aspd_base[sd->status.weapon]) // single weapon : ((job_info[classidx].aspd_base[sd->weapontype2] // dual-wield + job_info[classidx].aspd_base[sd->weapontype2]) * 6 / 10 + 10 * mod - job_info[classidx].aspd_base[sd->weapontype2] + job_info[classidx].aspd_base[sd->weapontype1]); if ( sd->status.shield ) amotion += ( 2000 - job_info[classidx].aspd_base[W_FIST] ) + ( job_info[classidx].aspd_base[MAX_WEAPON_TYPE] - 2000 ); #else // base weapon delay amotion = (sd->status.weapon < MAX_WEAPON_TYPE) ? (job_info[classidx].aspd_base[sd->status.weapon]) // single weapon : (job_info[classidx].aspd_base[sd->weapontype1] + job_info[classidx].aspd_base[sd->weapontype2])*7/10; // dual-wield // percentual delay reduction from stats amotion -= amotion * (4*status->agi + status->dex)/1000; #endif
    1 point
  13. thats the base aspd dude :3
    1 point
  14. Version 1.2

    890 downloads

    Description Players are able to click on the Ores items to refine the selected equipment. They can refine their Equipment at anywhere anytime they want. Based on requirement of Weapon Level and Type, different ores might be needed as well as Zeny. Preview
    Free
    1 point
×
×
  • Create New...