#[Fixed] Is there anyway to make this work with all burst numbers?
1 messages · Page 1 of 1 (latest)
the code changes a ui text to be auto, semi, or a burst. with the burst text i want to to show the amount of bullets the burst shoots with the character "|"
“Burst %d” then string.format(format string, burst count)
where do i put the “Burst %d”?
do i replace the 3 with it or the string next to it?
I’m assuming you want to show how much bullets the burst shoots with the ui right?
yep
Like Burst 5
with the "|" character
Where do you access the burst number
Item.Settings.fireModes[fireMode]
in the string table put “burst %s” and in the code part string.format(string format, string.rep(“|”, Item.Settings.fireModes[fireMode])
You may need to check if it is the burst mode tho
worked, thx a ton