ID:170592
![]() Jan 5 2005, 10:16 am
|
|
How would I make my tell verb tell only one person something? I have a Msg223 proc, I just do know what I would put after tell(...
|
![]() Jan 5 2005, 10:48 am
|
|
That should work, assuming thats what you want, and my poor programming skills.
|
LuckyDog wrote:
That should work, assuming thats what you want, and my poor programming skills. mob/verb/tell(mob/M,T as text) Almost, Lucky. It should instead be mob/verb/tell(mob/M as mob,T as text) The mob/M part tells the cmpiler to think of M as a mob. However, since DM is a loose-typed language, it doesn't actually restrict M to being a mob. To do that, you need the "as mob" part. |