F!@&?ng table.

  • ArtMaster
    4th Jan 2012 Banned 0 Permalink
    This post is hidden because the user is banned
  • MasterMind555
    4th Jan 2012 Member 0 Permalink
    @ArtMaster (View Post)

    What do you mean create a table? You want to draw particles according to a table?

    Do 2 for loops, one for the X axis and one for the Y axis. It checks the value of a table/array, if it's not "NONE", make it create a particle
  • ArtMaster
    4th Jan 2012 Banned 0 Permalink
    This post is hidden because the user is banned
  • MasterMind555
    4th Jan 2012 Member 0 Permalink
    @ArtMaster (View Post)

    for x=0,tablexlength,1 do
    for y=0,tableylength,1 do
    if table[x,y] != "NONE" do
    tpt.create(posx, posy, table[x,y])
    end
    end
    end




    Something like this, the syntax is probably very wrong, but you get the idea.
  • mniip
    4th Jan 2012 Developer 0 Permalink
    0,tablexlength,1
    why adjacent 1 at end?