#Page System

1 messages · Page 1 of 1 (latest)

crisp crystal
#

Does anyone know how to make it so when you press next another page of different buttons or text appear? not a collection system btw

magic island
#

Show a pictures of your circuits and give more context

crisp crystal
#

i don’t have the circuits i reseted it

magic island
#

probably better off teleporting the player

#

or using clamps and teleporting all the down and back up

woven rampart
# crisp crystal Does anyone know how to make it so when you press next another page of different...

If you’re just using text to show the information then

First of all spawn a button
Connect the pressed output to an int variable

Make the int variable add one each time you press
So spawn an add chip and connect the output to the input of the variable
And connect one of the inputs in the add to the output of the variable

And the other input is just 1

Then modulo the result by X (the number of pages) -1
So if you have 4 pages it would be modulo by 3

Then connect the modulo output to an int value switch

Configure the switch and add the number of pages you have -1 starting from 0

So if you have 3 it would be
0,1,2

Connect the switch to the text
And then write all the messages you want in the switch and that’s it

woven rampart
crisp crystal
#

but it needs to be a button because text and pressed input

woven rampart