mob/Logout()
world << "[src] has left!"
players-=src.key
del(src)
..()
But for some reason, everytime I enter it says that... (didnt check if it says that when I leave, cuz I cant host and check... right now im doing personal testings)
ID:144511
![]() Nov 10 2006, 6:18 am
|
|
I got this code in my project:
mob/Logout() But for some reason, everytime I enter it says that... (didnt check if it says that when I leave, cuz I cant host and check... right now im doing personal testings) |
2) Sounds like you're doing one of those temp-created-mobs login. You can either:
- Specify the mob and call it:
- Make the mob/Logout() more precise:
- Do what AD's Creation thing is, make it a client/Login() rather than mob/Login() >_>
Just to inform you, mob/Logout() is called whenever the client leaves a mob (switching a mob, etc).
- GhostAnime