i was a little pised over that it only deleted people from raid ponts and not put them on when added so made a little modification to it
it's only 2 lines i have put in
click
here to se it as phps
click
here to get it as zip
ahh yes have added nickname to raid_points to so i can see it the raid_points who it is (so i don't have to go over to members and look around in 30 min to find the id)
there you have to go into points.php and change
$db -> query("CREATE TABLE IF NOT EXISTS raid_points
( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
points INT,
raiding TINYINT DEFAULT '0')");
to
$db -> query("CREATE TABLE IF NOT EXISTS raid_points
( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
nickname VARCHAR(25),
points INT,
raiding TINYINT DEFAULT '0')");
should be it