Jump to content
  • Sky
  • Blueberry
  • Slate
  • Blackcurrant
  • Watermelon
  • Strawberry
  • Orange
  • Banana
  • Apple
  • Emerald
  • Chocolate
  • Charcoal

Rahph

Members
  • Content Count

    9
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by Rahph

  1. That's right!
    A NoteBlock Studio player! The bane of all multiplayer servers, as I have myself learned.
    I wrote this first a standalone OpenOS program but I later ported it to work on drones (it loads code from a remote server).
    Honestly, I just wanted to listen to positive force from VVVVVV and found that nbs is a fairly easy format to parse and play... So I did!
    And now the server I play on is full of drones playing awful renditions of despacito. I guess I brought this upon myself.

    Anyway, here is a github repository

    https://github.com/thekoksus/oc-nbs-player

    And a video demonstration, where I show both the standalone and drone player (Excuse the weird audio, idk what caused my OBS to record like this):

    Currently I also am experiencing a weird issue where sometimes the audio skips or repeats but I am unable to fix that. However if you do come up with something, please do open a pull request.

    So, are you ready to experience the music revolution?


    (All .lua files published in the repository are released to the public domain. I do not claim rights to songs featured in that repo.)

     

    Enjoy :-)
     

  2. but lord gaben would die.

     

     

    I wish Half Life 3 and all its episodes were out

    But then you would be in grave. That is how late it would be :)

     

    I wish minecraft was optimized at any point

  3. xD the "Pop-Up!" made me laugh. If someone is going to make this, it must include "Single Russian women in your local area!"

    I'll try to learn lua and coroutines so maybe i will write that shell in the future :)

  4. Beacuse I cannot code properly, I have made a concept instead of program. As i know, multi tasking api was added recently to open computers, so i came up with an idea for widget- based addon for shell! You have your shell, but under it there are widgets, Those add great functionality to shell, that could be replaced with actual GUI for more deep experience. My idea would also be to create easy-to-use api to create widgets/apps.

     

    How it looks:

     

    post-2650-0-33331200-1457985860_thumb.png

     

     

    (PSA is Pro Shell App)

     

    How the code for icon that inputs "cd /bin" to the shell.

    function init() --Initialization function
    setResolution(20,20) --Size of our box
    setBcgrColour(#RRGGBB) --Colour of our box
    end
    
    function display() --Function started when showing box
    drawMainBox() --Draw main box (with preferences set in init function)
    drawBox(1,1,10,2,#RRGGBB,#TEXTRRGGBB, "Test", 0) --Draw little box inside (button). First_X, First_Y, Second_X, Second_Y, Background color, Text colour, Text, Id
    end
    
    function click() --Clik event
    if clicked == 0 then --Check what button was pressed (Remember our id?)
    shellOutput("cd /bin") --Push data to shell (shows up confirmation box)
    end
    end
    
    
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.