i need to identify the proc in this code.
mob/Login()
usr.icon_state = input("Select Hero") in list("blah","blah")
usr.move(locate (1,1,1))
need help
Copyright © 2024 BYOND Software.
All rights reserved.
What I bolded from what you wrote is where you have the error. The first letter of move needs to be uppertext so it should be like,
src.Move(locate(1,1,1))