Who is it?
-
I got bored trying to script a keyboard so it became a small game instead
Please feel free to download it and get irritated playing it
Who is it
-
@ulrik Love it ! The animation with the music is genious
Despite the fact you purposely excluded me from being displayedMath.randInt(0, 13); -> Math.randInt(0, 14);
-
@ustk said in Who is it?:
Despite the fact you purposely excluded me from being displayed
What!!! Oh no, that's a big mistake from my side
I will correct it
-
@ustk is it the
Math.randInt(0, 13)
-
@ulrik To say that I'm always trapped with this as well, since
Math.randInt(x, y)
does not includey
, so you always needy+1
-
@ustk Ah, ok, easy to fall in to that trap. Thanks!
-
Personally attacked
-
@ustk Now you should be included
-
-
@ulrik So funny and entertaining
Thanks for this!
-
Will there be expansions for new members?
-
loving the "success" music...
-
@orange @Lindon @d-healey
Thank you!As soon as David has made the "Expansions, from Basic to Advanced" tutorial there will be a lot of expansions to this
-
@ulrik
Hahahaha
Super AwesomeThat Success Music Is Brilliant
-
Nice one. Here's a way how to automatically download all pictures from the server using the one and only tool for internet-related tasks:
Server.setBaseURL("https://forum.hise.audio/"); // This will populate the root app data folder in a really ugly manner, but hey // it's a demo... var userThumbnailFolder = FileSystem.getFolder(FileSystem.AppData); function downloadCallback(info) { // Don't bother about a callback, these are little images only... } // every forum site is available as REST API by just prepending `/api` to the call Server.callWithGET("api/users?section=sort-posts", {}, function(status, response) { // You'll get an object for all users sorted by post amount // (DAMN YOU D.HEALEY FOR TAKING MY SPOT!) for(u in response.users) { // Now we need to distinguish between the good people // who have uploaded their profile picture directly on the server if(u.picture.charAt(0) == '/') { // magic to get the file extension var ext = u.picture.split("."); ext = ext[ext.length-1]; // Set the base url back to the forum (this call actually does nothing heavyweight Server.setBaseURL("https://forum.hise.audio/"); // download the file to the folder Server.downloadFile(u.picture, {}, userThumbnailFolder.getChildFile(u.username + "." + ext), downloadCallback); } // and the poor souls who need imgur for it... else if (u.picture.charAt(0) == 'h') { var ext = u.picture.split("."); ext = ext[ext.length-1]; var url = "https://i.imgur.com/"; var subUrl = u.picture.replace(url, ""); Server.setBaseURL(url); Server.downloadFile(subUrl, {}, userThumbnailFolder.getChildFile(u.username + "." + ext), downloadCallback); } } });
-
@Christoph-Hart That's what I call magic....
-
@ulrik Bahaha, this is why I still look at this forum every day. Kudos!!
-
@Lunacy-Audio @Natan @Christoph-Hart Thanks!
-
@Christoph-Hart Wow!!!