Visual Novel Maker

Visual Novel Maker

moonie Jul 22, 2018 @ 2:50pm
Love Meter
Is there something like a love meter that I can make in this game?
Like
If you got x amount of points you can do this action with x character
If you got y amount of points you cannot do this action y character
< >
Showing 1-1 of 1 comments
Black Sea Salt Jul 22, 2018 @ 11:35pm 
It's a very easy thing to do actually. If you used a condition branch like this and put it in a Common Event (CE for short), then you can call it every time you gain a point with X character.


Condition | If: Number | Variable: L[0001: X Character Points] | Is: Greater or equal to | Value: 5 |
==========================
Switch | Target: Switch | Switch: G[0001: 2nd scene] | Value: ON
==========================
Else If | If: Number | Variable: G[0001: X Character Points] | Is: Greater or equal to | Value: 10 |
==========================
Switch | Target: Switch | Switch: L[0002: 1st scene] | Value: ON
==========================


And if you wanted more scenes like this then keep adding more else if branches. If the "Greater or equal to" doesn't work for you and causes bugs, like whenever you run the CE it keeps turning ON old switches that you wanted OFF after the player already gaining them, and wanted them OFF for whatever reason then just use "Equal to".

The CE will be called every time a point is gained anyway so it will check if that X characters points equals exactly "5" before continuing any further to gain more points and miss the condition.

If there is something I didn't explain please tell me, I hope this helps.
< >
Showing 1-1 of 1 comments
Per page: 1530 50

Date Posted: Jul 22, 2018 @ 2:50pm
Posts: 1