View Single Post
  #6  
Old 09-06-2003, 08:16 PM
Tseng Tseng is offline
Sublime
Tseng's Avatar
Join Date: Jan 2003
Location: California
Posts: 0
Tseng is on a distinguished road
Regarding conforming to KSI-GS:

You have two successive checks of the same event. :-\

Rather than doing:

NPC Code:

if (event1 && condition1) {
dostuff();
}
if (event1 && condition2) {
dootherstuff();
}



Do:

NPC Code:

if (event1) {
if (condition1) {
dostuff();
}
else if (condition2) {
dootherstuff();
}
}



Also, you are using one equals sign for comparisons - bad!
__________________
Funny Things:
Quote:
Originally posted by Stefan
I didn't ban you, I only played a little bit with my RC.
-----
Reply With Quote