ID:169459
 
Login ()
doesnt work, crapping brain fart.
mob/Login()
world<<"[src] has entered the world."
//Put rest of code here.
In response to Flame Sage
Bad Flame Sage...

mob/Login()
world<<"[src] has entered the world."
//Put rest of code here.
..()


The ..() becomes very important if you have multiple occurances of Login(). Without it, it won't call all of the occurances.
In response to Nick231
Im sorry nick, usually I do put ..() in my login's.
I just wasn't thinking, don't hurt me master!
*shields*

But yeah, always be sure to put ..() even if you do not have another login() proc, because that way, if some day you wake up and decide to spread out your code (make it neater) that ..() after the login will come in very handy.
mob/Login()
..()//This tells it to do OTHER logins before it.
world<<"A"
mob/Login()
world<<"B"
..()//This tells it to do things in OTHER logins after that.


So it would show up..

B
A

instead of AB if you did not have ..() and the A/B were all in one branch.