if you want to script it yourself look up
/help token identifiers
you are specifically looking for $gettok(%var,num,32)
32 being a space character ascii code
i.e you set a variable using your -addfish command
-addfish <name> <location> <month> <time> <money>
set %fish $+ $1 $1-
returns:
%fish<name> <name> <location> <month> <time> <money>
you can then return each of those with $gettok
for example
var %i 0
while %i < $numtok(%fish<name>) {
inc %i
echo $gettok(%fish<name>,%i,32)
}
would return:
<name>
<location>
<month>
<time>
<money>
I hope this points you in the right direction..
This is only one way of solving it you could also use hash tables/text files etc.
btk
Last edited by billythekid; 26/07/06 06:31 PM.