mob
Maid
icon='Maid.dmi'
var
score = 0
var/Slime = (/obj/Slime)
Bump()
del Slime
ID:261425
Mar 11 2002, 8:37 pm
|
|
I have no clue why this won't work please help me...Sorry about all the questions...typical blond ;P
|
Your Bump() proc is going to need a lot of work, but the main thing standing in your way right now is this line:
var/Slime = (/obj/Slime) That assigns the type /obj/Slime to the Slime var, but it doesn't create a new object. For that you'd need to use new: var/Slime = new /obj/Slime Or even better: var/obj/Slime/Slime = new Lummox JR |
Enter(mob in oveiw 1)
del (slime)