Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(1 edit)

Hey Sang, can I have a suggestion for an update? 

1. Can we have option for "show item quantity" only if grather than 1? I would love to have option that it just does not show when "1". 

2. Can we change the "Use Now" to something else? Like via notetags for items, for example <usetext:Eat This> gives us "Eat This" instead of "Use Now".

(+1)

Feature 1 already exists but for feature 2, I'll see if the majority of people really want that.

(1 edit)

Okay, thank you. Can you tell me how to set up the first feature? ^^'

It's in the plugin parameter list, I think it's called "Show Zero Quantity".

(1 edit)

Yeah, but show zero just shows when item=0, and I wanted to show the quantity if item>1; if 1 then does not show. Like if I got a tool (which is always 1), then don't show the quantity. Would be so cool if you could implement that <3

(+1)

Find this part in the code: 

if (quantity > 0 || showZeroQuantity) {

Change 0 to 1 and you should have what you need.

Worked, thank you so much.