Guest User

Untitled

a guest
Jul 18th, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. ///////////////////////////////////////////////////////
  2. dragon_soul_table.txt
  3.  
  4. Group RefineStepTables
  5. {
  6. Group Default
  7. {
  8. #--# NEED_COUNT FEE STEP_LOWEST STEP_LOW STEP_MID STEP_HIGH STEP_HIGHEST
  9. STEP_LOWEST 2 1000000 0 100 0 0 0
  10. STEP_LOW 2 5000000 0 20 80 0 0
  11. STEP_MID 2 20000000 0 0 55 45 0
  12. STEP_HIGH 2 50000000 0 0 0 70 30
  13. }
  14. }
  15. changed to that:
  16. Group RefineStepTables
  17. {
  18. Group Default
  19. {
  20. #--# NEED_COUNT FEE STEP_LOWEST STEP_LOW STEP_MID STEP_HIGH STEP_HIGHEST
  21. STEP_LOWEST 2 1000000 0 100 0 0 0
  22. STEP_LOW 2 5000000 0 20 80 0 0
  23. STEP_MID 2 20000000 0 0 55 45 0
  24. STEP_HIGH 2 50000000 0 0 0 70 30
  25. STEP_HIGHEST 2 75000000 0 0 0 0 100
  26. }
  27. }
  28.  
  29. ///////////////////////////////////////////////////////
  30. dragon_soul_refine_settings.py
  31.  
  32. default_step_need_count = [2, 2, 2, 2]
  33. changed to that:
  34. default_step_need_count = [2, 2, 2, 2, 2]
  35.  
  36. default_step_fee = [1000000, 5000000, 20000000, 50000000]
  37. changed to that:
  38. default_step_fee = [1000000, 5000000, 20000000, 50000000, 75000000]
  39.  
  40. chance_table_step = [ 100, 80, 45, 30]
  41. changed to that:
  42. chance_table_step = [ 100, 80, 45, 30, 100]
Advertisement
Add Comment
Please, Sign In to add comment