Would -
Trigger("Player 1"){
Conditions:
Switch("Switch1", clear);
Bring("Force 3", "Terran Marine","^16",exactly,1);
Actions:
Comment("");
so on.....
be the same as
Trigger("Player 1"){
Conditions:
Switch("Switch1", clear);
Bring("Force 3", "Terran Marine","^16",exactly,1);
Actions:
Comment("");
if so, the spaces in front of the functions are just to make it easier to read right?
Also, another question, does there need to be a space bar after each comma?
e.g.
would
Bring("Force 3","Terran Marine","^16",exactly,1);
be the same as
Bring("Force 3", "Terran Marine", "^16", exactly, 1);
Also, are function names case sensitive?
trigedit works like most programming languages, it treats all whitespaces as one, IE you can put erverything on 1 line or have 100 blank lines, it doesn't care.