ID:262628
 
Code:
obj
genin_paper
icon = 'obj.dmi'
icon_state = "testpaper"
verb
Take_Test()
set category = "Commands"
if(usr.teston==2)
usr << "You cannot write the test now"
if(usr.teston==1)
usr << "You cannot write the test now"


Problem description:For some strange reason the Take Test verb doesnt show up when im beside the test paper? Why is that??

The reason why it wont work is because you are giving the obj the verb not the mob standing near it.
set category = "Commands"
set src in oview(1)
// This is the correct way to do it.
Under set category put :
set src in oview(1)//if the paper is within 1 tile around the user


Also, leaving the category "blank"(By not putting it at all) it will go to the default panel : Commands. But you can make the verb appear in the one u specify if you want.
In response to Mecha Destroyer JD
Do you think the name of this topic is inappropriate for this matter. Maybe give more details in the Topic like Verb Problems, ect.
In response to Y2kEric
Thx alot guys ^^
In response to Kurosaki_Ichigo-San
No problem.