I have a program uploaded on a shell server that I use to control the shell, and on there I have a verb 'StartHosting'
mob/verb
StartHosting(a as text,b as num,c as text)
startup(a,b,c)
To this I usually just input StartHosting("Blah.dmb",1561,"-trusted")
How would I go about closing this using the shutdown proc?
mob/verb
ShutDown(a as text,b as num)
shutdown(a,b)
I've tried Shutdown("blah.blah.blah.1561",0) | Shutdown("byond://blah.blah.blah.1561",0) | and Shutdown(1561,0)
So I'm confused. How does this work and interrelate? Any help and input is appreciated.
shutdown(0) should work.
http://www.byond.com/ members/?command=reference&path=proc%2Fshutdown