Quick Sign In:  

Forum: General Discussion

Topic: How to add comments to VDJ scripts?
Hi,

I have written some rather complex script buttons with multiple conditions.
Do better remember what the intention was, I would like to add comments to the script. Is that possible? Something like the following pseudocode:

cue_name 1 'Intro' & #"this is just a describing comment"
 

Posted Thu 08 Feb 24 @ 3:27 pm
locoDogPRO InfinityModeratorMember since 2013
As long as it isn't in the position of a possible parameter you can add comments in " " anywhere so long as it has & either side, it will ignore what isn't script and just carry on reading

set someVar 1 & "this var is for something" & effect_active echo on & "i turned the echo on"

or you could just comment on the end
set someVar 1 & effect_active echo on & "this var is for something + i turned the echo on"
 

Posted Thu 08 Feb 24 @ 3:35 pm