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 ]
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 ]