HTML Code:
temp.mudStats = {
{"clientr.mud.stats2", {"strength", "dexterity", "intelligence", "luck"}},
{"clientr.mud.stats", {"maxhp", "curhp", "maxmp", "curmp"}},
{"player", {"headimg", "bodyimg", "shieldimg", "colors[0]", "colors[1]"}}
};
temp.curPlayer = findPlayer(temp.curAcc);
for (temp.curData: temp.mudStats)
{
for (temp.curVar: temp.curData[1])
{
makevar("temp.curPlayer." @ temp.curData[0]) = makevar("temp.curPlayer." @ temp.curData[0] @ "." @ temp.curVar);
}
}
Should work... havn't tested though I'm afraid!