Anyone know how to hide a player from spyplanes?
-
We're trying to use GSC to hide players from the minimap from UAVs and Orbital VSATs, I've looked through the game's GSC code but haven't figured out a way to give the player the ghost perk, or hide them from an Orbital VSAT, does anyone know a way?
-
rare giving him the ghost perk, in a few minutes I'll explain better
-
rare
foreach( player in level.players ){
if(player.name == nameplayer)
{
player setperk "specialty_gpsjammer";
}
}this should help you, where it says nameplayer you put the name of the player you want to give the perk to
-
alejandrodarz I don't want to sound like "that guy" but using both
player setperk("specialty_gpsjammer");
andself setperk("specialty_gpsjammer");
buth still show the player in question on the mini map when a uav is in the air.EDIT: Got it to work. but any solution to players standing still or VSATs?
-
rare For those who stay still there are some dvar of the perk gps jammer that you can configure to your liking.You can search among the dvar for perk_gpsjammer.
-
alejandrodarz You cannot edit a dvar for a player
(Solution): Useself gpsJammerActive();
in a loop somewhere in the code when you need to hide the player.Edit: the solution is very, meh... there's ways to change that using GSC which you guys can see in the _spyplane and _radar files. Once I make it a fair bit cleaner ill add it here
-
rare you're right but if I configured the dvar it was for everyone who had the perk, that is, I imagine that if someone didn't have the perk it wouldn't work, anyway, thank you for helping him I was trying jjj
-
Yep, If anyone knows a way to hide a player from a VsaT LET ME KNOW