Mist
Mist
The error outputed in the console is as follows: Last login: Wed May 17 19:39:57 on ttys002 /Users/---/Desktop/slimevr-wrangler ; exit; ---@MacBook-Pro ~ % /Users/---/Desktop/slimevr-wrangler ; exit; thread 'main' panicked at...
I made an iframe extension a while back that allows you to place unlimited iframes with 0 restrictions on site contents and cors and edit them in real time, at...
```js do ( network "getsync" "https://hi.com/text.txt" ) then ( page_data = data data = "" page = "loaded" ) ``` Allows osl to run a command without it stopping the...
```js class "player(id, position, money)" ( self.test(this.input) = ( return this.input == "test" ) ) P1 = new player("1",0,0) log P1.test("test") ``` Static ```js class "Test()" ( static.hello() = (...
Allow for fsl files in origin to be created and run, possible application support for gui once @ThePandaDever adds gui https://github.com/ThePandaDever/Flufi-OS
# OSL Commands ## package "use" "test" // sets data variable to "Successfully found and installed package" or "Failed to find package" // so that you can do error handling...
# Key History A simple extension to track pressed keys in a queue system to ensure that despite project lag, you will still be able to handle all key presses....
Really Cool Idea, allow the user to place multiple tiled desktops like windows. Normal System: ``` Desktop1 Desktop2 | \ | window window window ``` Origin Desktop Splitting: ``` Screen...
For an or statement, you can use ```js if in1 == true ( return true ) else ( return in2 ) ``` And then you get the same functionality as...
```js if scope.name == "main" ( window "add_sub" 1 ) mainloop: import "win-buttons" subloop: 1 log "hi" window "stop" ```