diff options
| author | TheUltimateHacker <[email protected]> | 2015-03-20 20:29:17 -0400 |
|---|---|---|
| committer | TheUltimateHacker <[email protected]> | 2015-03-20 20:29:41 -0400 |
| commit | 850716b2a8019fbbdee7f4b53c83051d33ad5e22 (patch) | |
| tree | 35073ccd67fe5330ec19f7ca97699b9ba9019b4f /ShiftOS/Terminal.vb | |
| parent | 4db0241d88bb59059b4c4ba17a9d9478f680bb32 (diff) | |
| download | shiftos-850716b2a8019fbbdee7f4b53c83051d33ad5e22.tar.gz shiftos-850716b2a8019fbbdee7f4b53c83051d33ad5e22.tar.bz2 shiftos-850716b2a8019fbbdee7f4b53c83051d33ad5e22.zip | |
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.
Diffstat (limited to 'ShiftOS/Terminal.vb')
| -rw-r--r-- | ShiftOS/Terminal.vb | 8 |
1 files changed, 4 insertions, 4 deletions
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 |
