Hi, Just wondering how I can stop this plugin from giving Economics for everything players do, like harvesting trees etc gives 1:1 ratio of coin from economics. thanks for any assist
How to disable Economics?
nvm I figured it out, anyone else that wants to do the same, just add code to notepad++ search for economics and delete the bracketed code there are these:
First line:
Economics?.Call("Deposit", player.UserIDString, (double)item.amount * EcoBoost);
Second line:
Economics?.Call("Deposit", player.UserIDString, (double)item.amount * EcoBoost);
Third line
if (Economics == null)
return;
Economics.Call("Deposit", player.UserIDString, (double)item.amount * EcoBoost);
Dont delete any others, This worked for me.