CommitLog |
This commit is contained in:
parent
a5240df77c
commit
bd80cf385a
4 changed files with 166 additions and 269 deletions
|
@ -161,6 +161,103 @@ if(invuln_counter != invuln_counter_max)
|
|||
<kind>1</kind>
|
||||
<string>///pull_towards_black_holes();
|
||||
pull_towards_black_holes();
|
||||
</string>
|
||||
</argument>
|
||||
</arguments>
|
||||
</action>
|
||||
<action>
|
||||
<libid>1</libid>
|
||||
<id>603</id>
|
||||
<kind>7</kind>
|
||||
<userelative>0</userelative>
|
||||
<isquestion>0</isquestion>
|
||||
<useapplyto>-1</useapplyto>
|
||||
<exetype>2</exetype>
|
||||
<functionname></functionname>
|
||||
<codestring></codestring>
|
||||
<whoName>self</whoName>
|
||||
<relative>0</relative>
|
||||
<isnot>0</isnot>
|
||||
<arguments>
|
||||
<argument>
|
||||
<kind>1</kind>
|
||||
<string>/// Do Controller Stuff
|
||||
|
||||
if(keyboard_check(ord("A")) || gamepad_button_check(0,gp_padl))
|
||||
{
|
||||
if(dead == true)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
image_angle += 5;
|
||||
}
|
||||
if(keyboard_check(ord("D")) || gamepad_button_check(0,gp_padr))
|
||||
{
|
||||
if(dead == true)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
image_angle -= 5;
|
||||
}
|
||||
if(keyboard_check_pressed(ord("W")) || gamepad_button_check_pressed(0,gp_padu))
|
||||
{
|
||||
if(dead == true)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
is_moving = true;
|
||||
audio_play_sound(snd_engine,1,true);
|
||||
image_index = ship_type+1;
|
||||
}
|
||||
if(keyboard_check(ord("W")) || gamepad_button_check(0,gp_padu))
|
||||
{
|
||||
if(dead == true || speed < 0)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
direction = image_angle
|
||||
speed += 5
|
||||
}
|
||||
if(keyboard_check_released(ord("W")) || gamepad_button_check_released(0,gp_padu))
|
||||
{
|
||||
if(dead == true)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
is_moving = false;
|
||||
audio_stop_sound(snd_engine)
|
||||
image_index = ship_type;
|
||||
}
|
||||
|
||||
if((mouse_check_button_pressed(mb_left) && os_type != os_psvita) || gamepad_button_check_pressed(0,gp_shoulderr))
|
||||
{
|
||||
if(dead == true)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
if(obj_inv_controller.is_open)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
if(energy >= 20)
|
||||
{
|
||||
var new_bullet = instance_create(x,y,obj_bullet);
|
||||
audio_play_sound(snd_shoot,2,false);
|
||||
new_bullet.image_angle = image_angle;
|
||||
new_bullet.direction = image_angle;
|
||||
new_bullet.speed = speed + 5;
|
||||
energy -= 20;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
</string>
|
||||
</argument>
|
||||
</arguments>
|
||||
|
@ -273,134 +370,6 @@ speed = -20;
|
|||
|
||||
|
||||
|
||||
</string>
|
||||
</argument>
|
||||
</arguments>
|
||||
</action>
|
||||
</event>
|
||||
<event eventtype="5" enumb="87">
|
||||
<action>
|
||||
<libid>1</libid>
|
||||
<id>603</id>
|
||||
<kind>7</kind>
|
||||
<userelative>0</userelative>
|
||||
<isquestion>0</isquestion>
|
||||
<useapplyto>-1</useapplyto>
|
||||
<exetype>2</exetype>
|
||||
<functionname></functionname>
|
||||
<codestring></codestring>
|
||||
<whoName>self</whoName>
|
||||
<relative>0</relative>
|
||||
<isnot>0</isnot>
|
||||
<arguments>
|
||||
<argument>
|
||||
<kind>1</kind>
|
||||
<string>if(dead == true || speed < 0)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
direction = image_angle
|
||||
speed += 5
|
||||
|
||||
</string>
|
||||
</argument>
|
||||
</arguments>
|
||||
</action>
|
||||
</event>
|
||||
<event eventtype="5" enumb="68">
|
||||
<action>
|
||||
<libid>1</libid>
|
||||
<id>603</id>
|
||||
<kind>7</kind>
|
||||
<userelative>0</userelative>
|
||||
<isquestion>0</isquestion>
|
||||
<useapplyto>-1</useapplyto>
|
||||
<exetype>2</exetype>
|
||||
<functionname></functionname>
|
||||
<codestring></codestring>
|
||||
<whoName>self</whoName>
|
||||
<relative>0</relative>
|
||||
<isnot>0</isnot>
|
||||
<arguments>
|
||||
<argument>
|
||||
<kind>1</kind>
|
||||
<string>if(dead == true)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
image_angle -= 5;
|
||||
</string>
|
||||
</argument>
|
||||
</arguments>
|
||||
</action>
|
||||
</event>
|
||||
<event eventtype="5" enumb="65">
|
||||
<action>
|
||||
<libid>1</libid>
|
||||
<id>603</id>
|
||||
<kind>7</kind>
|
||||
<userelative>0</userelative>
|
||||
<isquestion>0</isquestion>
|
||||
<useapplyto>-1</useapplyto>
|
||||
<exetype>2</exetype>
|
||||
<functionname></functionname>
|
||||
<codestring></codestring>
|
||||
<whoName>self</whoName>
|
||||
<relative>0</relative>
|
||||
<isnot>0</isnot>
|
||||
<arguments>
|
||||
<argument>
|
||||
<kind>1</kind>
|
||||
<string>if(dead == true)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
image_angle += 5;
|
||||
</string>
|
||||
</argument>
|
||||
</arguments>
|
||||
</action>
|
||||
</event>
|
||||
<event eventtype="6" enumb="53">
|
||||
<action>
|
||||
<libid>1</libid>
|
||||
<id>603</id>
|
||||
<kind>7</kind>
|
||||
<userelative>0</userelative>
|
||||
<isquestion>0</isquestion>
|
||||
<useapplyto>-1</useapplyto>
|
||||
<exetype>2</exetype>
|
||||
<functionname></functionname>
|
||||
<codestring></codestring>
|
||||
<whoName>self</whoName>
|
||||
<relative>0</relative>
|
||||
<isnot>0</isnot>
|
||||
<arguments>
|
||||
<argument>
|
||||
<kind>1</kind>
|
||||
<string>if(dead == true)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
if(obj_inv_controller.is_open)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
if(energy >= 20)
|
||||
{
|
||||
var new_bullet = instance_create(x,y,obj_bullet);
|
||||
audio_play_sound(snd_shoot,2,false);
|
||||
new_bullet.image_angle = image_angle;
|
||||
new_bullet.direction = image_angle;
|
||||
new_bullet.speed = speed + 5;
|
||||
energy -= 20;
|
||||
}
|
||||
|
||||
</string>
|
||||
</argument>
|
||||
</arguments>
|
||||
|
@ -462,66 +431,6 @@ instance_create(view_xview[0]+(view_wview[0]/2),view_yview[0]+(view_hview[0]/2),
|
|||
ship_type +=2;
|
||||
image_index = ship_type;
|
||||
}
|
||||
</string>
|
||||
</argument>
|
||||
</arguments>
|
||||
</action>
|
||||
</event>
|
||||
<event eventtype="9" enumb="87">
|
||||
<action>
|
||||
<libid>1</libid>
|
||||
<id>603</id>
|
||||
<kind>7</kind>
|
||||
<userelative>0</userelative>
|
||||
<isquestion>0</isquestion>
|
||||
<useapplyto>-1</useapplyto>
|
||||
<exetype>2</exetype>
|
||||
<functionname></functionname>
|
||||
<codestring></codestring>
|
||||
<whoName>self</whoName>
|
||||
<relative>0</relative>
|
||||
<isnot>0</isnot>
|
||||
<arguments>
|
||||
<argument>
|
||||
<kind>1</kind>
|
||||
<string>if(dead == true)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
is_moving = true;
|
||||
audio_play_sound(snd_engine,1,true);
|
||||
image_index = ship_type+1;
|
||||
</string>
|
||||
</argument>
|
||||
</arguments>
|
||||
</action>
|
||||
</event>
|
||||
<event eventtype="10" enumb="87">
|
||||
<action>
|
||||
<libid>1</libid>
|
||||
<id>603</id>
|
||||
<kind>7</kind>
|
||||
<userelative>0</userelative>
|
||||
<isquestion>0</isquestion>
|
||||
<useapplyto>-1</useapplyto>
|
||||
<exetype>2</exetype>
|
||||
<functionname></functionname>
|
||||
<codestring></codestring>
|
||||
<whoName>self</whoName>
|
||||
<relative>0</relative>
|
||||
<isnot>0</isnot>
|
||||
<arguments>
|
||||
<argument>
|
||||
<kind>1</kind>
|
||||
<string>if(dead == true)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
is_moving = false;
|
||||
audio_stop_sound(snd_engine)
|
||||
image_index = ship_type;
|
||||
</string>
|
||||
</argument>
|
||||
</arguments>
|
||||
|
|
Reference in a new issue