Merge branch 'develop' of ssh://development.life-of-german.org:451/log-gtav/reallife-gamemode into develop
This commit is contained in:
@@ -50,7 +50,7 @@ export default function (globalData: IGlobalData): void {
|
||||
|
||||
var playerName;
|
||||
var playerId;
|
||||
var playerMoney;
|
||||
var playerMoney = "0";
|
||||
|
||||
mp.events.add("draw", (pName, pId) => {
|
||||
playerName = pName;
|
||||
@@ -110,6 +110,9 @@ export default function (globalData: IGlobalData): void {
|
||||
});
|
||||
|
||||
mp.events.add("updateMoney", (money) => {
|
||||
if (money == undefined)
|
||||
money = 0;
|
||||
|
||||
playerMoney = moneyFormat(money);
|
||||
});
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ namespace ReallifeGamemode.Server.Factions.Medic
|
||||
public static List<MedicTask> ReviveTasks = new List<MedicTask>();
|
||||
public static List<MedicTask> HealTasks = new List<MedicTask>();
|
||||
public static List<MedicTask> FireTasks = new List<MedicTask>();
|
||||
public static int ReviveIncome = 500;
|
||||
public static int ReviveIncome = 100;
|
||||
public static int dutyMedics = 0;
|
||||
|
||||
public static void AddTaskToList(MedicTask task)
|
||||
|
||||
Reference in New Issue
Block a user