ID:158983
 
I've made enemies that drop orbs..

I want the player to be able to run over these orbs, and collect health the current code is this:
obj
health
density=1
icon = 'Orbs.dmi'
icon_state = "heathorbs2"
Bump(atom/movable/O)
..()
if(ismob(O))
var/mob/M = O
M.Mhealth+=10
if(M.Mhealth<=M.Mmaxhealth)
M.Mhealth=M.Mmaxhealth
del(src)


I want to know how to achieve the goal, of colliding with these orbs, them healing the player, then the orbs destroying themselves..
In response to GhostAnime
atom/proc/Bumped(atom/movable/Bumper/M)
atom/movable/Bump(atom/M)
M.Bumped(src)

obj
health
density=0
icon = 'Orbs.dmi'
icon_state = "heathorbs2"
Bumped(mob/Bumper/M)
..()
if(ismob(usr))
usr.Mhealth+=10
if(usr.Mhealth<=usr.Mmaxhealth)
usr.Mhealth=usr.Mmaxhealth
del(src)



still nothing works...
=/
In response to KeyWielder000