I know I'm not a clan scripter, but I decided to attempt to make the output event.
Heres my code for Nixill's checkevents:
registerOutputEvent(minigame,"clearAllCheckPoints","",1);
function clearAllCheckPoints(%mini,%client)
{
for(%i = 0; %i < ClientGroup.getcount();%i++)
{
%c = ClientGroup.getobject(%i);
%c.CPBrick="";
}
}
I basically took his function and looped through all players. I didn't check if all players were in the minigame, so that will be a problem if you have multiple minigames up. Lemme know what you think, this was just for practice, accept it or not, I don't mind.