Fourthed. I mean Barn Runner wins all. May I write the teaser for it? It would be of greatest honor.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu with [code =A GS] (without the space between A and G) that would be great, to help future searches of other people.
Overlay* myOverlay;
int timer_to_remove=0;//creating a timer for the overlay text
function room_Load()
{
cMarcus.X=[insert room width + the character sprite width here];
cMarcus.Y=[insert an ideal Y position];
mouse.Visible=false;//turns the mouse off.
}
function room_AfterFadeIn()
{
RemoveWalkableArea(2);
myOverlay = Overlay.CreateTextual(6,135,300,eFontFont1,65504,"Qualche minuto dopo...");
cMarcus1.Walk(150, 100, eBlock, eWalkableAreas);
cMarcus1.LockView(22);
cMarcus1.Animate(2, 3, eRepeat, eBlock, eForwards);
Wait(240);
cMarcus1.UnlockView();
mouse.Visible=true;//turns mouse back on
}
function repeatedly_execute_always()
{//this handles the overlay without as blocking stuff occurs. It removes the overlay as if you used Wait(200);
if (myOverlay!=null)
{
time_to_remove++;
if (time_to_remove==200)
{
myOverlay.Remove();
}
}
}
if (player.Transparency==100)
{
//player not visible
}
else
{
//player visible
}
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these.
Page created in 1.058 seconds with 16 queries.