Thread: X-Mas House
View Single Post
  #13  
Old 12-16-2001, 03:04 AM
MaximusP2P MaximusP2P is offline
Pleasurehead
Join Date: Nov 2001
Location: Pangea
Posts: 249
MaximusP2P is on a distinguished road
Send a message via AIM to MaximusP2P
Quote:
Originally posted by AlexH
if (timeout) {
*code;
}
timeout = 0.1 <---- thats the lowest timeout can be
heres what i got maybe you could add it in because i tried your idea and it doesnt work
i also tried putting the timeout = 0.1 inside the brackets but still it doesnt work

if (created) {
drawaslight;
dontblock;
setzoomeffect 1;
setcoloreffect 1,0,0,.99;
}
if (playerenters && timeout==0) {
sleep 0.1;
y=37.5;
sprite=1;
dir=2;
sleep 0.05;........

.........sleep 0.05;
sprite=0;
}

then i tried

if (created) {
drawaslight;
dontblock;
setzoomeffect 1;
setcoloreffect 1,0,0,.99;
}
if (playerenters && timeout==0) {
sleep 0.1;
y=37.5;
sprite=1;
dir=2;
sleep 0.05;........

.........sleep 0.05;
sprite=0;
}
timeout = 0.1;

also

f (created) {
drawaslight;
dontblock;
setzoomeffect 1;
setcoloreffect 1,0,0,.99;
}
if (playerenters && timeout==0) {
sleep 0.1;
y=37.5;
sprite=1;
dir=2;
sleep 0.05;........

.........sleep 0.05;
sprite=0;
timeout = 0.1;
}
__________________
Reply With Quote