Hey, can anyone help me with adding the Aegis? And it working?
Object: gamer
Event: Key pressed [H]
if(shipID == 49)
{
canUseAbilitie = true;
draw_sprite(gamer.x, gamer.y, healthAbilitie_spr);
hp += 40000;
if(hp > maxHp)
{
hp = maxHp;
}
} else {
sendMessage("You don't have an special ship, you can't use this function");
}