• CFN has a new look and a new theme

    "I bore you on eagle's wings, and brought you to Myself" (Exodus 19:4)

    More new themes will be coming in the future!

  • Desire to be a vessel of honor unto the Lord Jesus Christ?

    Join For His Glory for a discussion on how

    https://christianforums.net/threads/a-vessel-of-honor.110278/

  • CFN welcomes new contributing members!

    Please welcome Roberto and Julia to our family

    Blessings in Christ, and hope you stay awhile!

  • Have questions about the Christian faith?

    Come ask us what's on your mind in Questions and Answers

    https://christianforums.net/forums/questions-and-answers/

  • Read the Gospel of our Lord Jesus Christ?

    Read through this brief blog, and receive eternal salvation as the free gift of God

    /blog/the-gospel

  • Taking the time to pray? Christ is the answer in times of need

    https://christianforums.net/threads/psalm-70-1-save-me-o-god-lord-help-me-now.108509/

  • Focus on the Family

    Strengthening families through biblical principles.

    Focus on the Family addresses the use of biblical principles in parenting and marriage to strengthen the family.

Click on list show options click 1 get moving text involves

  • Thread starter Thread starter Fira
  • Start date Start date
F

Fira

Guest
This involves Game Maker so this is correct place (hopefully anyways).

I am planning on making a Game Maker Language (GML) and Drag and Drop (D&D) (GML and D&D) website and need coding help.

Also if possible people can choose color(s), background(s).
For example:

with spaces to prove point easiest
[ text ] What Game Maker thing would you like to learn? [ /text ]
[ click to reveal list ]
[ options ]
Mega Man weapon change no pro
How to make own game(s), other(s) like Final Fantasy II for SNES
How to get it to where if website Google is chosen to go to hp -
[ / options ]
[ / click to reveal list ]

[ if option chosen Mega Man weapon change no pro ]
[ text is middle of screen view color is chosen color ]
[ marquee ]
[ code ]
MegaMan
LeafMegaMan
GamingControlObj
Object7
Weapon Selector
ChooseMegaMan
ChooseLeafMegaMan

MegaMan
Key Press Enter event (change key press as wanted, needed,
othered, both, mix, all)
room_goto(pauseRoom);

GamingControlObj (abbreviated GCO)
Create Event
var_LeafBeetleDefeated = true
var_room = room

Room Start Event
if ( !instance_exists(Object7) )
{
var_room = room;
}
else if ( instance_exists(Object7) )
{
var_room = var_room;
}
Weapon Selector
keyboard left hspeed = -4
keyboard release left hspeed = 0
keyboard right hspeed = 4
keyboard right released hspeed = 0
keyboard up vspeed = -9
keyboard up released vspeed = 0
keyboard down vspeed = 4
keyboard down released vspeed = 0

Collision with ChooseLeafMegaMan
if ( keyboard_check_pressed(ord("3")) && GCO.var_LeafBeatleDefeated == false )
{
sound_play(errorsound);
}
else if (keyboard_check_pressed(ord("3")) && GCO.var_LeafBeatleDefeated == true )
{
sound_play(accepted);
with(all) if variable_local_exists("var_NotLeafMegaMan) instance_change(LeafMegaMan,true);
room_goto(GCO.var_room);
}
[ /code ]
[ /marquee ]
[ /text is middle of screen view color is chosen color ]
[ /if option chosen Mega Man weapon change no pro ]
 
Yes, you posted this in the right place, although Tech Talk may be another good place. I'm not sure how many game coders we've got here. Hopefully if we do they will be able to help you, but you will definately have much more success posting this on a game developer's forum. Sorry I couldn't be of more help.

I like playing games though. :D
 
Back
Top