Are you sure your spawns are being created successfully? Try this just to verify that they are getting deleted by the loops.
PHP Code:
public strip_spawns() {
new tspawns;
new ctspawns;
while((tspawns = engfunc(EngFunc_FindEntityByString, -1, "classname", "info_player_deathmatch")) !=0) {
engfunc(EngFunc_RemoveEntity, tspawns);
server_print("deleted t spawn");
}
while((ctspawns = engfunc(EngFunc_FindEntityByString, -1, "classname", "info_player_start")) !=0) {
engfunc(EngFunc_RemoveEntity, ctspawns);
server_print("deleted ct spawn");
}
}
__________________