Heres The Code:
mob
Shopkeeper2
icon = 'player1.dmi'
verb
Buy()
set src in oview(3)
set category = "Shoppers Magazine"
switch(input("Hello! What do you wish to buy?") in list ("Sword","Nothing"))
if("NinjaSword")
if(usr.gold <= 24)
usr << "<b>You need 25 GOLD!"
if(usr.gold >= 25)
usr << "<b>You get a Sword"
usr.contents += new /obj/weapons1/NSword
usr.gold -= 25
if("Nothing")
usr << "<b>Ok"
Can anyone fix this or point me in the right direction?