How Do You Make The Notification Device Tell You how much of something you have?

Can Someone Tell Me How To Make The Notification Device Tell You how much of something you have?

I’m Trying to Do Something Where If A check Fails In the checker device A Notification pops up that Tells You How Much Blue Fish You Have.

I need help Please

1 Like

Well, a simpler way to do it would be with a game overlay set to track a certain item such as cash.

I Don’t Want To Track It.

Did You Even Read What I Said @Quack_Quack?

Yes, it would be much easier to do what you are doing in a game overlay.

The game overlay would only appear for a few seconds, like a notification.

I know, but i want A notification @Quack_Quack

1 Like

Ok.
Use a movement meter that updates a property called “blue_fish”.
Make the movement meter drain 0 blue fish ever 1 second.
On the property device, when it updates, make it run block code in the notification that sets the text to the property.
Block code:

set text: convert number to text: get property: "blue fish"
broadcast message on channel: show_notification

The notification is opened when receiving on “show_notification”.

This should work.

Does this help, @greanpie?

You Cannot Drain 0 Per Tick @Quack_Quack_G

1 Like

Then drain 1 per tick, but when the property changes grant 1.

You also cant change property with the movement meter. is there another way @Quack_Quack_G

1 Like

Yes, use an inventory item manager for blue fish.
Update the ‘blue_fish’ property.
The block code and property would be the same.
Does this help, @greanpie?

1 Like

Why not use a checker to see if your item is enough? Then wire it to a notification. And like Quack_Quack_G was saying, update a property and use it to show how much of that item you have.

1 Like

i think it works!!!

i will mark soloution tomorrow

but i need @Quack_Quack to post a updated version of the solotion cuz it had a few mistakes at first. and i cant mark untill so it could be later maybe

1 Like

Use a inventory item manager that updates a property called “blue_fish”.
On the property device, when it updates, make it run block code in the notification that sets the text to the property.
Block code:

set text: convert number to text: get property: "blue fish"
broadcast message on channel: show_notification

The notification is opened when receiving on “show_notification”.

solved by @Quack_Quack

thank you @Quack_Quack for showing me how to do this!!!

1 Like

This topic was automatically closed 3 hours after the last reply. New replies are no longer allowed.