View Single Post
  #31  
Old 08-11-2003, 05:39 AM
SaijinGohan SaijinGohan is offline
Registered User
SaijinGohan's Avatar
Join Date: Jul 2001
Location: U.S.A - Ohio
Posts: 536
SaijinGohan is on a distinguished road
Send a message via AIM to SaijinGohan Send a message via MSN to SaijinGohan
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.
__________________

Job: A Legend

And you think that you have played Graal forever? Ha!
Reply With Quote