-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5869e70
commit 722fbfe
Showing
10 changed files
with
80 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
#include ../funcs/dx_bot_funcs.dta | ||
#include ../funcs/dx_camera_funcs.dta | ||
#include ../world/dx_camera_funcs.dta | ||
#include ../game/dx_game_funcs.dta | ||
#include ../game/dx_game_reset_funcs.dta | ||
#include ../funcs/dx_log_funcs.dta | ||
#include ../funcs/dx_overshell_funcs.dta | ||
#include ../overshell/dx_overshell_funcs.dta | ||
#include ../funcs/dx_presence_funcs.dta | ||
#include ../funcs/dx_read_write_funcs.dta | ||
#include ../funcs/dx_special_char_funcs.dta | ||
#include ../track/dx_mtv_funcs.dta | ||
#include ../track/dx_countdown_funcs.dta | ||
#include ../track/dx_track_funcs.dta | ||
#include ../track/dx_track_funcs.dta | ||
#include song_select/dx_song_select_funcs.dta |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
{func | ||
dx_song_select_enter | ||
{dx_presence_manager} | ||
;{dx_sv_menu_logo_set sv4_panel} | ||
{set $dx_trainer_real_guitar FALSE} | ||
{set $dx_trainer_real_bass FALSE} | ||
{set $dx_trainer_real_keys FALSE} | ||
{set $dx_trainer_real_drum FALSE} | ||
{set $dx_skip_game_setup FALSE} | ||
{unless $dx_song_select_noise {synth stop_all_sfx TRUE}} ; dx - removes the annoying noises in song select | ||
{dx_send_leader_song_speed} | ||
{if $dx_confirm_song_count | ||
{set $high_song_count 4000} | ||
{unless $rb3e_checked_song_count | ||
{set $rb3e_checked_song_count TRUE} | ||
{if {> {{song_select_panel find song.lst} num_data} $high_song_count} | ||
{dx_modal_messenger_symbol 'High song counts, especially with multiple players, have been known to cause instability issues after prolonged play-time. It is recommended to:\nStick to music video venues\nTurn off song transition cutscenes\nAvoid very long, 10 min+ songs\nOr lower your song count\nYou have been warned.\n\nTo disable this warning go to Deluxe Settings > Tweaks > Other Settings > Pop-Up Options'} | ||
} | ||
} | ||
} | ||
{unless $gocentral_sanity_checked | ||
{if {&& {! {session_mgr is_local}} {< {{song_select_panel find song.lst} num_data} 130}} | ||
{set $gocentral_sanity_checked TRUE} | ||
{dx_modal_messenger_symbol 'If you show up to custom online lobbies in 2023 without dlc I hope you find jesus'} | ||
} | ||
} | ||
} | ||
{func | ||
dx_song_select_endurance | ||
{if {|| $dx_customizer $dx_auto_endurance} | ||
{script_task kTaskSeconds | ||
(delay {if_else $dx_auto_endurance 1.5 0}) | ||
(script | ||
{gamemode set_mode qp_coop} | ||
{music_library select_highlighted_node {input_mgr get_user}} | ||
) | ||
} | ||
} | ||
} | ||
#define DX_SONG_LIST_LEFT_ACTION | ||
( | ||
({&& | ||
{== $action kAction_Left} | ||
{! | ||
{song.lst is_scrolling}}} | ||
{unless | ||
[waiting_for_sort] | ||
{song.lst set_scroll_user $user} | ||
{song.lst scroll -10}}) ; dx scroll the list up by 10 slots when pressing left dpad | ||
) | ||
#define DX_SONG_LIST_RIGHT_ACTION | ||
( | ||
({&& | ||
{== $action kAction_Right} | ||
{! | ||
{song.lst is_scrolling}}} | ||
{unless | ||
[waiting_for_sort] | ||
{song.lst set_scroll_user $user} | ||
{song.lst scroll 10}}) ; dx scroll the list down by 10 slots when pressing right dpad | ||
) |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters