I like to use b in my for loops. But anyways..
I think it should be added where code should be
layered according to how how it's used. For example:
NPC Code:
if (strequals(#a,SaijinGohan)) {
if (strequals(#g,Bravo Legends)) {
say2 Yay!;
}
}
The above is properly 'layered'.
NPC Code:
if (strequals(#a,SaijinGohan)) {
if (strequals(#g,Bravo Legends)) {
say2 Yay!;
}}
The above is not properly 'layered'.
Thats my little pet peeve. It just seems easier to help people when its that way.