ItsMods

Full Version: Invisible players
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
is it possiable to make players invisable or partially for modding? or will i have to w8 till mod support
Try
Code:
self Hide();
Will make a player invisible (Worked In MW2)
example: xD
Code:
if ( self.pers["team"] == game["attackers"] ) {
    while(1){
self Hide();        
wait 0.5;
self Show();
wait 0.25;
    }
}
Means the player will be flashing continuously
(12-27-2010, 06:19)[MPMG]House Wrote: [ -> ]Try
Code:
self Hide();
Will make a player invisible (Worked In MW2)
example: xD
Code:
if ( self.pers["team"] == game["attackers"] ) {
    while(1){
self Hide();        
wait 0.5;
self Show();
wait 0.25;
    }
}
Means the player will be flashing continuously

k thanks