From 5ce0ec2a111ae73063c7a17e92530b02fcf277af Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Mon, 14 Mar 2022 05:15:21 -0500 Subject: [PATCH] Display nametags in IV --- scripts/client/startup.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/client/startup.js b/scripts/client/startup.js index 76cd14a7..c0e59f71 100644 --- a/scripts/client/startup.js +++ b/scripts/client/startup.js @@ -126,11 +126,11 @@ function setUpInitialGame() { //natives.displayHud(false); //natives.displayRadar(false); //natives.displayAreaName(false); - //natives.displayPlayerNames(false); + natives.displayPlayerNames(true); natives.setPoliceRadarBlips(false); natives.removeTemporaryRadarBlipsForPickups(); natives.displayNonMinigameHelpMessages(false); - natives.setDisplayPlayerNameAndIcon(natives.getPlayerId(), false); + natives.setDisplayPlayerNameAndIcon(natives.getPlayerId(), true); // Item/Money Dropping natives.setMoneyCarriedByAllNewPeds(0); @@ -156,6 +156,7 @@ function setUpInitialGame() { natives.startNewScript("spcellphone", 0); //natives.setMessagesWaiting(false); + // Animation libraries natives.requestAnims("DANCING"); return true; }