Page 1 of 1
[EOS] How can I do Multiplication or math in general
Posted: Mon Dec 05, 2022 8:26 pm
by Epton
I plan to use Prompt and maybe teaseStorage
For example:
Prompt: BPM
I Input 100
so now BPM = 100
now I want to do 100 * 0.5
And have a new BPM of 50
Re: [EOS] How can I do Multiplication or math in general
Posted: Tue Dec 06, 2022 1:43 pm
by Kapierik
Insert an eval action after the prompt stating:
bpm = bpm * 0.5;
Keep in mind the variables are case sensitive, so better use lower case letters for variables.
Re: [EOS] How can I do Multiplication or math in general
Posted: Tue Dec 06, 2022 7:11 pm
by Epton
Kapierik wrote: Tue Dec 06, 2022 1:43 pm
Insert an eval action after the prompt stating:
bpm = bpm * 0.5;
Keep in mind the variables are case sensitive, so better use lower case letters for variables.
Thank you so much