Constant tempature

  • nmd
    13th Jun 2011 Member 0 Permalink
    I was trying to make it so that metl has a constant tempature, but I cant get the command right,
    here is what I was trying to type in:
    tpt.register_step(tpt.set_"metl"(temp, "100"))

    Am I typing the code wrong?
    Thanks in advance!
  • The-Con
    13th Jun 2011 Member 0 Permalink
    @nmd (View Post)
    Well I Re-arranged it and got the temperature set right, but not the constant temp.
    I typed
    tpt.register_step(tpt.set_property("temp", "100", "METL"))

    Property is important
    I don't know how to get it constant though.
  • nmd
    13th Jun 2011 Member 0 Permalink
    @The-Con (View Post)
    I got the same thing...
    on the wiki it says to type tpt.register_step(function func),
    that's why I keep thinking I'm missing something
  • MasterMind555
    13th Jun 2011 Member 0 Permalink
    @nmd (View Post)
    tpt.register_step()
    tpt.set_property("temp","100","metl")
    end


    Something like that

    Simon:


    function set_temp()
      tpt.set_proprety("temp", 0, "merc")
    end
    tpt.register_step(set_temp)


    Use the search bar Please
  • nmd
    13th Jun 2011 Member 0 Permalink
    @MasterMind555
    thank you so much!

    (btw I didn't know what to put in the search bar.)