ID:176367
 
Well it would take a little longer for the people to get back in.
No. But, you could have a boot command that sends them to a completly different server, spam the heck out of them until they must reboot the entire computer! muahahhaha. I'm just kidding so please don't take this seriously :P

[Edit]Added a word in to make this make sense :P
In response to ADDiCt
cool. I wouldn't do it, but maybe I could use the part that sends them to a different place. :)
Jnco904 wrote:
Well it would take a little longer for the people to get back in.

ALT+F4 to boot DS
That's like a website being allowed to close your web browser.
It would be better to just send them to an isolated place and mute them. They cant cause any trouble there.
In response to Spuzzum
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.
In response to Branks
Branks wrote:
Jnco904 wrote:
Well it would take a little longer for the people to get back in.

ALT+F4 to boot DS

I think you mis read the question... I think he want's to know if he can close another players DS, not his own...
In response to Nova2000
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}
In response to Jnco904
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.
In response to Jp
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]
In response to ADDiCt
I meant for it to be used on spammers by moderaters.
In response to ADDiCt
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. :)
In response to Jp
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
In response to Jp
hmm i was wondering, couldn't you define macros for f4 and alt, then call them for the person your booting in your boot verb to achieve what your trying to accomplish?