Currently coding my inventory and it’s working (mostly).
The problem is that I want every item in its own line and not separated by commas (kinda like a checklist?). I’ve been using *line_break to do it, but now I’ve realised that if an item is set to false, it won’t appear on the list but there will be a blank space where that item should go. Like this:
[b]Inventory[/b]
*line_break
*temp inventory ""
*if backpack
Backpack
*line_break
*if flashlight
Flashlight
*line_break
*if rusty_dagger
Rusty Dagger
*line_break
${rations} Rations
*line_break
${water} Bottles of water
*line_break
*if empty_bottles >=1
${empty_bottles} Empty Bottles
*line_break
${matches} Matches
Is there any way I can make those blank spaces disappear without having to write my inventory all in one line with commas?