How can I add multiple keys in a single line with the dictionary object?
It works fine if i have separate lines of code like in the sample but is there a way to add new entries on a single line?
ie.. (Inventory ---- add key "coin,wood,mobdrop" with value 0)
I don't think that it's possible. At first i want to say that you can possibly use "Add key" > ("wood" & "coin" & "mobdrop"), because nothing except "&" can be used in strings, but then i try that on my own and it doesn't work, the string like that just adds a key "woodcoinmoney", that's how "&" works.