[SOLVED]Thermal colorsHi people I am working on a mod and i want to have thermal that all works but i want to know if you can make the thermal a different color such as green, red or something else.
doThermalVision() { self endon("disconnect"); self endon("death"); self notifyOnPlayerCommand( "N", "+actionslot 1" ); while( 1 ) { self waittill("N"); self ThermalVisionOn(); self waittill("N"); self ThermalVisionOff(); wait 0.05; } } code for thermal by pressing N
you place the code into the gsc and add the code self thread doThermalVision(); into the onPlayerSpawned() or into the dvars.
Originally Posted by lolguy1234 Thanks, is there a way that i can change the key? Change the N to what you want. :Đ
yes just change n in self waittill("N"); self ThermalVisionOn(); self waittill("N"); self ThermalVisionOff(); to anything you want