Remove caps from registers
re Strength triggers and time registers
This commit is contained in:
parent
56908b35f9
commit
7310e3cd13
|
@ -27,8 +27,8 @@
|
|||
|
||||
Dim registers() As String = Core.Player.RegisterData.Split(CChar(","))
|
||||
For Each r As String In registers
|
||||
If r.StartsWith("ACTIVATOR_REMOVE_STRENGTH_ROCK_" & Screen.Level.LevelFile & "_") = True Then
|
||||
Dim RemoveID As String = r.Remove(0, ("ACTIVATOR_REMOVE_STRENGTHT_ROCK_" & Screen.Level.LevelFile & "_").Length - 1)
|
||||
If r.StartsWith(("activator_remove_strength_rock_" & Screen.Level.LevelFile & "_").ToLower()) = True Then
|
||||
Dim RemoveID As String = r.Remove(0, ("activator_remove_strength_rock_" & Screen.Level.LevelFile & "_").ToLower().Length - 1)
|
||||
For Each sRock As Entity In Screen.Level.Entities
|
||||
If sRock.EntityID = "StrengthRock" Then
|
||||
If sRock.ID = CInt(RemoveID) Then
|
||||
|
@ -51,7 +51,7 @@
|
|||
CType(sRock, StrengthRock).CanBeRemoved = True
|
||||
End If
|
||||
If RemoveForever = True Then
|
||||
ActionScript.RegisterID("ACTIVATOR_REMOVE_STRENGTH_ROCK_" & Screen.Level.LevelFile & "_" & sRock.ID.ToString())
|
||||
ActionScript.RegisterID("activator_remove_strength_rock_" & Screen.Level.LevelFile & "_" & sRock.ID.ToString())
|
||||
End If
|
||||
If ActivateScript <> "" Then
|
||||
If Core.CurrentScreen.Identification = Screen.Identifications.OverworldScreen Then
|
||||
|
|
|
@ -358,8 +358,8 @@ nextScript:
|
|||
If i <= Data.Count - 1 Then
|
||||
Dim d As String = Data(i)
|
||||
|
||||
If d.StartsWith("[TIME|") = True Then
|
||||
Dim timeString As String = d.Remove(0, ("[TIME|").Length)
|
||||
If d.StartsWith("[time|") = True Then
|
||||
Dim timeString As String = d.Remove(0, ("[time|").Length)
|
||||
timeString = timeString.Remove(timeString.IndexOf("]"))
|
||||
|
||||
Dim timeData() As String = timeString.Split(CChar("|"))
|
||||
|
|
|
@ -67,7 +67,7 @@
|
|||
|
||||
If validValue = True Then
|
||||
If isValidFormat = True Then
|
||||
Dim s As String = "[TIME|" & ActionScript.TimeToUnix(Date.Now) & "|" & args(1) & "|" & format & "]" & args(0)
|
||||
Dim s As String = "[time|" & ActionScript.TimeToUnix(Date.Now) & "|" & args(1) & "|" & format & "]" & args(0)
|
||||
ActionScript.RegisterID(s)
|
||||
Else
|
||||
Logger.Log(Logger.LogTypes.Warning, "ScriptCommander.vb: (@register." & command & ") Invalid date format used for time based register!")
|
||||
|
|
Loading…
Reference in New Issue