ID:269230
 
i was wondering how to make it so when you pick up an item, it would add the verbs of Get and then when you get it, you can use it.. like a spell scroll pretty much:
step1-get it
step2-you're able to use the verb Read
step3-after that it deletes it.. i'm not quite sure how to do this...
Any verbs an object has are usable by someone who has the object in his/her contents list. You can give players access to the verbs by using the src setting as well.
obj/scroll
get()
set src in view(0)
Move(usr)
use()
usr<<"You read the scroll and it crumbled into ashes!"
del(src)
In response to Loduwijk
thanks alot man! :)