2022-11-16 08:07:44 +07:00
|
|
|
|
Module Com_Infobar
|
|
|
|
|
Public Sub Infobar()
|
|
|
|
|
'Infobar panel-ish and some sort
|
|
|
|
|
Dim infobarcommand As String = command.Replace("infobar ", "")
|
|
|
|
|
Dim advancedtool As Boolean = True
|
|
|
|
|
Select Case infobarcommand
|
|
|
|
|
Case "on"
|
|
|
|
|
Strings.OnceInfo(2) = "True"
|
|
|
|
|
Console.CheckFeature()
|
2022-11-17 11:26:11 +07:00
|
|
|
|
NormalCommand()
|
2022-11-16 08:07:44 +07:00
|
|
|
|
advancedtool = False
|
|
|
|
|
Case "off"
|
|
|
|
|
Strings.OnceInfo(2) = "False"
|
|
|
|
|
Console.CheckFeature()
|
2022-11-17 11:26:11 +07:00
|
|
|
|
NormalCommand()
|
2022-11-16 08:07:44 +07:00
|
|
|
|
advancedtool = False
|
|
|
|
|
End Select
|
|
|
|
|
If advancedtool = True Then
|
|
|
|
|
If infobarcommand Like "color *" Then
|
|
|
|
|
GetColor("infobar", infobarcommand.Substring(6, 1), infobarcommand.Substring(7, 1))
|
2022-11-17 11:26:11 +07:00
|
|
|
|
NormalCommand()
|
2022-11-16 08:07:44 +07:00
|
|
|
|
End If
|
|
|
|
|
End If
|
|
|
|
|
End Sub
|
|
|
|
|
End Module
|