Quick Sign In:  

Forum: General Discussion

Topic: Script Help
Looking for VDJ have a script help that will:
HOT CUE- 1st beat, 32nd beat (beginning) and than -32 beats from the end of track.

This is what I have but it doesn't place a CUE at the end (-32 beats) it only places it at that beat and I need manually add it:

goto_first_beat & set_cue 1 & beatjump +16 & set_cue 2 & beatjump +16 & set_cue 3 & goto_mixpoint "EndTempo" & set_cue 4
 

geposted Mon 21 Oct 24 @ 5:53 pm
locoDogPRO InfinityModeratorMember since 2013
try this
goto_first_beat & set_cue 1 & goto 100% & ( get_beatpos & param_mod 4 & param_multiply -1 & param_cast relative & goto ) & goto -32 & set_cue 2




@devs Only, I tried a param_cast nothing before the set_cue 2 but it didn't kill the implicit, it still blocked setting cue 2 as a float was tacked on the end.
goto_first_beat & set_cue 1 & goto 100% & get_beatpos & param_mod 4 & param_multiply -1 & param_cast relative & goto & param_cast 'nothing' & goto -32 & set_cue 2
 

geposted Mon 21 Oct 24 @ 6:16 pm
They are both close but neither are exact at the 1,32 and -32 from the end.
 

geposted Mon 21 Oct 24 @ 6:48 pm
What about only -32 beats from the end? Is that an easier way, don’t mind hitting 2 custom buttons
 

geposted Mon 21 Oct 24 @ 6:51 pm
locoDogPRO InfinityModeratorMember since 2013
goto 0% & set_cue 1 & goto 100% & goto -32 & set_cue 2
 

geposted Mon 21 Oct 24 @ 6:56 pm
strange that didn't do anything
 

geposted Mon 21 Oct 24 @ 7:06 pm
Sorry just released it did not copy, it works thank you
 

geposted Tue 22 Oct 24 @ 10:19 pm