add newsfrog & change factionmoney to 500$

This commit is contained in:
michael.reiswich
2021-03-23 14:19:42 +01:00
parent 87f6aaebfe
commit d80b58551a
3 changed files with 6 additions and 2 deletions

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:55c08679902042fb2dc825ea17004c2dacf13432cd715c2c428c6d317a0ccd1a
size 32006144

View File

@@ -87,7 +87,7 @@ namespace ReallifeGamemode.Server.Finance
if (user.Faction != null && user.FactionRank != null) if (user.Faction != null && user.FactionRank != null)
{ {
factionMoney = user.FactionRank.Order * 1000; factionMoney = user.FactionRank.Order * 500;
} }
int otheramount = user.otheramount; int otheramount = user.otheramount;
int amount = wage - (int)(wage * financialInterest) - vehicleTaxation - (int)propertyTax + (int)financialHelp - rentalFees - healthInsurance + (factionMoney ?? 0) + otheramount; int amount = wage - (int)(wage * financialInterest) - vehicleTaxation - (int)propertyTax + (int)financialHelp - rentalFees - healthInsurance + (factionMoney ?? 0) + otheramount;

View File

@@ -756,7 +756,8 @@ namespace ReallifeGamemode.Server.Managers
"veto2", "veto2",
"weevil", "weevil",
"winky", "winky",
"polamggtr", "polamggtr", //mod
"newsfrog", //mod
}; };
private static readonly Dictionary<int, NetHandle> _serverVehicles = new Dictionary<int, NetHandle>(); private static readonly Dictionary<int, NetHandle> _serverVehicles = new Dictionary<int, NetHandle>();