Iron Sky?
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 MenuQuote from: Snarky on Mon 27/03/2017 20:17:54
The skeleton was wearing a diving suit with air tanks, and the explanation is that he was diving in a lake when a helicopter came to scoop up water to put out the forest fire, accidentally grabbing him with it (and then he was dumped over the forest, of course).
//function hChair_Interact()
if (...)
{
player.Walk(335, 175, eBlock, eWalkableAreas);
Wait(20);
player.FaceDirection(eDirectionUp, eBlock);
Wait(5);
player.LockViewFrame(70, 0, 0);
waitphase = true; //true if player sits.
player.SpeechView = 78; //Sitting view
}
//function rep_exec()
if (waitphase == true)
{
if (((mouse.IsButtonDown(eMouseLeft)) && (GetLocationType(mouse.x, mouse.y) == eLocationNothing))) //leftclick on the walkable area or
{
player.ChangeView(9);
player.SpeechView = 10;
player.UnlockView();
player.Walk(player.x, player.y+2, eBlock, eAnywhere);
waitphase = false;
}
}
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 0.161 seconds with 15 queries.