ID:176367
![]() Jan 20 2003, 5:41 pm
|
|
Well it would take a little longer for the people to get back in.
|
Jnco904 wrote:
Well it would take a little longer for the people to get back in. ALT+F4 to boot DS |
It would be better to just send them to an isolated place and mute them. They cant cause any trouble there.
|
Spuzzum wrote:
That's like a website being allowed to close your web browser. Do you mean you can't or you can? Because a website can close your web browser. |
Branks wrote:
Jnco904 wrote: I think you mis read the question... I think he want's to know if he can close another players DS, not his own... |
There is a way to do anything in almost anything you code in. It doesn't have to be coded in, you just have to know what to use to crash or freeze their computer. Such as connecting to something in BYOND that spams you several messages and using tons of procedures.
[edit}you could also just link them to a website that would freeze or crash the computer as well[/edit} |
HeHeHe. You guys just gave me a great idea for a library. You could write a verb that just infinitly repeats a message to one person... mmmmmmm. Of course, they'd probably hijack it.
|
You do this I will make sure that you get a permenant ban from all of WindArc's games. Unless you use it on yourself for your own sadistic pleasure.
[edit]it wouldn't be all that hard to code anyway. just call a proc when they login that loops a message and at the end of the loop it calls the proc again.[/edit] |
Wow, I left and went back to coding, so I haven't checked in a while. I don't want to crash anyone computer, just shut down DS. :P
I will be making a jail code as soon as I make a jail. :) |
Jp wrote:
HeHeHe. You guys just gave me a great idea for a library. You could write a verb that just infinitly repeats a message to one person... mmmmmmm. Of course, they'd probably hijack it. Simple enough to do, but is the spammer really worth all that wasted bandwidth? |
mob/admin/verb/Boot(mob/M in world)//define Boot verb
del(M)//delete him notallowed+=M//add him to notallowed sleep(6000)//sleep for 10 mins notallowed-=M//remove him from notallowed var/list/notallowed=list()//define notallowed list mob/Login()//define the login proc for all mobs if(notallowed.Find(src))//if he is in notallowed del(src)//delete if he is else//if src isn't in notallowed ..()//continue with other Login() Procs |
[Edit]Added a word in to make this make sense :P