public prize_counter(){ new msg[190], num[10], key[128], id=read_data(1); get_string(2, key, 127); copy(msg, 190, translate(id, key)); add(msg, 190, ": "); num_to_str(read_data(3), num, 9); add(msg, 190, num); client_print(id, print_center, msg); if(read_data(4)){ for(new i=1; i<=maxPlayers; ++i){ if(i!=id && !is_user_alive(i) && pev(i, pev_iuser2)==id){ client_print(i, print_center, msg); } } } }