ID:262251
 
Code:
verb
GOTOSTART
Set category = "Battle"
usr.loc = locate(Newbie)


Problem description:
I keep getting 2 errors.
one in the set category saying "category: bad variable"
the other in the second line saying "usr.loc: undefined var" and when i try making a var for it more errors come up.

mob/verb
GOTOSTART()
set category = "Battle"
usr.loc = locate(Newbie)//Is newbie even defined?
In response to Hell Ramen
yes newbie is defined and i just tried that, it worked but now i have to make a proc for GOTOSTART. Thanks for the help. -_- i still cannot believe I missed that one.
In response to Dragon warrior2662
Dragon warrior2662 wrote:
yes newbie is defined and i just tried that, it worked but now i have to make a proc for GOTOSTART. Thanks for the help. -_- i still cannot believe I missed that one.

You don't have to make a proc for Gotostart. o.O
In response to Hell Ramen
Yeah, just do:

verb
GOTOSTART()
set category = "Battle"
usr.loc = locate(Newbie)
In response to CaptFalcon33035
Um, that is exactly what Hell said.