Economics integration?

Hi

Have there been any changes with the economics integration? I can't seem to get the remove plugin to work with the economics cost since the last update. It worked before.

got the same issue here.

hi bro

economics hooks has been messed up since update

is there a chance you would fix it?

thanks in advance 

@Tryhard

Change line 1972 from

var balance = Economics.Call("Balance", player.userID);​
to
var balance = Economics.Call("Balance", (ulong)player.userID);​



Change line 1984 from

var withdraw = Economics.Call("Withdraw", player.userID, (double)currencyInfo.Amount);​
to
var withdraw = Economics.Call("Withdraw", (ulong)player.userID, (double)currencyInfo.Amount);​



Change line 2147 from

var result = Economics.Call("Deposit", player.userID, (double)currencyInfo.Amount);​
to
var result = Economics.Call("Deposit", (ulong)player.userID, (double)currencyInfo.Amount);​
H8b3dTo9eGYR4rn.png agamemnon

Change line 1972 from

var balance = Economics.Call("Balance", player.userID);​
to
var balance = Economics.Call("Balance", (ulong)player.userID);​


Change line 1984 from

var withdraw = Economics.Call("Withdraw", player.userID, (double)currencyInfo.Amount);​
to
var withdraw = Economics.Call("Withdraw", (ulong)player.userID, (double)currencyInfo.Amount);​


Change line 2147 from

var result = Economics.Call("Deposit", player.userID, (double)currencyInfo.Amount);​
to
var result = Economics.Call("Deposit", (ulong)player.userID, (double)currencyInfo.Amount);​

Thanks! 🙏