I've decided to do not participate in the AlienWare Compo, because I have too much to do and too little time to do it, so I've decided to make a tank game. Anyway good luck to you all!!!
The game looks fantastic, but in the night atmosphere... Here's the ambient code:
***Code starts here***
backdrop on
rem it's the same if I use 0 and rgb(0,0,0)
color backdrop rgb(0,0,0)
color ambient light 32
set ambient light 75
rem ***The fog***
fog on
fog distance 8000
fog color rgb(8,8,8)
***Code finished***
All right, the atmosphere is all set up and I have my night atmosphere, but when my smoke sprites dissappear...:
***FUNCTION MAKE SMOKE***
Function MakeSmoke(x#,y#,z#,Size#,Speed#)
for t=0 to 90
if object exist(t+1000)=0 then u=t : exit
next t
Make object plain u+1000,Size#,Size#
Texture object u+1000,1000
set object to camera orientation u+1000
rem I think the problem is here
set object u+1000,1,0,1,1,0,0,1
position object u+1000,x#,y#,z#
SmokeLife(u)=50
SmokeSpeed#(u)=Speed#
EndFunction
***END OF FUNCTION***
Ok, my smoke gets created and does what smokes do

. Here's the updating code
***UPDATING SECTION OF THE SMOKE***
SmokeLife(t)=SmokeLife(t)-1
if SmokeLife(t)<=30 and object exist(t+1000) then texture object t+1000,1001
if SmokeLife(t)<=15 and object exist(t+1000) then ghost object on t+1000
if SmokeLife(t)<=0 and object exist(t+1000) then delete object t+1000
***END OF THE UPDATING SECTION***
So, what happens?, well, my smoke objects are colored with blue, like if there was a blue light or if the object is fading to the traditional blue background (the background of most of the tutorials), and I don't know what to do, i've tried putting the "color backdrop" instruction in a loop, changing the values of the "set object" instruction.....everything!.
To say it simply..¿How I make a fullbright object for the day atmosphere and how do I make a medium-bright object for the night atmosphere but WITHOUT affecting it with that blue light?
Forgive my "code sections" but I don't know how to put a code snippet, I fear that the format of my post will be changed in a way thatr I don't want

i'll try to learn how to use it
Please help me

. Thanks in advance
I'm a newbie
