If level RideType = 3, no stop once riding/biking
This commit is contained in:
parent
c1cadd3078
commit
168255e1a0
|
@ -118,6 +118,9 @@ fieldmove_headbutt_used,used~Headbutt!
|
|||
|
||||
fieldmove_waterfall_used,used~Waterfall.
|
||||
|
||||
fieldmove_ride_cannot_walk,You cannot walk here!
|
||||
fieldmove_ride_cannot_ride,You cannot Ride here!
|
||||
fieldmove_ride_used,used~Ride!
|
||||
---
|
||||
GameInteractions:
|
||||
game_interaction_interact,Interact
|
||||
|
@ -2326,6 +2329,7 @@ item_name_676,Water Memory
|
|||
|
||||
Item Use Text:
|
||||
item_cannot_use,Now is not the time~to use that.
|
||||
item_6_cannot_walk,You cannot walk here!
|
||||
item_6_missingskin,You can't use this item~without a bicycle skin.*Its name should be the~same as your current one,~but with "_bike" at the end.
|
||||
item_6_only_custom_gamemodes,This item can't be used~on this GameMode.
|
||||
|
||||
|
|
|
@ -14,19 +14,22 @@ Namespace Items.KeyItems
|
|||
Public Overrides Sub Use()
|
||||
If GameModeManager.ActiveGameMode.IsDefaultGamemode = False AndAlso Core.Player.IsGameJoltSave = False Then
|
||||
If Screen.Level.Riding = True Then
|
||||
Screen.Level.Riding = False
|
||||
Screen.Level.OwnPlayer.SetTexture(Core.Player.TempRideSkin, True)
|
||||
Core.Player.Skin = Core.Player.TempRideSkin
|
||||
If Screen.Level.RideType = 3 Then
|
||||
Screen.TextBox.Show(Localization.GetString("item_6_cannot_walk", "You cannot walk here!"), {}, True, False)
|
||||
Else
|
||||
Screen.Level.Riding = False
|
||||
Screen.Level.OwnPlayer.SetTexture(Core.Player.TempRideSkin, True)
|
||||
Core.Player.Skin = Core.Player.TempRideSkin
|
||||
|
||||
Screen.TextBox.Show(Localization.GetString("item_use_6", "<player.name> stepped~off the Bicycle."))
|
||||
While Core.CurrentScreen.Identification <> Screen.Identifications.OverworldScreen
|
||||
Core.CurrentScreen = Core.CurrentScreen.PreScreen
|
||||
End While
|
||||
Screen.TextBox.Show(Localization.GetString("item_use_6", "<player.name> stepped~off the Bicycle."))
|
||||
While Core.CurrentScreen.Identification <> Screen.Identifications.OverworldScreen
|
||||
Core.CurrentScreen = Core.CurrentScreen.PreScreen
|
||||
End While
|
||||
|
||||
If Screen.Level.IsRadioOn = False OrElse GameJolt.PokegearScreen.StationCanPlay(Screen.Level.SelectedRadioStation) = False Then
|
||||
MusicManager.Play(Screen.Level.MusicLoop)
|
||||
If Screen.Level.IsRadioOn = False OrElse GameJolt.PokegearScreen.StationCanPlay(Screen.Level.SelectedRadioStation) = False Then
|
||||
MusicManager.Play(Screen.Level.MusicLoop)
|
||||
End If
|
||||
End If
|
||||
|
||||
Else
|
||||
If Screen.Level.Surfing = False AndAlso Screen.Level.Riding = False AndAlso Screen.Camera.IsMoving() = False AndAlso Screen.Camera.Turning = False And Screen.Level.CanRide() = True Then
|
||||
Dim BikeSkin As String = Core.Player.Skin & "_Bike"
|
||||
|
|
|
@ -1014,18 +1014,22 @@ Public Class PartyScreen
|
|||
|
||||
Private Sub UseRide()
|
||||
If Screen.Level.Riding = True Then
|
||||
Screen.Level.Riding = False
|
||||
Screen.Level.OwnPlayer.SetTexture(Core.Player.TempRideSkin, True)
|
||||
Core.Player.Skin = Core.Player.TempRideSkin
|
||||
If Screen.Level.RideType = 3 Then
|
||||
TextBox.Show(Localization.GetString("fieldmove_ride_cannot_walk", "You cannot walk here!"), {}, True, False)
|
||||
Else
|
||||
Screen.Level.Riding = False
|
||||
Screen.Level.OwnPlayer.SetTexture(Core.Player.TempRideSkin, True)
|
||||
Core.Player.Skin = Core.Player.TempRideSkin
|
||||
|
||||
ChooseBox.Showing = False
|
||||
Core.SetScreen(Me.PreScreen)
|
||||
If Core.CurrentScreen.Identification = Identifications.MenuScreen Then
|
||||
Core.SetScreen(Core.CurrentScreen.PreScreen)
|
||||
End If
|
||||
ChooseBox.Showing = False
|
||||
Core.SetScreen(Me.PreScreen)
|
||||
If Core.CurrentScreen.Identification = Identifications.MenuScreen Then
|
||||
Core.SetScreen(Core.CurrentScreen.PreScreen)
|
||||
End If
|
||||
|
||||
If Screen.Level.IsRadioOn = False OrElse GameJolt.PokegearScreen.StationCanPlay(Screen.Level.SelectedRadioStation) = False Then
|
||||
MusicManager.Play(Level.MusicLoop, True, 0.01F)
|
||||
If Screen.Level.IsRadioOn = False OrElse GameJolt.PokegearScreen.StationCanPlay(Screen.Level.SelectedRadioStation) = False Then
|
||||
MusicManager.Play(Level.MusicLoop, True, 0.01F)
|
||||
End If
|
||||
End If
|
||||
Else
|
||||
If Screen.Level.Surfing = False And Screen.Camera.IsMoving() = False And Screen.Camera.Turning = False And Level.CanRide() = True Then
|
||||
|
@ -1057,7 +1061,7 @@ Public Class PartyScreen
|
|||
MusicManager.Play("ride", True)
|
||||
End If
|
||||
Else
|
||||
TextBox.Show("You cannot Ride here!", {}, True, False)
|
||||
TextBox.Show(Localization.GetString("fieldmove_ride_cannot_ride", "You cannot Ride here!"), {}, True, False)
|
||||
End If
|
||||
End If
|
||||
End Sub
|
||||
|
|
|
@ -324,7 +324,7 @@ Public Class Level
|
|||
''' <summary>
|
||||
''' The type of Ride the player can use on this map.
|
||||
''' </summary>
|
||||
''' <remarks>0 = Depends on CanDig and CanFly, 1 = True, 2 = False</remarks>
|
||||
''' <remarks>0 = Depends on CanDig and CanFly, 1 = True, 2 = False, 3 = Can't stop riding</remarks>
|
||||
Public Property RideType As Integer
|
||||
Get
|
||||
Return Me._rideType
|
||||
|
@ -1214,6 +1214,8 @@ Public Class Level
|
|||
Return True
|
||||
Case 2
|
||||
Return False
|
||||
Case 3
|
||||
Return True
|
||||
End Select
|
||||
End If
|
||||
If Screen.Level.CanDig = False And Screen.Level.CanFly = False Then
|
||||
|
|
Loading…
Reference in New Issue