Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions Loungeware/Loungeware.yyp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Loungeware/objects/zayzoon_mailit_oGuyDance/Alarm_0.gml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
/// @desc End Game Early
///@desc End Game Early
microgame_end_early();
2 changes: 2 additions & 0 deletions Loungeware/objects/zayzoon_mailit_oGuyDance/Create_0.gml
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@

//End Game
alarm[0] = 60;
5 changes: 4 additions & 1 deletion Loungeware/objects/zayzoon_mailit_oGuyMove/Create_0.gml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,7 @@ moveSpd = 4;

//Image
xscale = 1.4;
yscale = .6;
yscale = .6;

//Arrows
layer_set_visible("Arrows",true);
25 changes: 25 additions & 0 deletions Loungeware/objects/zayzoon_mailit_oManager/Alarm_0.gml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/// @desc Create Run Prompt

//Get Position
randomize();
var _pos = {
x:random_range(140,820),
y:random_range(80,320),
};

//Create Prompt
instance_create_depth(_pos.x,_pos.y,-(promptAmount+1),zayzoon_mailit_oPrompt,{
sprite_index : zayzoon_mailit_sPromptDeliver,
});

//Increase Prompt Amount
promptAmount ++;

//Repeat
if promptAmount < promptMax and !moving
{
alarm[0] = random_range(30,60);
}



11 changes: 10 additions & 1 deletion Loungeware/objects/zayzoon_mailit_oManager/Create_0.gml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,13 @@ if DIFFICULTY >= 4
}

//Play Song
microgame_music_start(_song,1,true);
microgame_music_start(_song,1,true);

//Deliver Promp Time
deliver = false;
moving = false;
promptTime = 80;

//Prompt Amount
promptAmount = 0;
promptMax = 10;
19 changes: 19 additions & 0 deletions Loungeware/objects/zayzoon_mailit_oManager/Step_0.gml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

//Create Prompts
if deliver and !moving
{
//Set To Moving
if KEY_RIGHT
{
moving = true;
}

//Reduce Prompt Time
promptTime --;

//Start Alarm
if promptTime <= 0 and !alarm[0] and promptAmount == 0
{
alarm[0] = 1;
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Loungeware/objects/zayzoon_mailit_oPrompt/Create_0.gml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ curvePos = 0;

//Set Scale
image_xscale = 0;
image_yscale = 0;
image_yscale = 0;
2 changes: 1 addition & 1 deletion Loungeware/objects/zayzoon_mailit_oPrompt/Step_0.gml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ var _val = animcurve_channel_evaluate(_channel, curvePos);
image_xscale = _val;
image_yscale = _val;

curvePos += 0.03;
curvePos += 0.1;
11 changes: 10 additions & 1 deletion Loungeware/objects/zayzoon_mailit_oType/Step_0.gml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,20 @@ if _keyPressed and shownWords < totalWords
//Done Typing
if shownWords >= totalWords and !done
{
//Create Prompt
instance_create_layer(781,250,"Prompts",zayzoon_mailit_oPrompt,{
sprite_index : zayzoon_mailit_sPromptDeliver
});
sfx_play(zayzoon_mailit_snDone);

//Manager
zayzoon_mailit_oManager.deliver = true;

//Destroy Idle Guy
instance_destroy(zayzoon_mailit_oGuyIdle);

//Sound
sfx_play(zayzoon_mailit_snRun);

//Done
done = true;
}
14 changes: 8 additions & 6 deletions Loungeware/rooms/zayzoon_mailit_rGame/zayzoon_mailit_rGame.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading