Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.22 KB | None | 0 0
  1. MAX_LEVEL_STATUS: unsigned int
  2. Forces a maximum level. If you level up higher than this, you'll receive no status points anymore.
  3.  
  4. MAX_STATUS: unsigned int
  5. Sets a maximum of distributed status points. If you e. g. set it to 20, you can only raise your stat's by 20 each status.
  6.  
  7. SERVER_CHECK: 1/0
  8. Checks if the client version and the server version are the same. If not, the server will send a message to the client and kick him out after a few seconds.
  9.  
  10. SERVER_VERSION: unsigned int
  11. There you can set the version of your server for the SERVER_CHECK.
  12.  
  13. MAX_HT: unsigned int
  14. It's the same option than MAX_STATUS but only for the con-attribute.
  15.  
  16. MAX_IQ: unsigned int
  17. It's the same option than MAX_STATUS but only for the int-attribute.
  18.  
  19. MAX_ST: unsigned int
  20. It's the same option than MAX_STATUS but only for the str-attribute.
  21.  
  22. MAX_DX: unsigned int
  23. It's the same option than MAX_STATUS but only for the dex-attribute.
  24.  
  25. ATTR_ALWAYS_ADD: 1/0
  26. If enabled you'll get 100% chance to add new attributes to you equipment.
  27.  
  28. ATTR_ALWAYS_5_ADD: 1/0
  29. If enabled you'll get 100% chance to add new attributes to you equipment. Counts only for 5th Bonus (blessing marble).
  30.  
  31. ATTR_CHANGE_LIMIT: int
  32. You can set a limit time to change your attributes again. It's changed to seconds (set it to 1 to let the users switch only once per second their attributes).
  33.  
  34. GUILD_MAX_LEVEL: int
  35. Sets the maximum guild level. You can raise it up to 50 since the exp-table is extended to handle up to 50.
  36.  
  37. ITEM_OWNERSHIP_TIME: int
  38. If you drop an item, this option sets how long the item will be flagged as yours.
  39.  
  40. MIN_ADDON_FKS: int
  41. Sets the minimum ability bonus dmg you can have.
  42.  
  43. MAX_ADDON_FKS: int
  44. Sets the maximum ability bonus dmg you can have.
  45.  
  46. MIN_ADDON_DSS: int
  47. Sets the minimum normal hit bonus dmg you can have.
  48.  
  49. MIN_ADDON_DSS: int
  50. Sets the maximum normal hit bonus dmg you can have.
  51.  
  52. HORSE_MAX_LEVEL: int
  53. Sets the maximum level of your horse (you still need to write quests or something like that to allow players to achieve the higher horse-levels).
  54.  
  55. MARRIAGE_MAX_PERCENT: int
  56. Sets the maximum allowed percent of love points. Warning! If love points > 100 it'd lead into bugs with breaking the marriage.
  57.  
  58. PC_MAX_MOVEMENT_SPEED: int
  59. Sets the maximum movement speed for players.
  60.  
  61. PC_MAX_ATTACK_SPEED: int
  62. Sets the maximum attack speed for players.
  63.  
  64. TAXES: int
  65. From 0 to 100. Sets the % how much taxes you have to pay while shopping.
  66.  
  67. DYE_LEVEL: int
  68. Sets how many levels you have to get after you can change your hair color again.
  69.  
  70. YANG_MAX: long long
  71. Sets the maximum gold you can carry. You can change it up to 999.999.999.999 gold.
  72.  
  73. package_enable: 0/1
  74. 1 = enabled. Disabled by default. Enable to use the package-feature.
  75.  
  76. log_level: 0/1/2
  77. Sets the logging level. 0 means to logs will be entered in your database.
  78. 1 means that the most important tables (hack-logs for example) will be used
  79. 2 means that all logging tables will be used
  80.  
  81. item_floor_time: int
  82. Set the time how long a dropped item will be lying on the ground (by monsters)
  83.  
  84. max_rank_points: long int
  85. Set the maximum rank points
  86.  
  87. movement_speed: int
  88. Set the initial movement speed for players.
  89.  
  90. belt_all_allow_items: 0/1
  91. Allow Players to store every item in their belt inventory
  92.  
  93. attr_rare_enable: 0/1
  94. Allow the using of rare attributes (6th and 7th attributes). Default: ON.
  95.  
  96. GOLD_DROP_TIME: int
  97. Sets the time how long dropped gold will lay on the ground until it's purged.
  98.  
  99. ITEM_DROP_TIME: int
  100. Sets how long dropped items will lay on the ground intil it's purged.
  101.  
  102. BELT_FORCE_SLOTS: int
  103. Forces to open up the given amount of slots in your belt inventory. If this value is higher than the grade of your belt, it'll open the given amount of slots.
  104. If it's lower, the amount your belt provides will be used. For example: You set 10. You've got a belt that opens 5 slots. 10 will be opened. Now you set 4 and still have the same belt.
  105. This time 5 slots will be opened. This does also work when no belts are weared. But be careful: Since there's also a clientside part the slots may appear to be locked but you can still put items into them
  106.  
  107. trade_effect: 1/0
  108. Enables a effect that'll occur when people are traing stuff. Enabled by default.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement