ID:267294
 
Can sum1 tell me where exactly i can get a code that will tell me sum1 logs in? Like come up in text box sayin, null Logged in . etc... or can sum1 just give me code here?
SSJ4 Radditz wrote:
Can sum1 tell me where exactly i can get a code that will tell me sum1 logs in? Like come up in text box sayin, null Logged in . etc... or can sum1 just give me code here?

mob/Login()
world << "[src] has logged in."
..()


~>Volte
In response to Volte
I wouldn't of given anything by the way this person asked.
SSJ4 Radditz, i think you really need to do one of the tutorials because there are a few good ones which explain quiet abit
In response to Volte
Volte wrote:
SSJ4 Radditz wrote:
Can sum1 tell me where exactly i can get a code that will tell me sum1 logs in? Like come up in text box sayin, null Logged in . etc... or can sum1 just give me code here?

> mob/Login()
> world << "[src] has logged in."
> ..()
>

~>Volte




for the Logout you would do something similar

mob
Login()
world << "[src] has logged in."
..()
Logout()
world << "[src] has logged out."
del(src)

the del(src) deletes the guy when they log out. You wouldn't want a mob to just be standing around now do you....