Menu

Show posts

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

Messages - dayowlron

#21
The Rumpus Room / Re: Open the puzzle pod
Wed 04/03/2020 17:05:00
1 of them is close: 7 Miles = 11.265408 Kilometers
#22
The Rumpus Room / Re: Exciting exotic animals
Tue 25/02/2020 21:06:34
I always thought the proboscis monkey looked kinda strange. reminds me of a caricature of Jimmy Durante.

https://www.britannica.com/animal/proboscis-monkey
#23
The Rumpus Room / Re: Open the puzzle pod
Tue 25/02/2020 20:58:34
That would have really been funny if I had put: 788 844466. using the code i used that would be "PUTIN" lol
#24
The Rumpus Room / Re: Open the puzzle pod
Mon 24/02/2020 14:36:35
got the idea from an old episode of NCIS where a guy was locked in a coffin and they recovered his phone and saw he seemed to enter a bunch of random numbers until one of them realized he wasn't just entering random numbers because he was losing air but was typing a text message
#25
The Rumpus Room / Re: Open the puzzle pod
Mon 24/02/2020 01:08:19
Quote from: Kweepa on Sun 23/02/2020 16:59:22
Spoiler
PLANS
[close]
Spoiler
'Old school' (2000?) phone keypad typing
[close]
Correct, could it have been solved without the clue, i wonder.
#26
The Rumpus Room / Re: Open the puzzle pod
Sun 23/02/2020 03:30:13
hint:
Spoiler

Quote from: blur on Thu 20/02/2020 22:40:48
Spoiler
It is PUTIN's telephone number?
[close]
There is something there.
[close]
#27
IF I Understand what you are looking for:
You would start by saving the mouse x coordinate and the mouse y coordinate then you would need to have some amount to which the mouse would have to move before it would even register that the mouse was moved. The reason for the latter is if someone has their hand on the mouse and moves it only slightly you probably would not want the animation to take place.
Create 2 global ints (SaveMouseX and SaveMouseY) and initialize them to -1. lets use 10 pixels for the movement to be detected so the player has to move at least 10 pixels before anything happens.
When you want the activity to begin.
Code: ags

  SaveMouseX = mouse.x;
  SaveMouseY = mouse.y;

Then in one of the repeatedly execute
Code: ags

  if (SaveMouseX > -1) {
    if (abs(mouse.x - SaveMouseX) > abs(mouse.y - SaveMouseY)) { //Mouse was moved horizontally more so check to see if left, right or not far enough
      if (abs(mouse.x - SaveMouseX) > 10) {
        if (mouse.x > SaveMouseX) {
          //Animation code for mouse moving right goes here
        } else {
          //Animation code for mouse moving left goes here
        }
      }
    } else { //Mouse was moved vertically more so check to see if up, down or not enough
      if (abs(mouse.y - SaveMouseY) > 10) {
        if (mouse.y > SaveMouseY) {
          //Animation code for mouse moving down goes here
        } else {
          //Animation code for mouse moving up goes here
        }
      }
    }
  }


I typed all of this in freehand so not sure if there are any syntax errors in it.
#28
The Rumpus Room / Re: Open the puzzle pod
Thu 20/02/2020 19:56:37
Nothing? the code is really an easy one.
#29
The Rumpus Room / Re: *Guess the Movie Title*
Tue 18/02/2020 15:25:45
Well Melora Hardin is in the first picture, but the only picture containing Jason Gedrick is he is flying the plane in the second picture.
#30
The Rumpus Room / Re: Open the puzzle pod
Tue 18/02/2020 15:22:21
This one may be an easy one:
75552667777
#31
The Rumpus Room / Re: *Guess the Movie Title*
Tue 18/02/2020 13:49:50
Quote from: Ben X on Tue 18/02/2020 07:38:30
Iron Eagle?
Correct Ben. Good movie and not a parody to top gun but they do have a similar vibe to them
#32
The Rumpus Room / Re: Open the puzzle pod
Tue 18/02/2020 13:48:41
Cool. I liked that puzzle. I will post a new one later.
#33
The Rumpus Room / Re: Open the puzzle pod
Mon 17/02/2020 22:29:57
Spoiler
BOARD?
[close]
#34
The Rumpus Room / Re: *Guess the Movie Title*
Mon 17/02/2020 22:17:35
nothing right yet. it is not any of those actors either.
another shot:
#35
The Rumpus Room / Re: *Guess the Movie Title*
Fri 14/02/2020 05:06:08
When I saw that picture I could just see Fozzie saying something like "...a bear in his natural habitat... a Studebaker"

Next pic:
#36
The Rumpus Room / Re: *Guess the Movie Title*
Thu 13/02/2020 18:36:47
Is that the Muppet Movie?
#37
The Rumpus Room / Re: Open the puzzle pod
Wed 12/02/2020 19:22:32
Darn, I was so sure that was the answer..
#38
The Rumpus Room / Re: Open the puzzle pod
Tue 11/02/2020 21:18:46
Spoiler
MORSE?
[close]
#39
The Rumpus Room / Re: Open the puzzle pod
Mon 10/02/2020 21:43:34
So is the specific word were looking for:
Spoiler

colas, sodas, drink?
[close]
#40
The Rumpus Room / Re: Open the puzzle pod
Mon 20/01/2020 02:40:26
I can't see the emojis very well. How do I convert the source code Mandle supplied into emojis? never mind, think I got something

🧠🔥
🌸🐎

SMF spam blocked by CleanTalk