I have a gossip script, and one of my cases is this. This is supposed to reveal all zones and give you all fight master nodes. It works fine, and it does what it's supposed to do, but the problem is that every time I use it, ascent-world.exe will crash. I don't know why, all other gossip parts work fine without crashing, but this one seems to want to crash my computer. Does anyone know what's wrong with it and know how to keep it from crashing my server? Alternatively, does anyone know how to do .cheat explore 1 and .cheat taxi 1 (which is what mine is doing) without using my code?Code:case 80: { for (uint8 i=0; i<64; i++) { Plr->SetFlag(PLAYER_EXPLORED_ZONES_1+i,0xFFFFFFFF); Plr->SetTaximask(i, 0xFFFFFFFF); } } break;