Jump to content


Questioningorno

Member Since 19 Jun 2008
Offline Last Active Jun 05 2010 06:35 AM

Topics I've Started

Setting Image Angle To X/y Of Object

24 August 2009 - 11:34 PM

Title explains it. How would I get the image angle to look at the object at all times. This is probably a pretty simple and easy question.

Thanks!

Hspeed And Vspeed According To Image Angle?

19 August 2009 - 10:38 PM

So I have a bullet (top down game) and it has a different image angle according to where the person is facing. How do I set the hspeed/vspeed according to what the image angle is so it goes in the right direction?

If there is a easier way please tell.


Thanks!

Box To Type In

18 August 2009 - 08:48 PM

I've looked at all the actions and the help file. I can't figure out how to make a box like a message box but you type a value in.  What's the line of code for this?

Thanks!

Saving File

18 August 2009 - 02:23 AM

Uhh... well I don't know how to start this. I have a drawing program and I want all the drawing I have made to be saved so you can edit it later. But I looked through the actions and am wondering how you can save a file onto your computer. How would you go about this? And be able to open it fine?


Thanks in advance.

Show Question Action

17 August 2009 - 10:53 PM

Okay, so I have a short little code that asks you a question and I want to know how to make more then just 2 options.
For instance, here's my code.

Mouse Left Button Pressed
if show_question("Save changes to "+string(global.fname))=1
{
 sleep=100
}
else
{
 room_restart()
}

Don't worry about sleep 100 it's just substituting until this is right. I want these answers: Yes, No, Cancel. After I figure that out how would I check all 3 answers? Because "else" wouldn't work because there are 3 options.

And 1 last thing. This is probably simple but how would I resume back to the program if "cancel" was clicked?


Thanks in advance.