|
john_taylor_jr Wanderer
Joined: 17 Jan 2003 Posts: 57 Location: USA
|
Posted: Tue Jun 03, 2003 9:57 am
Why won't this work? |
I'm sure I'm saying something wrong to the script parser but I can't figure this out.
mstronghold=keeper|paladin|monster
mnumber=1
monster=@mstronghold.@mnumber
why does monster now equal
keeper|paladin|monster.1
instead of
keeper
?
Technology is my friend. |
|
|
|
Kjata GURU
Joined: 10 Oct 2000 Posts: 4379 Location: USA
|
Posted: Tue Jun 03, 2003 11:28 am |
Because that is precisely what you are teling it to do. You can do one of these two:
monster=@{mstronghold.@mnumber}
or:
monster=%item(@mstronghold, @mnumber)
Kjata |
|
|
|
|
|