diff --git a/P3D/World/ActionScript/V2/ScriptCommands/DoScreen.vb b/P3D/World/ActionScript/V2/ScriptCommands/DoScreen.vb index 0874957cc..9c6eb297c 100644 --- a/P3D/World/ActionScript/V2/ScriptCommands/DoScreen.vb +++ b/P3D/World/ActionScript/V2/ScriptCommands/DoScreen.vb @@ -12,6 +12,7 @@ Select Case command.ToLower() Case "showmessagebox" + '@screen.showmessagebox(str_message|[intArr_RGB_background]|[intArr_RGB_font]|[intArr_RGB_border]) Dim messageBox As New UI.MessageBox(CurrentScreen) Dim colorsplit() As String = argument.Split("|") Select Case argument.Split("|").Count @@ -127,6 +128,7 @@ CanContinue = False Case "showimage" + '@screen.showimage(str_texture,[str_sfxname],[int_x],[int_y],[int_w],[int_h])) Dim Texture As Texture2D = TextureManager.GetTexture(argument.GetSplit(0)) Dim Sound As String = "" If argument.Split.Count > 1 Then diff --git a/P3D/World/ActionScript/V2/ScriptCommands/DoText.vb b/P3D/World/ActionScript/V2/ScriptCommands/DoText.vb index 5ee43ee09..a46aa05a9 100644 --- a/P3D/World/ActionScript/V2/ScriptCommands/DoText.vb +++ b/P3D/World/ActionScript/V2/ScriptCommands/DoText.vb @@ -12,6 +12,7 @@ Select Case command.ToLower() Case "notification" + '@text.notification(message,[int_delay=500],[int_backgroundID=0],[int_IconID=0],[str_sfx],[str_script],[bool_force=0]) Dim _NotificationPopup As New NotificationPopup Dim args As String() = argument.Split(CChar(",")) Select Case args.Length diff --git a/P3D/World/ActionScript/V2/ScriptConstructs/DoPlayer.vb b/P3D/World/ActionScript/V2/ScriptConstructs/DoPlayer.vb index 893d53684..41530d209 100644 --- a/P3D/World/ActionScript/V2/ScriptConstructs/DoPlayer.vb +++ b/P3D/World/ActionScript/V2/ScriptConstructs/DoPlayer.vb @@ -88,6 +88,7 @@ Case "haspokegear" Return ReturnBoolean(Core.Player.HasPokegear) Case "isgamejolt" + ' Dim adjusted As Boolean = True If argument <> "" Then adjusted = CBool(argument)