1. Table start condition:
    SampleTable = {

    ["CharacterName1"] = {

    [1] = {62256,1,},

    },

    ["CharacterName2"] = {

    [1] = {62256,1,},

    },

    }



    Is there a way to add another hash element to this programatically (ie, table.insert)?



  2. Table start condition:
    SampleTable = {

    ["CharacterName1"] = {

    [1] = {62256,1,},

    },

    ["CharacterName2"] = {

    [1] = {62256,1,},

    },

    }



    Is there a way to add another hash element to this programatically (ie, table.insert)?



  3. This is covered on pages 44, 45 and 46.  You can just directly index the table and add new elements to it.

  4. Ah, yes indeed. Sorry. It was 5am and a long night of coding. That was a dumb question.