Hey guys.
I'll be able to release the map tonight or sooner, though 1 thing needs to be fixed before all of that.
The music toggle script doesn't seem to be working.
l28 made the button for it, and it shows up fine in-game. Though, if you press it, it doesn't work or do anything. The music starts at startup becuase it's the backround music.
Here is the script. (Made by gamma)
Reply if you have a fix or know how to fix it.
Code:
(global boolean ishOn false)

(global boolean isOn false)

(script dormant music_toggle
    (if
        (= ishOn false)
        (begin
            (set isOn true)
            (set ishOn true)
        )
        (begin
            (set isOn false)
            (set ishOn false)
        )
    )
)

(script continuous go
    (if
        (= isOn true)
        (begin
            (sound_looping_start "levels\luck\music\mech8gardens" none 1)
        )
        (begin
            (sound_looping_stop "levels\luck\music\mech8gardens")
        )
    )
)