You're probably better off just storing them all in variables like:
PHP Code:
this.bountylist.Frankie = 2000;
this.bountylist.TSAdmin = 1500;
temp.foo = this.bountylist.(@ player.account);
echo("My bounty is " @ foo);
You can also transfer the list by use of:
PHP Code:
this.bountyarray = this.bountylist.savevarstoarray(true);
And:
PHP Code:
this.bountylist.loadvarsfromarray(this.bountyarray);