You are viewing our Forum Archives. To view or take place in current topics click here.
[COD4] Help Coding REWARD 4000MSP
Posted:

[COD4] Help Coding REWARD 4000MSPPosted:

TTG_Sh3llz
  • Challenger
Status: Offline
Joined: Nov 04, 201112Year Member
Posts: 111
Reputation Power: 4
Status: Offline
Joined: Nov 04, 201112Year Member
Posts: 111
Reputation Power: 4
what is the coding for fog? such as green,red,blue,yellow,and more. I will PM the one who helped me the code.
#2. Posted:
Lewispeter
  • Resident Elite
Status: Offline
Joined: May 11, 201212Year Member
Posts: 273
Reputation Power: 11
Status: Offline
Joined: May 11, 201212Year Member
Posts: 273
Reputation Power: 11
<startDist> 256
<halfwayDist> 512
<red> 1
<green> 0
<blue> 0
<transition time> 0

That should be right
#3. Posted:
dalvindabeast215
  • Resident Elite
Status: Offline
Joined: May 12, 201113Year Member
Posts: 241
Reputation Power: 10
Status: Offline
Joined: May 12, 201113Year Member
Posts: 241
Reputation Power: 10
actually i believe it's one of these>>> doDisco()
{
while(1)
{
//Flashing Vision which is just fog.
SetExpFog(256, 512, 1, 0, 0, 0);
wait .1;
SetExpFog(256, 512, 0, 1, 0, 0);
wait .1;
SetExpFog(256, 512, 0, 0, 1, 0);
wait .1;
SetExpFog(256, 512, 0.4, 1, 0.8, 0);
wait .1;
SetExpFog(256, 512, 0.8, 0, 0.6, 0);
wait .1;
SetExpFog(256, 512, 1, 1, 0.6, 0);
wait .1;
SetExpFog(256, 512, 1, 1, 1, 0);
wait .1;
SetExpFog(256, 512, 0, 0, 0.8, 0);
wait .1;
SetExpFog(256, 512, 0.2, 1, 0.8, 0);
wait .1;
SetExpFog(256, 512, 0.4, 0.4, 1, 0);
wait .1;
SetExpFog(256, 512, 0, 0, 0, 0);
wait .1;
SetExpFog(256, 512, 0.4, 0.2, 0.2, 0);
wait .1;
SetExpFog(256, 512, 0.4, 1, 1, 0);
wait .1;
SetExpFog(256, 512, 0.6, 0, 0.4, 0);
wait .1;
SetExpFog(256, 512, 1, 0, 0.8, 0);
wait .1;
SetExpFog(256, 512, 1, 1, 0, 0);
wait .1;
SetExpFog(256, 512, 0.6, 1, 0.6, 0);
wait .1;
SetExpFog(256, 512, 1, 0, 0, 0);
wait .1;
SetExpFog(256, 512, 0, 1, 0, 0);
wait .1;
SetExpFog(256, 512, 0, 0, 1, 0);
wait .1;
SetExpFog(256, 512, 0.4, 1, 0.8, 0);
wait .1;
SetExpFog(256, 512, 0.8, 0, 0.6, 0);
wait .1;
SetExpFog(256, 512, 1, 1, 0.6, 0);
wait .1;
SetExpFog(256, 512, 1, 1, 1, 0);
wait .1;
SetExpFog(256, 512, 0, 0, 0.8, 0);
wait .1;
SetExpFog(256, 512, 0.2, 1, 0.8, 0);
wait .1;
SetExpFog(256, 512, 0.4, 0.4, 1, 0);
wait .1;
SetExpFog(256, 512, 0, 0, 0, 0);
wait .1;
SetExpFog(256, 512, 0.4, 0.2, 0.2, 0);
wait .1;
SetExpFog(256, 512, 0.4, 1, 1, 0);
wait .1;
SetExpFog(256, 512, 0.6, 0, 0.4, 0);
wait .1;
SetExpFog(256, 512, 1, 0, 0.8, 0);
wait .1;
SetExpFog(256, 512, 1, 1, 0, 0);
wait .1;
SetExpFog(256, 512, 0.6, 1, 0.6, 0);

}
} <<<
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.