ID:143372
 
Code:
obj //random
mortarpestal
name = "Mortar and Pestal"
desc = "Grinds up ingrediants."
verb
Use()
switch(input("What Do You Wish To Mix?","Mortar&Pestal") in usr.contents)
if("Potion")
usr<<"la"
if("Gemm")
usr<<"lawl"
else
usr<<"meh"


Problem description:


I just put the la and lawl and meh in there to see if it was working. But yeah, why is it not?
Erm. Can I see the place where you codded in the potion and the gem? I think the problem has to do with the names, 'cuz the code looks fine.
In response to Tubutas
I'm on a different computer right now, but it's basically this:

obj
potion
set name = "Potion"
gemm
set name = "Gemm"



Yeah, something like that.
In response to GohanIdz
You're trying to check for a text string within the usr.contents, thats why. If I had the time to show you a correct way do it this type of thing, I would. But switch() is not the way to go.