register the new round event, and on the event of when the new round starts set the users health to what you want
so like:
Code:
public plugin_init() {
register_plugin("test", "test", "test")
register_logevent("new_round", 2, "1=Round_Start")
}
public new_round(id) {
// set health here
}
__________________