I was making don’t press the button but is this block code good so far?
Should the signs(Like < or > or =) be from the math section or should it just be from the logic section?
Right now it’s from the logic section
I was making don’t press the button but is this block code good so far?
What are you going to accomplish with this blockcode?
Wait I know
I looks ok to my perspective.
ok.
A luck meter.
I would try this instead to keep it consistent:
set luck to randint(1,100)
if luckevent <= 33
do broadcast message "BADLUCK"
elseif luckevent <= 66 and luckevent>=33
do broadcast message "NEUTRALLUCK"
elseif luckevent <= 100 and luckevent >= 66
do broadcast message "GOODLUCK"
also that:
i made a few mistakes. here is a simpler version:
set luck to randint(1,3)
if luckevent = 1
do broadcast message "BADLUCK"
elseif luckevent =2
do broadcast message "NEUTRALLUCK"
elseif luckevent =3
do broadcast message "GOODLUCK"
Can I still use the other one though? Or should I use this one? And also yeah I used logic because math wouldn’t fit into the gap it wouldn’t let me so I used logic because that just sounds logical(lol).
The simpler one I made might be workable
This topic was automatically closed 3 hours after the last reply. New replies are no longer allowed.