Let say something is placed on the map with a verb.
obj/apple
verb/eatapple()
So lets say a mob controlled by a client comes along and the obj has a variable attached to it:
obj/apple/var/owner = mob //mob references the player
So I want the verb mentioned above to be seen when the owner right clicks the object and goes to the apple object. Thats easy to do. However say if someone comes along and they are not apple.owner, then I don't want the verb to show at all for them.
I've tried using the
set src in oview()
but that appears for everyone that has the object in view. What I want to do is for when the object is in view, the person who is defined as owner to be able to right click it and see it but anyone else, I don't want them to see it.