check it out:
http://www.byond.com/hub/Winbiko/ChatSystem
tell me what you think.
ID:192803
May 14 2002, 3:07 pm
|
|
In response to Shadowdarke
|
|
ya that makes sense
thanks for the input. |
i dont see that as realy smart, i mean giving away free code, but i guess some might use it for good not DBZ
|
In response to Scoobert
|
|
*shrugs*
Code should be free. Compile code should not be free. |
In response to Winbiko
|
|
I cant realy complain, you gave me my whos playing code.
|
In response to Scoobert
|
|
;)
|
The only thing I noticed that might improve performance a bit is that this:
for(l in who)
l << "[t]"
could be replaced with
who << t
With large rooms (ok, huge rooms) of people, stepping through the list in DM will be slightly slower than letting the built in functions do it.