예제 #1
0
        public void OnPlayerLoggedIn(Client player)
        {
            LoadPlayerLastLocation(player);
            LoadApperance(player);
            LoadPlayerStats(player);

            TriggerUserMission(player);
            MedicalCommands.CheckIfPlayerIsDead(player);
            PoliceCommands.CheckPlayerCuffed(player);
            PhoneManager.UpdatePhoneNumbers(player);
            SecurityCheck(player);
            player.SetLoggedIn(true);
        }
예제 #2
0
 public static void OnFingerPrintScanned(Client sender, string fingerPrint)
 {
     PoliceCommands.FindFingerPrintOwner2(sender, fingerPrint);
 }