Date: 2014/01/30 20:51:32 UTC-08:00
Type: Denizen Script
# What you have
- foreach <global.flag[removeablenpcs].aslist> {
- if <%value%.id> != %value%.id && <global.flag[dontremove.<%value%.id>]> != <null> {
- remove %value%
}
}
# what it should be
- foreach <global.flag[removeablenpcs].aslist> {
- if <%value%.id> != %value%.id && <global.flag[dontremove.<%value%.id>]> != null {
- remove %value%
- flag global removeablenpcs:->:%value%
}
}