- Can be abused by the Mods/ not so easy of course/
Therefore, the people that would be abusing this would be the members/users as well.
Example:
Scenario:
@pugman This scenario can pretty much happen even if report scores are private
It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
report_score= (((activity*1,2)+(airdrop_merit*1,1)+(received_merit*10)+(post_count*0,5))/bad_reports);
// Calculating your reports score
// Everything below 10 should be considers as a bad score.
#include
#include
using namespace std;
int main()
{
int activity; // The current activity. The higher activity you have the better is the score
int airdrop_merit; // The airdropped merit, again more airdropped merit is better.
int received_merit; // This is the merit you actually received, I put a more weight on it as it is the most reliable measure.
int post_count; // Here is your post count, less weight on as I don't think it is that important, can change it to ratio between activity and post count.
int bad_reports; // Those are your posts reported by others and deleted by moderator, I can include the Deleted topics too but I have to think a bit more on it.
float report_score; // This is the report score, as I see it everything above 10 should be marked as normal.
cout << "\n"<< "----------------------------"<< "\n";
cout << "Calculating a report score"<< "\n";
cout << "-----------------------------"<< "\n";
cout << "Enter activity: ";
cin >> activity;
cout << "Enter airdroped merit: ";
cin >> airdrop_merit;
cout << "Enter received merit: ";
cin >> received_merit;
cout << "Enter post count: ";
cin >> post_count;
cout << "Enter bad_reports: ";
cin >> bad_reports;
report_score= (((activity*1.2)+(airdrop_merit*1.1)+(received_merit*10)+(post_count*0.5))/bad_reports);
cout << fixed;
cout << setprecision(2);
cout << "Your bad report score is :" << report_score;
cout<<"\n";
return main();
}