ID:268536
 
That's, what I keep having problems with...
I'm trying to make a "stat" bar, but, it's an object and the mob(player) has certain stats too. =/
Help will be appreciated.

[Edit]Turned verb into Variable(DOH!)
You need to ellaborate more.
In response to DeathAwaitsU
Whoops, I said verb. X_X
I meant variable...
Crud.
I mean like
mob
var
Caek = "I LIEK THE PIE"

obj
PieCaek
icon = 'Caek.dmi'
icon_state = "Cake"
name = "[Caek]"
Click()
usr << "I like teh cake <3"


Then an error(in the erorrs section) comes up, like...
"Caek is an undefined variable"
X_X
I hope that was descriptive enough.

In response to Hell Ramen
You can't assign it like that.

mob
var
Caek = "I LIEK THE PIE"

obj
PieCaek
icon = 'Caek.dmi'
icon_state = "Cake"
name = "Caek"
verb/Get()
src.name=usr.Caek
Move(usr)
Click()
usr << "I like teh cake <3"


I assume that is what you were looking for?