View Single Post
  #18  
Old 02-01-2007, 12:07 PM
Chandler Chandler is offline
Banned
Join Date: Jan 2007
Posts: 656
Chandler will become famous soon enough
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!

Last edited by Chandler; 02-01-2007 at 08:12 PM..
Reply With Quote