views
168.5k
likes
160

Comments (215)

What do you think?

EDIT: DOWNSCROLL IS ADDED IN THE UPDATE

HOW TO GET DOWNSCROLL WORKING:

STEP 1: Go into the "mods" folder and then from there go into "scripts".

STEP 2: While in the "scripts" folder delete the file named "Not downscroll".

STEP 3: Go back to the "mods" folder and from there go into "custom_events".

STEP 4: While in "custom_events" open the LUA file (not the text document) named "Cinematics". Make sure it's not the "cinematic" file.

STEP 5: When you have opened up the "Cinematics" file, replace the text inside with this:

-- Created by RamenDominoes (Feel free to credit or not I don't really care)

--Not bad for my first event created... I think

start = 0

finish = 0

function onCreate()

getPropertyFromClass('ClientPrefs', 'downScroll')

--THE TOP BAR

makeLuaSprite('UpperBar', 'empty', 0, -120)

makeGraphic('UpperBar', 1280, 120, '000000')

setObjectCamera('UpperBar', 'hud')

addLuaSprite('UpperBar', false)

--THE BOTTOM BAR

makeLuaSprite('LowerBar', 'empty', 0, 720)

makeGraphic('LowerBar', 1280, 120, '000000')

setObjectCamera('LowerBar', 'hud')

addLuaSprite('LowerBar', false)

end

function onUpdate()

if start == 1 then

doTweenY('Cinematics1', 'UpperBar', 0, 0.5, 'Linear')

doTweenY('Cinematics2', 'LowerBar', 600, 0.5, 'Linear')

noteTweenY('NOTEMOVE1', 0, 120, 0.5, 'Linear')

noteTweenY('NOTEMOVE2', 1, 120, 0.5, 'Linear')

noteTweenY('NOTEMOVE3', 2, 120, 0.5, 'Linear')

noteTweenY('NOTEMOVE4', 3, 120, 0.5, 'Linear')

noteTweenY('NOTEMOVE5', 4, 120, 0.5, 'Linear')

noteTweenY('NOTEMOVE6', 5, 120, 0.5, 'Linear')

noteTweenY('NOTEMOVE7', 6, 120, 0.5, 'Linear')

noteTweenY('NOTEMOVE8', 7, 120, 0.5, 'Linear')

doTweenAlpha('AlphaTween1', 'healthBarBG', 0, 0.25)

doTweenAlpha('AlphaTween2', 'healthBar', 0, 0.25)

doTweenAlpha('AlphaTween3', 'scoreTxt', 0, 0.25)

doTweenAlpha('AlphaTween4', 'iconP1', 0, 0.25)

doTweenAlpha('AlphaTween5', 'iconP2', 0, 0.25)

doTweenAlpha('AlphaTween6', 'timeBar', 0, 0.25)

doTweenAlpha('AlphaTween7', 'timeBarBG', 0, 0.25)

doTweenAlpha('AlphaTween8', 'timeTxt', 0, 0.25)

end

if ClientPrefs == downScroll and start == 1 then

doTweenY('Cinematics1', 'UpperBar', 0, 0.5, 'Linear')

doTweenY('Cinematics2', 'LowerBar', 600, 0.5, 'Linear')

noteTweenY('NOTEMOVE1', 0, 480, 0.5, 'Linear')

noteTweenY('NOTEMOVE2', 1, 480, 0.5, 'Linear')

noteTweenY('NOTEMOVE3', 2, 480, 0.5, 'Linear')

noteTweenY('NOTEMOVE4', 3, 480, 0.5, 'Linear')

noteTweenY('NOTEMOVE5', 4, 480, 0.5, 'Linear')

noteTweenY('NOTEMOVE6', 5, 480, 0.5, 'Linear')

noteTweenY('NOTEMOVE7', 6, 480, 0.5, 'Linear')

noteTweenY('NOTEMOVE8', 7, 480, 0.5, 'Linear')

doTweenAlpha('AlphaTween1', 'healthBarBG', 0, 0.25)

doTweenAlpha('AlphaTween2', 'healthBar', 0, 0.25)

doTweenAlpha('AlphaTween3', 'scoreTxt', 0, 0.25)

doTweenAlpha('AlphaTween4', 'iconP1', 0, 0.25)

doTweenAlpha('AlphaTween5', 'iconP2', 0, 0.25)

doTweenAlpha('AlphaTween6', 'timeBar', 0, 0.25)

doTweenAlpha('AlphaTween7', 'timeBarBG', 0, 0.25)

doTweenAlpha('AlphaTween8', 'timeTxt', 0, 0.25)

end

if finish == 2 then

doTweenY('Cinematics1', 'UpperBar', -120, 0.5, 'Linear')

doTweenY('Cinematics2', 'LowerBar', 720, 0.5, 'Linear')

noteTweenY('NOTEMOVE1', 0, 50, 0.5, 'Linear')

noteTweenY('NOTEMOVE2', 1, 50, 0.5, 'Linear')

noteTweenY('NOTEMOVE3', 2, 50, 0.5, 'Linear')

noteTweenY('NOTEMOVE4', 3, 50, 0.5, 'Linear')

noteTweenY('NOTEMOVE5', 4, 50, 0.5, 'Linear')

noteTweenY('NOTEMOVE6', 5, 50, 0.5, 'Linear')

noteTweenY('NOTEMOVE7', 6, 50, 0.5, 'Linear')

noteTweenY('NOTEMOVE8', 7, 50, 0.5, 'Linear')

doTweenAlpha('AlphaTween1', 'healthBarBG', 1, 0.25)

doTweenAlpha('AlphaTween2', 'healthBar', 1, 0.25)

doTweenAlpha('AlphaTween3', 'scoreTxt', 1, 0.25)

doTweenAlpha('AlphaTween4', 'iconP1', 1, 0.25)

doTweenAlpha('AlphaTween5', 'iconP2', 1, 0.25)

doTweenAlpha('AlphaTween6', 'timeBar', 1, 0.25)

doTweenAlpha('AlphaTween7', 'timeBarBG', 1, 0.25)

doTweenAlpha('AlphaTween8', 'timeTxt', 1, 0.25)

end

if ClientPrefs == downScroll and finish == 2 then

doTweenY('Cinematics1', 'UpperBar', -120, 0.5, 'Linear')

doTweenY('Cinematics2', 'LowerBar', 720, 0.5, 'Linear')

noteTweenY('NOTEMOVE1', 0, 570, 0.5, 'Linear')

noteTweenY('NOTEMOVE2', 1, 570, 0.5, 'Linear')

noteTweenY('NOTEMOVE3', 2, 570, 0.5, 'Linear')

noteTweenY('NOTEMOVE4', 3, 570, 0.5, 'Linear')

noteTweenY('NOTEMOVE5', 4, 570, 0.5, 'Linear')

noteTweenY('NOTEMOVE6', 5, 570, 0.5, 'Linear')

noteTweenY('NOTEMOVE7', 6, 570, 0.5, 'Linear')

noteTweenY('NOTEMOVE8', 7, 570, 0.5, 'Linear')

doTweenAlpha('AlphaTween1', 'healthBarBG', 1, 0.25)

doTweenAlpha('AlphaTween2', 'healthBar', 1, 0.25)

doTweenAlpha('AlphaTween3', 'scoreTxt', 1, 0.25)

doTweenAlpha('AlphaTween4', 'iconP1', 1, 0.25)

doTweenAlpha('AlphaTween5', 'iconP2', 1, 0.25)

doTweenAlpha('AlphaTween6', 'timeBar', 1, 0.25)

doTweenAlpha('AlphaTween7', 'timeBarBG', 1, 0.25)

doTweenAlpha('AlphaTween8', 'timeTxt', 1, 0.25)

end

end

function onEvent(name,value1,value2)

if name == 'Cinematics' then

start = tonumber(value1)

finish = tonumber(value2)

end

end

Downscroll is for babys

UPSCROLL GANG

Here is my fanart

slide2.png

1.5 .... is not out yet

i cant play without downscroll..

It's still far away but it's getting closer. . .



teen
Mild Cartoon Violence
Mild Fantasy Violence
Nothing has been posted to this project page yet. Check back later!