Advertisement
Guest User

Untitled

a guest
Jun 15th, 2012
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.36 KB | None | 0 0
  1. // Copyright (c) rAthena Dev Teams - Licensed under GNU GPL
  2. // For more information, see LICENCE in the main folder
  3. #ifndef _CONFIG_RENEWAL_H_
  4. //#define _CONFIG_RENEWAL_H_
  5.  
  6. /**
  7. * rAthena configuration file (http://rathena.org)
  8. * For detailed guidance on these check http://rathena.org/wiki/SRC/map/config/
  9. **/
  10.  
  11. /**
  12. * @INFO: This file holds general-purpose renewal settings, for class-specific ones check /src/map/config/Skills folder
  13. **/
  14.  
  15. /// game renewal server mode
  16. /// (disable by commenting the line)
  17. ///
  18. /// leave this line to enable renewal specific support such as renewal formulas
  19. //#define RENEWAL
  20.  
  21. /// renewal cast time
  22. /// (disable by commenting the line)
  23. ///
  24. /// leave this line to enable renewal casting time algorithms
  25. /// cast time is decreased by DEX * 2 + INT while 20% of the cast time is not reduced by stats.
  26. /// example:
  27. /// on a skill whos cast time is 10s, only 8s may be reduced. the other 2s are part of a
  28. /// "fixed cast time" which can only be reduced by specialist items and skills
  29. //#define RENEWAL_CAST
  30.  
  31. /// renewal drop rate algorithms
  32. /// (disable by commenting the line)
  33. ///
  34. /// leave this line to enable renewal item drop rate algorithms
  35. /// while enabled a special modified based on the difference between the player and monster level is applied
  36. /// based on the http://irowiki.org/wiki/Drop_System#Level_Factor table
  37. //#define RENEWAL_DROP
  38.  
  39. /// renewal exp rate algorithms
  40. /// (disable by commenting the line)
  41. ///
  42. /// leave this line to enable renewal item exp rate algorithms
  43. /// while enabled a special modified based on the difference between the player and monster level is applied
  44. //#define RENEWAL_EXP
  45.  
  46. /// renewal level modifier on damage
  47. /// (disable by commenting the line)
  48. ///
  49. // leave this line to enable renewal base level modifier on skill damage (selected skills only)
  50. //#define RENEWAL_LVDMG
  51.  
  52. /// renewal cast time variable cast requirement
  53. ///
  54. /// this is the value required for no variable cast-time with stats.
  55. /// formula: (DEX * 2) + INT
  56. /// default: 530
  57. //#define RENEWAL_CAST_VMIN 530
  58.  
  59. /// renewal enchant deadly poison algorithm
  60. ///
  61. /// leave this line to enable the renewed EDP algorithm
  62. /// under renewal mode:
  63. /// - damage is NOT increased by 400%
  64. /// - it does NOT affect grimtooth
  65. /// - weapon and status ATK are increased
  66. //#define RENEWAL_EDP
  67.  
  68. #endif // _CONFIG_RENEWAL_H_
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement