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.
Economics integration?
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);
tovar balance = Economics.Call("Balance", (ulong)player.userID);
Change line 1984 from
var withdraw = Economics.Call("Withdraw", player.userID, (double)currencyInfo.Amount);
tovar withdraw = Economics.Call("Withdraw", (ulong)player.userID, (double)currencyInfo.Amount);
Change line 2147 from
var result = Economics.Call("Deposit", player.userID, (double)currencyInfo.Amount);
tovar result = Economics.Call("Deposit", (ulong)player.userID, (double)currencyInfo.Amount);
agamemnonChange line 1972 from
tovar balance = Economics.Call("Balance", player.userID);
var balance = Economics.Call("Balance", (ulong)player.userID);
Change line 1984 fromtovar withdraw = Economics.Call("Withdraw", player.userID, (double)currencyInfo.Amount);
var withdraw = Economics.Call("Withdraw", (ulong)player.userID, (double)currencyInfo.Amount);
Change line 2147 fromtovar result = Economics.Call("Deposit", player.userID, (double)currencyInfo.Amount);
var result = Economics.Call("Deposit", (ulong)player.userID, (double)currencyInfo.Amount);
Thanks! 🙏