mob
verb
Bomb()
var/obj/H = new/obj/bomb
usr.usedbomb++
var/d=round(src.x)
var/e=round(src.y)
H.loc=locate(d,e,src.z)
H.power=src.power
H.icon_state="exploding"
src.done=1
sleep(30)
if(H)
ExplodeBM(new /Effect/BasicBoom(H.loc,0,H.power))
usr.usedbomb--
del(H)
It seems to fail me. Am I doing something here in the code that interferes with your library?
I'm terribly sorry for asking this many questions.
I'm not entirely sure what the difference is, but this seems to work.