added support for custom decimal seperators in vip scripting, should solve issues with numbers not being numeric when they actually are
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
|
||||
#alias loadpathchangeprompt {
|
||||
#alarm 0.05 {#say {This function allows the user to alter the currently defined paths for the soundpack to load and should be used in cases when you moved your scripts and sounds folders to a different location/locations. With this in mind, would you like to continue?} VoiceOnly};
|
||||
#alarm 0@{decchar}05 {#say {This function allows the user to alter the currently defined paths for the soundpack to load and should be used in cases when you moved your scripts and sounds folders to a different location/locations. With this in mind, would you like to continue?} VoiceOnly};
|
||||
#pick {P:Are you sure?|
|
||||
yes:pathconfig|
|
||||
no:#abort}}
|
||||
|
||||
#alias pathconfig {
|
||||
#alarm 0.100 {#say {Choose a path to edit, and once satisfied, press 'apply' to continue} VoiceOnly};
|
||||
#alarm 0@{decchar}100 {#say {Choose a path to edit, and once satisfied, press 'apply' to continue} VoiceOnly};
|
||||
#pick {P:Soundpack path Configuration:|
|
||||
Choose the disk where your scripts are stored, currently, (@scriptdisk):diskforscripts|
|
||||
Choose the disk where your sounds are stored, currently (@sounddisk):diskforsounds|
|
||||
@@ -15,20 +15,20 @@ Path for sounds (@tempsppath), press enter to edit:pathforsounds|
|
||||
Apply:finishpathchange}}
|
||||
|
||||
#alias diskforscripts {
|
||||
#alarm 0.50 {#say {please enter the volume of the disk where your scripts are stored, it should be capitalized at all times, examples include, C, D, H, G...} VoiceOnly};
|
||||
#alarm 0@{decchar}50 {#say {please enter the volume of the disk where your scripts are stored, it should be capitalized at all times, examples include, C, D, H, G...} VoiceOnly};
|
||||
#prompt scriptdisk {Disk?};
|
||||
pathconfig}
|
||||
#alias diskforsounds {
|
||||
#alarm 0.50 {#say {please enter the volume of the disk where your sounds are stored, it should be capitalized at all times, examples include, C, D, H, G...} VoiceOnly};
|
||||
#alarm 0@{decchar}50 {#say {please enter the volume of the disk where your sounds are stored, it should be capitalized at all times, examples include, C, D, H, G...} VoiceOnly};
|
||||
#prompt sounddisk {Disk?};
|
||||
pathconfig}
|
||||
|
||||
#alias pathforscripts {
|
||||
#alarm 0.50 {#say {Please enter a path, without disk lable, to the directory with the .set files located in} VoiceOnly};
|
||||
#alarm 0@{decchar}50 {#say {Please enter a path, without disk lable, to the directory with the .set files located in} VoiceOnly};
|
||||
#prompt tempscpath {Path to scripts};
|
||||
pathconfig}
|
||||
#alias pathforsounds {
|
||||
#alarm 0.50 {#say {Please enter a path, without disk lables, to the directory with the sound folders located in} VoiceOnly};
|
||||
#alarm 0@{decchar}50 {#say {Please enter a path, without disk lables, to the directory with the sound folders located in} VoiceOnly};
|
||||
#prompt tempsppath {Path to sounds};
|
||||
pathconfig}
|
||||
|
||||
@@ -38,7 +38,7 @@ pathconfig}
|
||||
#write 1 {#var scpath {@scriptdisk:\@tempscpath}};
|
||||
#write 1 {#var sppath @sounddisk:{@tempsppath}};
|
||||
#close 1;
|
||||
#alarm 0.50 {#say {Press enter to reload} VoiceOnly};
|
||||
#alarm 0@{decchar}50 {#say {Press enter to reload} VoiceOnly};
|
||||
#pick {P:We're about to reload!|
|
||||
Continue:#reload}}
|
||||
#key {shift-f2} {loadpathchangeprompt}
|
||||
Reference in New Issue
Block a user