Do someone know how can I make the status bar to display the treasure count? I've seen that the SNES port of Wolf3D has this feature.
2 posters
How to show item count on the status bar
ToMi- Freshmen
Number of posts : 23
Age : 16
Location : Czech Republic
Registration date : 2021-03-29
Nexion- Seasoned Wolfer
- Number of posts : 277
Age : 111
Location : Dimension of Anti-Time
Hobbie : bringing chaos & madness into universe
Message : Planet N
Registration date : 2008-02-27
Depends. As far as i know ECWolf doesn't have custom statusbars. In case of coding, you would have to just change LatchNumber (6,16,6,gamestate.score); in DrawScore to LatchNumber (6,16,6,gamestate.treasurecount); and make sure gamestate.treasurecount++; for the bo_item happens before GivePoints()/DrawScore(); or the display will lag behind by one.