Modme Forums

Display player origin/location in game?

Game Modding | Call of Duty: Black Ops 3 | Scripting


ModmeBot:

Thread By: Lethal Peelz
Does anyone know a script to display the location of the player in game? I am really sh*t at scripting.


ModmeBot:

Reply By: mathfag
If it is coordinates you are looking for it's

trig = GetEnt("insert trigger name here","targetname");

trig waittill("trigger", player);
while(1)
{
iprintlnbold(player.origin);
wait(1);
}

You don't need to use the trigger but make sure that "player" is defined.


ModmeBot:

Reply By: Lethal Peelz

mathfag
If it is coordinates you are looking for it's trig = GetEnt("insert trigger name here","targetname"); trig waittill("trigger", player); while(1) { iprintlnbold(player.origin); wait(1); } You don't need to use the trigger but make sure that "player" is defined.

Thank you, it worked