ID:631406
 
(See the best response by Lugia319.)
Code:


Problem description:

im a bit stumped im trying to set a set place for the player to start but it keeps saying login undifined proc can any one tell me how to fix that?
Best response
You are probably doing this.

mob
login()


or something. Login() is a built in function in DM, and it's spelled with a capital L

mob
Login()


Undefined proc usually means you're trying to call a proc you never created.

mob
Login()
src.SuperSummon()

proc
supersummon()


This would yield an undefined proc error. You need to make sure everything is spelled properly.

One more note, Login() will send the person logging in to 1,1,1 (if possible) by default. Make sure you have a non-dense turf there or you might wind up in blackness

One more note. Make sure you use ..() for built in procs like Login() (unless you really mean not to) because it'll call the default action of the proc.
thx