Lol, can I resubmit March MAGS? All my characters in that are flying. 
Just kidding, I might do this one too! Lemme brainstorm a bit!

Just kidding, I might do this one too! Lemme brainstorm a bit!
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
function repeatedly_execute()
{
// Code for returning hammer cursor to normal after swing animation timer expires
if (IsTimerExpired(14)){
mouse.ChangeModeView(eModeInteract, -1);
HammerSwing = 0;
}
}
function on_mouse_click(MouseButton button)
{
if (button == eMouseLeft)
{
Room.ProcessClick(mouse.x, mouse.y, mouse.Mode);
// Code for animating hammer swing
if (HammerSwing == 0) {
if (mouse.Mode == eModeInteract && GetLocationType(mouse.x, mouse.y) == eLocationCharacter) {
mouse.ChangeModeView(eModeInteract, 11);
SetTimer(14, 10); // animation takes one second at 40 FPS
HammerSwing = 1;
}
}
}
}
Quote from: Laura Hunt on Tue 17/03/2020 07:13:20Quote from: PlayPretend on Mon 16/03/2020 22:48:05
I'm also exploring making a comedy podcast about a world repeatedly hit by apocalypses.
https://thehardtimes.net/culture/cdc-warns-against-starting-podcasts-while-quarantined/
“We ask all Americans to stay vigilant and resist the temptation to unleash something on our population much, much worse than the virus itself.â€
Sorry, couldn't help it
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.050 seconds with 14 queries.