https://kingmidis.itch.io/screenwarp
Precision/puzzle platformer about looping back!
By KingMidis
| // how to break the decryption | |
| const https = require('https'); | |
| const crypto = require('crypto'); | |
| const PROJECT_URL = 'https://www.cocrea.world/@RedLzer2048/SprunkiHyperShifted'; | |
| function fetch(url) { | |
| return new Promise((resolve, reject) => { | |
| https.get(url, { headers: { 'User-Agent': 'Mozilla/5.0' } }, res => { | |
| if (res.statusCode >= 300 && res.statusCode < 400 && res.headers.location) { |
https://kingmidis.itch.io/screenwarp
Precision/puzzle platformer about looping back!
By KingMidis
| (function (Scratch) { | |
| /* | |
| Experimental extension for Scratch. | |
| */ | |
| var am_global_loop; | |
| class AudioStream { | |
| constructor(runtime, vm) { | |
| this.runtime = runtime; | |
| this.vm = vm; | |
| this.contextList=[]; |