What's new

Solved Changing zombies Look

Status
Not open for further replies.
CDN

CDN

Enthusiast
Messages
521
Reaction score
180
Points
165
Sin$
7
Would it be possible to change how the zombies looked?
 
ADR x TECH

ADR x TECH

Enthusiast
Messages
236
Reaction score
15
Points
70
Sin$
7
yes you can use visions like
r_fullbright 1
and other stuff like water vision , chrome vision :smile: if you mean like changing their clothes or stuff like that it is possible but only on PC unless you are a very very very good programmer and know a lot about XBOX
 
Upvote 0
Sir Matrix

Sir Matrix

Sing us a song, your the piano man!
Retired
Messages
2,171
Reaction score
1,136
Points
910
Sin$
7
yes you can use visions like
r_fullbright 1
and other stuff like water vision , chrome vision :smile: if you mean like changing their clothes or stuff like that it is possible but only on PC unless you are a very very very good programmer and know a lot about XBOX
I believe he is talking about the model of the zombie. And for that.
Code:
ModelChnge()
{
self endon ( "disconnect" );
self endon ( "death" );
for(;;)
{
zombies = getaiarray("axis");
for ( i = 0; i < zombies.size; i++ )
{
wait 0.1;
zombies[i] setModel("Insert Model Here.");
}
wait .1;
}
}
 
Upvote 0
Atlas

Atlas

С.Т.А.Л.К.Е.Р.
VIP
Retired
Hidden Devils
Mythical Veteran Trifecta TotM
Messages
16,791
Solutions
4
Reaction score
13,970
Points
4,722
Sin$
-7
I believe he is talking about the model of the zombie. And for that.
Code:
ModelChnge()
{
self endon ( "disconnect" );
self endon ( "death" );
for(;;)
{
zombies = getaiarray("axis");
for ( i = 0; i < zombies.size; i++ )
{
wait 0.1;
zombies[i] setModel("Insert Model Here.");
}
wait .1;
}
}
I was going to tag you in this, but saw you were already on the job. Kudos to you, man. :thumbsup:
 
Upvote 0
Status
Not open for further replies.
Top Bottom
Login
Register