Alright, so my old one was kinda hard to follow, and kinda cringy.
This won't change.
First, we need to trick the parser with a simplified scripting command, say().
You would use this first:
say(-1).
Now put an internal command below it.
say(-1)
changeplayercolour(green)
Now it turns you green, but there is also a bunch of garbage.
To get rid of it...
say(-1)
text(1,0,0,4)
say(4)
changeplayercolour(green)
endcutscene()
untilbars()
loadscript(stop)
If you're confused by that, here:
say(-1) #To trick the parser
text(1,0,0,4) #To also trick the parser
say(x) #Number of lines after this.
[Internal] #Internal commands.
endcutscene() #Needed to remove the black bars.
untilbars() #Waits until black bars are gone, not really needed.
loadscript(stop) #The "stop" can be anything, used to remove the garbage normally displayed.
-=Blank line in VVVVVV, this isn't here in Ved.=-
The loadscript(stop) is really the only thing needed at the end.
There should only be one blank line.
Internal scripting is much more advanced, here's simplified to internal:
say
It has been 5 years since I last saw them...
say
I really miss them...
say
SIGNAL LOST
sad
delay(30)
reply
Who was that...?
Now lets change that.
squeak(terminal)
text(grey,69,420,1)
It has been 5 years since I last saw them...
position(center)
speak_active
squeak(terminal)
text(grey,69,420,1)
I really miss them...
position(center)
speak_active
squeak(terminal)
text(grey,69,420,1)
SIGNAL LOST
position(center)
speak_active
changemood(cyan,1)
squeak(cry)
delay(30)
squeak(cyan)
text(cyan,69,420,1)
Who was that...?
position(player,above)
speak_active
And that is it.
"But wait, there's a terminal sound when the script is activated!"
If you would like it to be removed, it costs two scripts, instead of one.
script1:
iftrinkets(0,script2)
script2:
say(4)
cutscene()
untilbars()
changeplayercolour(green)
endcutscene()
untilbars()
loadscript(stop)
text(1,0,0,4)
-=Exactly one blank line in VVVVVV none in Ved, no more, no less.
"How do I
not show cutscene bars?"
"How do I make a background script?"
For only 1 line:
script1:
iftrinkets(0,script2)
script2:
changeplayercolour(green)
And this is for multiple:
script1:
iftrinkets(0,script2)
script2:
say(4)
flip
delay(30)
flip
loadscript(stop)
text(1,0,0,4)
Here's what you can do with background scripts:

Finally, an example of what you can do in internal scripting:

And that's all you really need to know.
A list of all internal commands is here:
http://tolp2.nl/forum/index.php?topic=21.0And happy scripting.