mob
verb
Test_Blast()
set category = "Test"
var/obj/H = new/obj/Blast
sleep(5)
view(6) << "HA!!!"
H.dir = usr.dir
H.loc = usr.loc
walk(H,H.dir)
obj/Blast
icon = 'Icons.dmi'
icon_state = "blast
density=1
Move()
for(var/mob/Noobs/M in range(5))
spawn(2)walk_towards(src,M)
..()
Bump(Obstacle)
if(!Obstacle)
del(src)
return
if(ismob(Obstacle))
world<<"The blast hit [Obstacle]!"
del(src)
mob/Noobs
icon='Icons.dmi'
icon_state="nub"
Problem description:
The problem is that the range isnt working for the object, i tried view and oview and orange as well. Doesnt seem to work properley.
EDIT: Problem Fixed!!