ในตัวอย่างจะเป็นการใส่ , ในจำนวนเงิน
[hide]
เริ่มแรกไปที่ Window_Gold เอา
ก้าวเดินจะใช้
หรือถ้าต้องการใส่ที่ HP SP EXP ก็ทำได้ แต่ไปทำที่ Window_Base
Special Thank : shinryu
[hide]
เริ่มแรกไปที่ Window_Gold เอา
gold = $game_party.gold.to_s
count = gold.size / 3
shift = gold.size % 3
for i in 0...count
index = shift + i * 4
gold.insert index, ","
end
gold.slice!(0, 1) if shift == 0
ไปวางต่อจากself.contents.clear
จากนั้นเปลื่ยนself.contents.draw_text(4, 0, 120-cx-2, 32, $game_party.gold.to_s, 2)
เป็นself.contents.draw_text(4, 0, 120-cx-2, 32, gold.to_s, 2)
สามารถเอาไปประยุกต์ใช้กับ step ก็ได้ก้าวเดินจะใช้
step = $game_party.steps.to_s
[/hide]หรือถ้าต้องการใส่ที่ HP SP EXP ก็ทำได้ แต่ไปทำที่ Window_Base
Special Thank : shinryu
[เทคนิค] มาใส่ , ในตัวเลขของเกมเรากัน