@Fox The first place I noticed the problem was when I added a visual to the interface. I added a text link to the interface from the 'textlink' section in the open blocks and inserted an image into it. My aim was to have no text inside and only redirect to a link when the image is clicked. However, no matter how much I removed the predefined "New Link" text, whenever I made an addition or deletion to the interface, it would reappear. To solve this issue, I set the font-size of the text link to 0 using CSS, which prevented the "New Link" text from appearing. The problem I'm talking about is probably similar to what I experienced with the text link. The default values assigned by the system, even if you change them, revert back to the values defined by the system when something new is added to the interface or when a setting is changed (for example, background color or deleting a button). Currently, to overcome this issue, I am constantly keeping a backup of the HTML. Whenever I make a new change, I copy the content from the backup, and this is how I'm trying to deal with it, but it's clear there is a problem. Hopefully, it will be resolved soon.
Scheduler is bugged
-
Recieing script errors that shouldn't be there at the time, running the script in the normal bas everything runs fine and even has ignore errors.
"bot1 [987858374] [12:26:28] Thread #1 : Thread ended with message "ReferenceError: Can't find variable: VAR_NEW_LIST4 during execution of action 987858374"
"
Something is wrong with Scheduler -
@rekaa0251 said in Scheduler is bugged:
Recieing script errors that shouldn't be there at the time, running the script in the normal bas everything runs fine and even has ignore errors.
"bot1 [987858374] [12:26:28] Thread #1 : Thread ended with message "ReferenceError: Can't find variable: VAR_NEW_LIST4 during execution of action 987858374"
"
Something is wrong with SchedulerMost likely you use the "OnApplicationStart" function or the "Run function in several threads" action with local variables. To transfer data to these functions, you must use global variables or resources.

-
it seems u perform any action (maybe if statement?) on variable that wasnt yet set.
-
@yourfriendkarol I found what it's doing, it's calling the "RANDOM_LIST_ELEMENT4" before it even creates the "NEW_LIST4"
So it tries to take an element from a list that doesn't yet exist but this does not happend in normal bas lmao -
@rekaa0251 said in Scheduler is bugged:
@yourfriendkarol I found what it's doing, it's calling the "RANDOM_LIST_ELEMENT4" before it even creates the "NEW_LIST4"
So it tries to take an element from a list that doesn't yet exist but this does not happend in normal bas lmaoRestart the script in "record" mode:

and you will have the same mistake