วิธีการปรับอัตราการคูณและดรอป
เริ่มต้นกับขั้นตอนแรกก่อนนะครับ * การปรับอัตราการคูณภายในเซิฟเวอร์ *
- ให้ทำการเปิดไฟล์ conf\battle\exp.conf
- และค้นหา
// Rate at which exp. is given. (Note 2)
base_exp_rate: 100
// Rate at which job exp. is given. (Note 2)
job_exp_rate: 100
- base_exp_rate ส่วนนี้คือ อัตราการคูณ EXP, job_exp_rate และส่วนคือ JOBS
- ค่าพื้นฐานคือ 100 เท่ากับว่าเซิฟเวอร์มีอัตราการคูณ 1 เท่า (100 = 1) หากใส่ตัวเลขเป็น 700 อัตรการคูณก็จะ คูณ 7 เท่า นะครับ
ขั้นตอนที่สอง * การปรับอัตราการดรอปภายในเซิฟเวอร์ *
- ให้ทำการเปิดไฟล์ conf\battle\drops.conf
- และค้นหา ในส่วนนี้ทั้งส่วนคืออัตรการดรอปครับ ให้เราแก้เฉพาะบรรทัดแรกเท่านั้นครับ
// Item drop rates (Note 2)
// The rate the common items are dropped (Items that are in the ETC tab, besides card)
item_rate_common: 100
item_rate_common_boss: 100
item_drop_common_min: 1
item_drop_common_max: 10000
// The rate healing items are dropped (items that restore HP or SP)
item_rate_heal: 100
item_rate_heal_boss: 100
item_drop_heal_min: 1
item_drop_heal_max: 10000
// The rate at which usable items (in the item tab) other then healing items are dropped.
item_rate_use: 100
item_rate_use_boss: 100
item_drop_use_min: 1
item_drop_use_max: 10000
// The rate at which equipment is dropped.
item_rate_equip: 100
item_rate_equip_boss: 100
item_drop_equip_min: 1
item_drop_equip_max: 10000
// The rate at which cards are dropped
item_rate_card: 100
item_rate_card_boss: 100
item_drop_card_min: 1
item_drop_card_max: 10000
// The rate adjustment for the MVP items that the MVP gets directly in their inventory
item_rate_mvp: 100
item_drop_mvp_min: 1
item_drop_mvp_max: 10000
// The rate adjustment for card-granted item drops.
item_rate_adddrop: 100
item_drop_add_min: 1
item_drop_add_max: 10000
// Rate adjustment for Treasure Box drops (these override all other modifiers)
item_rate_treasure: 100
item_drop_treasure_min: 1
item_drop_treasure_max: 10000
- item_rate_common การดรอปไอเท็มทั่วไป (ขยะ)
- item_rate_heal การดรอปไอเท็มเพิ่มพลัง
- item_rate_use อัตรการดรอปไอเท็มใช้งาน เช่น ยาวิ่ง ยาเร่ง และอื่น
- item_rate_equip อัตราการดรอปไอเท็มสวมใส่
- item_rate_card อัตราการดรอปการ์ด
- item_rate_mvp อัตราการดรอปของรางวัลได้จาก MVP
- item_rate_adddrop อัตราการดรอปไอเท็มที่ได้จากการ์ดทั่วไป เช่นการ์ด Mimic
- item_rate_treasure อัตราการดรอปกล่องสมบัติ เช่น OBB, OPB, OVB อื่นๆ
วิธีการใส่ก็ใส่ตัวเลขลงไปได้เลยนะครับ
ตัวอย่าง
// The rate the common items are dropped (Items that are in the ETC tab, besides card)
item_rate_common: 1500
item_rate_common_boss: 100
item_drop_common_min: 1
item_drop_common_max: 10000
- แบบนี้ก็จะมีอัตราการดรอปไอเท็มทั่วไป (ขยะ) คูณ 15 ** สังเกตุส่วนนี้ item_rate_common: 1500
- ค่าพื้นฐานคือ 100 เท่ากับว่าเซิฟเวอร์มีอัตราการคูณ 1 เท่า (100 = 1) หากใส่ตัวเลขเป็น 700 อัตรการคูณก็จะ คูณ 7 เท่า นะครับ
- ทั้งอัตรา EXP และการดรอป เมื่อทำการแก้ไขเสร็จเรียบร้อยให้ทำการ Save และกด @reloadbattleconf หรือทำการรันเซิฟเวอร์ใหม่ได้เลยครับ
--- เสร็จเรียบร้อย ---