ID:261425
 
I have no clue why this won't work please help me...Sorry about all the questions...typical blond ;P

mob
Maid
icon='Maid.dmi'
var
score = 0
var/Slime = (/obj/Slime)
Bump()
del Slime
You have to define bump or try
Enter(mob in oveiw 1)
del (slime)
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