Online Sequencer Make music online
  • Sequences
  • Members
  • Import MIDI
  • Forum

Existing user? Sign In Create account
Login at Online Sequencer Forums

Online Sequencer Forums › Online Sequencer › Collaborations
« Previous 1 … 6 7 8 9 10 Next »

Beat Swap Remix Challenge

Thread tools
Beat Swap Remix Challenge
Frank Offline
Grey Hat Script Kiddie who can Compose Music
392 Posts:
 
#1
01-06-2019, 10:31 AM (This post was last modified: 01-06-2019, 10:32 AM by Frank.)

In the desc. of the video (by me):
ME
Script -
https://pastebin.com/pB0RR1y6
Sequence -

NOT ME
Based On -

I chose a random ***** sequence to use my latest script on, but my challenge is to find the most interesting songs to use this script on! Feel free to edit the script, just tell us what you changed. I made my code readable for anyone who knows JS.
Code:
function timeToBeat(time) {
   return Math.floor((time % 16) / 4);
}

function changeTime(note, change) {
   song.moveNote(note, note.instrument, note.instrument, note.time, note.time + change, note.type, note.type);
}

var notes = song.notes;
for (var i = 0; i < notes.length; i++) {
   var note = notes[i];
   var beat = timeToBeat(note.time);
   switch (beat) {
       case 1:
       changeTime(note, 8);
       break;
       case 3:
       changeTime(note, -8);
       break;
   }
}

SCRIPT RUNNING TUTORIAL
1. Press f12 to open the dev menu.
2. Navigate to the console tab.
3. Paste the code in. *and press enter*
4. PROFIT


Kim Wrote: + https://js-game.glitch.me + Doesnt take peopel serious if their has badly speling gramer puntuatin
Reply
Lil' Hunter Offline
libtard destroyer
37 Posts:
 
#2
02-09-2019, 12:44 PM
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa


Reply



Users browsing this thread:   1 Guest(s)


  •  Return to Top
  •  Contact Us
  •   Home
  •  Lite mode
© Rush Crafted with ❤ by iAndrew
Powered By MyBB, © 2002-2022 MyBB Group.
Linear Mode
Threaded Mode
View a Printable Version
Subscribe to this thread
Add Poll to this thread
Send thread to a friend