coin scripts

This commit is contained in:
darkfire006 2023-05-29 20:33:16 -05:00
parent ddbbd21043
commit a11f46dcd6
2 changed files with 12 additions and 0 deletions

View File

@ -299,6 +299,16 @@
PlayerStatistics.Track("Obtained BP", bp)
End If
IsReady = True
Case "addcoins"
Dim coins As Integer = int(argument)
Core.Player.Coins += coins
If coins > 0 Then
PlayerStatistics.Track("Obtained Coins", coins)
End If
IsReady = True
Case "showrod"
If Core.CurrentScreen.Identification = Screen.Identifications.OverworldScreen Then

View File

@ -75,6 +75,8 @@
Return Core.Player.Gender
Case "bp"
Return Core.Player.BP.ToString()
Case "coins"
Return Core.Player.Coins.ToString()
Case "badges"
Return Core.Player.Badges.Count
Case "thirdperson"