ID:149065
 
If you have a book (which you are supose to give to Lisa) you can give it to anybody to finish there quest. this is my coding:

Lisa
icon = 'Lisa.dmi'
verb
Talk()
if(!usr.book)
set src in oview(1)
usr<<"I LOST ME OVERDUE LIBRAY BOOK CAN YOU FIND IT?"
for(var/obj/book in usr.contents)
usr<<"Thanks."
usr<<"YOU COMPLETED LISA'S QUEST!"
del(book)
usr.book = 1
break
I edited it, and here is how it should go:



Lisa
icon = 'Lisa.dmi'
verb
Talk()
set src in oview(1)
if(usr.book != 1)
usr<<"I LOST ME OVERDUE LIBRAY BOOK CAN YOU FIND IT?"
else
usr << "Thanks again."
return
for(var/obj/book/B in usr.contents)
usr<<"Thanks."
usr<<"YOU COMPLETED LISA'S QUEST!"
del(B)
usr.book = 1
break



Don't copy paste this cause you'll get a ton of indentation errors.