Nametagneuerungen auskommentiert

This commit is contained in:
VegaZ
2021-04-04 04:00:39 +02:00
parent 758cbbabb3
commit e36a6d6e2d
3 changed files with 14 additions and 16 deletions

View File

@@ -104,22 +104,22 @@ namespace ReallifeGamemode.Server.Events
{
case null:
player.SetSharedData("blipColor", 0);
player.SetSharedData("nameTagColor", new int[] { 255, 255, 255 });
//player.SetSharedData("nameTagColor", new int[] { 255, 255, 255 });
break;
case 0:
player.SetSharedData("blipColor", 0);
player.SetSharedData("nameTagColor", new int[] { 255, 255, 255 });
//player.SetSharedData("nameTagColor", new int[] { 255, 255, 255 });
break;
case 8:
player.SetSharedData("blipColor", 83);
player.SetSharedData("nameTagColor", new int[]{171, 0, 207});
//player.SetSharedData("nameTagColor", new int[]{171, 0, 207});
break;
case 7:
player.SetSharedData("blipColor", 52);
player.SetSharedData("nameTagColor", new int[] { 0, 54, 0});
//player.SetSharedData("nameTagColor", new int[] { 0, 54, 0});
break;
case 4:
@@ -127,7 +127,7 @@ namespace ReallifeGamemode.Server.Events
break;
case 9:
player.SetSharedData("blipColor", 25);
player.SetSharedData("nameTagColor", new int[] { 0, 166, 133});
//player.SetSharedData("nameTagColor", new int[] { 0, 166, 133});
break;
}