How to have a constant points counter

Firstly I can’t take all the credit for this, it was with the help of @Dara.Amarie for showing me how to make text from overlays and @Winteronepisode for showing me how to show character points the easy way

Here is how to show character points automatically

Now making text from overlays

Both links can be found at the bottom of this thread.

So this is how I make it so that you can have a constant points counter on the screen

Firstly using the text from overlays coding

@overlay OVERLAY NAME create text Points: 673987345012987
@overlay OVERLAY NAME opacity 1 in 0
@overlay OVERLAY NAME shifts to
@overlay OVERLAY NAME scales to

(The number is taken from your characters portal for this example the character is called love.)

Next every time you add a point to the relevant character you will need to clear the overlay and re-add it like so

@LOVE +1
@overlay OVERLAY NAME clear
@overlay OVERLAY NAME create text Points: 673987345012987
@overlay OVERLAY NAME opacity 1 in 0
@overlay OVERLAY NAME shifts to
@overlay OVERLAY NAME scales to

This may seem like a lot to add every time you add points but it you keep it in a document somewhere you can just copy and paste it.
(Replace the + for a - if taking points away.)

Lastly you would have to create the overlay each time there is a new scene

Here is what it would look like in a scene

6 Likes

looks great.

1 Like

Thanks, i’m hoping to use it in a new mini-game :slight_smile:

1 Like

Love it! I’m happy to have helped!

I would have used @ui instead of @overlay myself, just so you can use zooms and not have the points disappear off-screen.

2 Likes

Omg I totally forgot @ui was a thing :rofl: thanks for the reminder :smiley:

1 Like

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