Added @Player.RemoveMoney(int)

This commit is contained in:
JappaWakka 2022-12-31 21:04:11 +01:00
parent 2328ca5c67
commit 73727edb6c
1 changed files with 4 additions and 0 deletions

View File

@ -234,6 +234,10 @@
Case "money", "addmoney"
Core.Player.Money += int(argument)
IsReady = True
Case "removemoney"
Core.Player.Money -= int(argument)
IsReady = True
Case "setmovement"
Dim movements() As String = argument.Split(CChar(","))