You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AM2R-Multitroid-Fair-Team-PVP/Export_Code/gml_Object_oHXPickupBig_Col...

15 lines
471 B

if (collectable == 1 && state != 6)
{
global.playerhealth += 20
if (global.playerhealth > global.maxhealth)
global.playerhealth = global.maxhealth
PlaySoundMono(sndAbsorbX)
with (instance_create(oCharacter.x, (oCharacter.y - (oCharacter.sprite_height / 2)), oAbsorbX))
big = 1
oAbsorbX.color = 1
state = 6
statetime = 0
relativeX = (x - oCharacter.x)
relativeY = (y - (oCharacter.y - (oCharacter.sprite_height / 2)))
}