ID:141544
 
Code:


Problem description:
I put this code in:
    Login(6,2,1)


and it gave my turf this error:
vill 1.dm:1:error: bad argument definition
vill 1.dm:1:error: bad argument definition
vill 1.dm:1:error: bad argument definition


Can anyone tell me what is happening!!!
The Login() proc isn't designed to take arguments as far as I'm aware of...
Hi I don't know what the rest of your code is like but i think i know what the problem is.
Your code should look something like this:
    Login()   //So when you log in
usr.Move (locate(1,1,2)) // user moves to location 6,2,1


Hope this helps :)
In response to ReaperRoflCopter
<font size=7>No put 'usr' in proc, ungh.</font>

mob/Login()
..() // Do all the normal stuff.
src.loc=locate(6,2,1)