I know how to use the console very well. But is there a way to put 2 console commands on a single element at a time? Like increasing the temp on deut and life in a single command? Instead of first doing !set temp deut 99999999999 and then doing !set life deut 9999999999 . I was messing around and tried using ctype to make bcln generate ligh (lightning) and make it generate deut (deterium oxide) at the same time. Help me if you can!
Use the PROP tool since I'm assuming you want to make seperate sections diffrent values
boxmein:
Lua-style commands can be chained to your heart's content (well, to the textbox's length limit which is dreadfully low). Old-style commands, not so much.
even so, is it really possible for a field to have 2 values simultaneously?(in this case ligh and deut)
Unfortunately, no
-- I won't vouch for whether this code actually works, so tread with care!
local state = 'ligh'
tpt.register_step(function()
state = (state == 'ligh') and 'deut' or 'ligh'
tpt.set_property('ctype', state, 'bcln')
end)