From 850716b2a8019fbbdee7f4b53c83051d33ad5e22 Mon Sep 17 00:00:00 2001 From: TheUltimateHacker Date: Fri, 20 Mar 2015 20:29:17 -0400 Subject: Experimental Features... LOADS of experimental stuff with Catalyst, Skinning and more! Why not create a Sounds directory in your Skins\Loaded directory, and stick a few .wav files in? Preferrably an infobox.wav, startup.wav and shutdown.wav. Soon, there will be ways of adding these files in-game through the Shifter, don't worry. Also, a Catalyst Story can be found in Helper.vb in the form of a string array. --- ShiftOS/Terminal.vb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ShiftOS/Terminal.vb') diff --git a/ShiftOS/Terminal.vb b/ShiftOS/Terminal.vb index d748bce..2285bc3 100644 --- a/ShiftOS/Terminal.vb +++ b/ShiftOS/Terminal.vb @@ -581,12 +581,12 @@ Public Class Terminal End Sub Private Sub DoCommand() - If command Like "speak_infobox '*' '*'" Then - Dim findwords() As String = command.Split("'") + If command Like "speak_infobox ""*"" ""*""" Then + Dim findwords() As String = command.Split("""") Helper.speakInfoBox(findwords(1), findwords(3)) End If - If command Like "speak '*'" Then - Dim findwords() As String = command.Split("'") + If command Like "speak ""*""" Then + Dim findwords() As String = command.Split("""") If Not findwords(1) = "" Then Helper.speak(findwords(1)) Else -- cgit v1.2.3