ID:171029
 
    verb
whisper(mob/M as mob in world, T as text)
if(!client || !M || !M.client || !T) return
usr << "\[To <a href='?msg=[url_encode(M.key)]'>[M.name]</a>\] [T]" // this line
M << "\[From <a href='?msg=[url_encode(key)]'>[name]</a>\] [T]"


Help?
Make it M.client.
In response to Hell Ramen
Whats it?
In response to XxDohxX
Doh, I believe you want this:


        whisper(mob/M as mob in world, T as text)
if(!M.client || !M || !M.client || !T)
return
else
usr << "\[To <a href='?msg=[url_encode(M.key)]'>[M.name]</a>\] [T]" // this line
M << "\[From <a href='?msg=[url_encode(key)]'>[name]</a>\] [T]"
In response to Lenox
Lenox wrote:
Doh, I believe you want this:


>       whisper(mob/M as mob in world, T as text)
> if(!M.client || !M || !M.client || !T)//this line (WOUDLNT IT BE JUST STUPID TO PUT !M.client TWICE!?)
> return
> else
> usr << "\[To <a href='?msg=[url_encode(M.key)]'>[M.name]</a>\] [T]" // this line
> M << "\[From <a href='?msg=[url_encode(key)]'>[name]</a>\] [T]"
>

In response to XxDohxX
XxDohxX wrote:
Lenox wrote:
Doh, I believe you want this:


> >         whisper(mob/M as mob in world, T as text)
> > if(!M.client || !M || !M.client || !T)//this line (WOUDLNT IT BE JUST STUPID TO PUT !M.client TWICE!?)
> > return
> > else
> > usr << "\[To <a href='?msg=[url_encode(M.key)]'>[M.name]</a>\] [T]" // this line
> > M << "\[From <a href='?msg=[url_encode(key)]'>[name]</a>\] [T]"
> >



Gah, yeah, replace M.client with client, my bad >_<

[EDIT] Client was there before, it works with M.client or client
In response to Lenox
It was like that before? (IF IM NOT MISTAKEN)