ID:144041
 
Code:Login Problem
client/New()
..()
world << "[src] logs in."
src << "Welcome to [world.name]"


Problem description:I don't understand it. The error is:proc definition not allowed inside another proc. I don't understand.

Why have all that? Just do this...
mob
Login()
world<<"[src] has logged in!"
src<<"Welcome to [world.name]!"
In response to DarkD3vil666
Thanks!
The reason why it said that was because you indented everything after the parent proc ..(), when it should NOT be indented there:

Previously
client/New()
..()
world << "[src] logs in."
src << "Welcome to [world.name]"


Should be:
client/New()
..()
world << "[src] logs in."
src << "Welcome to [world.name]"


Note the indentation between the two adter the ..()

- GhostAnime
In response to DarkD3vil666
First off, the original function of Login() is to locate the mob at 1,1,1. You're forgetting that
In response to DarkD3vil666
Please please try and make sense and know what you're talking about before posting..