Scrolling Game Development Kit Forum
SGDK Version 1 => News and Announcements => Topic started by: bluemonkmn on 2006-02-13, 08:42:52 AM
-
The user ratings in the project listing are clearly being abused (and probably have been all along). I advise everyone to ignore the ratings until I can disable or fix them. I have reset the number of ratings to 1 for all games that had user ratings. I will continue to do so if necessary until the problem is resolved.
-
Yea, I think its been abused for a long time (on some projects away) but its definatly gotten out of hands lately. 400 votes yet only 15 downloads? With some of the Guildhall games I thought they may get from another source but that doesnt account for everything... people are clearly stat padding their own work. It's been getting worse and I'm glad the votes were reset. Some of the older games had inflated scores, voted on in a time when there wasn't much comparison and not voted on much since.
What are your thoughts on fixing it, IP based, cookie based, account based, or some combination? Account based would mean less votes. IP and Cookie can be used together as the next best thing though no method is fool proof, it's a matter of making it more trouble than its worth but keeping it accessable to real voters. I don't know how much control you have on sourceforge with the listings. You could always move it if need be though. I happen to own a little monkey with extensive databases coding skills as well as web hosting capabilities ;)
I'm rather interested in user opinions/popularity if they are in fact legitiment statistics. If the system could be overhauled then the addition of catigories... sound/gfx/etc are nice as well as a weighted system based on date/ score in the past __ months as well as overal. Too bad more don't fill out the comment field.
...
little database coding monkey and regaurdless of what he may say I volonteer his services. The more feedback to game authors the better. Too bad more don't fill out the comment field.
-
I did manage to disable user ratings this morning. I was able to allow ratings to be provided along with comments while preventing an aggregate rating (and thus the temptation for vote stuffing). This is hopefully a temporary measure. I contacted the author of the PHP code behind the listing to see if he was interested in fixing it. If not, maybe we can talk to your "monkey" :). I don't think we'd need a separate host, SourceForge is pretty open about configuring/creating databases and running PHP code, so I don't think we'd hit any limitations where we'd need to host elsewhere. I could probably do this myself, but I don't really want to take the time out and implement an inferior solution. I don't really know the best solution to this problem, so I'm open to suggestions/implementations from those in the know. I was considering just logging IP addresses for all votes instead of only the comments. But I don't want to waste time trying to implement that myself if there might be a better solution... or if someone else might be willing to do it for me :).
-
SQL Table:
CREATE TABLE votes (
ip VARCHAR(16) NOT NULL,
fkGameID SMALLINT UNSIGNED NOT NULL,
score TINYINT UNSIGNED NOT NULL,
PRIMARY KEY (ip, fkGameID)
);
PHP Code to add a vote:
$GameID = $_Post['GameID'] //However you want to get the ID
$Vote = $_GET['Vote']; //And however you want to get the Vote Number
mysql_select_db($database_SGDK, $SGDK); //And however you want to select the database
$query = "SELECT fkGameID FROM votes WHERE fkGameID = " . $GameID . " AND ip = '" . $_SERVER['REMOTE_ADDR'] . "'";
$result = mysql_query($query, $SGDK);
$rowCount = mysql_num_rows($result);
mysql_free_result($result);
if ($rowCount == 0) {
$query = "INSERT INTO votes VALUES('" . $_SERVER['REMOTE_ADDR'] . "', " . $GameID . ", " . $Vote . ")";
$result = mysql_query($query, $SGDK);
} else {
$query = "UPDATE votes SET score=" . $VOTE . " WHERE fkGameID = " . $GameID . " AND ip = '" . $_SERVER['REMOTE_ADDR'] . "'";
$result = mysql_query($query, $SGDK);
}
mysql_free_result($result);
PHP Code to get the average:
$query = "Select AVG(score) from votes WHERE fkGameID = " . $GameID;
$GetScore = mysql_query($query, $SGDK);
$score = mysql_fetch_assoc($GetScore);
mysql_free_result($GetScore);
echo (round(floatval($score["AVG(score)"]),2));
This worked for me. The possibility is there for adding comments to the Vote table.
-
OK, the ratings are back online. I deleted all ratings and re-added the ratings that were stored in comments, so right now the only ratings in the system are those that were attached to comments. Everyone, feel free to go rate the projects according to your opinions now again. I haven't thoroughly tested the process, but it seems to work and reduce the potential for abuse. Post a reply here if you see any problems.
BTW, durnurd you should familiarize yourself with the MySQL REPLACE statement. It's kinda cool -- one thing that MySQL has that Microsoft SQL server doesn't (and I wish it did sometimes).
-
Well, yes, that would be helpful, wouldn't it?
-
For anyone unclear on what happened and why:
The ratings system was not preventing multiple votes from one person on the same project. We were starting to get hundreds of votes for single projects which only had a few downloads, so it was clear that there was some unfair abuse going on with vote stuffing. I had no way of sorting out the fair votes from the abuse, so I thought that the fairest thing to do was reset the whole rating system, and then "import" only the votes that were attached to comments because those could be imported fairly. The rating system now does a better job of preventing abuse, so now everyone is encouraged to go back and put their vote in on the games they've played.
-
Might I make one note (and possibly a suggestion):
The comments section is not meant to be used as a forum, so people should stop flaming each other back and forth by way of leaving comments in game reviews. Any discussion of the game is welcome, why it's good, why it's bad, that's fine. Discussion of the staff rating, however, is not something meant to be left in the comments section. Perhaps a simple "I disagree with the staff rating for this game. Here's why:" not "The staff rater is a stupid idiot and gives biased opinions. Here's why:" Notice the difference? The comments are supposed to be commenting on what you think of the game, not what other people gave it. So response to other comments should be minimal if anything at all, and response to the game itself should be the priority.
Now, my suggestion to BlueMonk is to remove all of the "comments" in the game reviews that don't respond to the game and the game alone for the given reasons. Any other discussion about the staff rating or rater should be posted on the boards, where "discussion" belongs.
-
...Perhaps a simple "I disagree with the staff rating for this game. Here's why:" not "The staff rater is a stupid idiot and gives biased opinions. Here's why:" Notice the difference? The comments are supposed to be commenting on what you think of the game, not what other people gave it...
Okay, okay, DURNURD, you make a valid...point, although I can see you failed reading comprehension, because I stated in the comments that I took back all the, "Whaa!! Your stupid because of your rating!!" talk. Please read the posts before ranting on about something. Jeez. People these days *sigh*.
Anyway, I'll tell you what I thought of it, in an...appropraite manner. here goes:
I disagree with the staff rating for this game. Here's why: I found the game to be boring. I found the games gameplay to be no different from all the other gamedev. games, except most of the Guildhall games. I thought the game was funny, yes, but in a crude and immature way. The music was ripped, or it was just midi forms of songs, such as the 'cocomo' midi form (I think) Of a Beach Boy's song. I don't see how the main character was detailed at all. I DISAGREE. Here's why: It had about three frames and a few standing animations. It is a lot better then all of the gamedev. games sprites--until you get to the Guilhall games. The game was long, so I did like that, since most of the games on the listing are a pathetic 20 minutes, except a few gu....wait, nope they're just demos. Another thing, the game seemed to crash quite a bit, too. I don't know if it was my computer or whatever, but it crashed, and peeved me off. Lastly, the graphics were basically ripped. Billybob, I know you stated that you made some of those graphics, and I'd like to know what graphics you did make. For now, however, it remains a negative. You can have your... opinion, Bluemnkmn, I accept that. I have just laid before you my opinion, and in case you decided for some reason to skim and scan my paragraph, I'll break it down for ya:
Summary:
+ Lengthy game
+ Crude humor
+ A story (unlike all the other gamedev. games)
- Crude humor
- Redundant gameplay
- Ripped Graphics
- Ripped Music
- Crashed often
- BIG download
Overall (all ratings are based on a scale of 1-10):
Graphics: 6.0
Gameplay: 6.0
Music: 7.0
Lasting Appeal: 9.0
Feeling: 7.0
Game's Rating: 7 which roughly translates into a 3.5 star rating.
So, there ya have it. I layed down the law to ya all. That's my opinion. We all have our own, right? riggghhtt. Read it and accept. I'm outta here.
*walks out shaking head*
-
Au contraire, Hebedaymun. I scored perfectly on the reading comprehension section of the test.
But that's not really the point. I know you retracted your statements, and that's a good thing, but I was simply making a point that discussion of the rating can be in the comments for a game, not discussion of the rater. I appreciate that the criticism has moved to a more acceptable forum for discussion.
Oh, and while a 7 out of 10 may translate to a 3.5 out of 5, it is obvious that the rating is not out of 5. If it were out of 10, then your rating and the official rating would actually be quite close to each other.
-
Well, Mr. Durnurd, I could care less what Bluemnkmn's rating scale is, buddy, that's my scale. So leave it at that, okay? Okay. I would appreciate that much, sir. Oh, you don't have to say you did good on "the test" just to make yourself feel better - it's quite pathetic. Just leave it at that and go to class little school boy.
-
I was simply making an argument contradicting a couple of your statements. You said you saw I failed reading comprehension, I didn't, so I corrected you. YOU said on a STAR scale, a 7 translates to a 3.5. Of course, you were assuming that it was out of 5, which it isn't. So on a star scale out of 5, you're correct. I was simply stating for those that may not understand that the star scale use HERE is not out of 5, but rather at least out of 6, so your translation to an out-of-five scale is somewhat useless.
-
Look, little man, you need to get off that high horse of yours and go grab your books. Class is starting. Besides, I NEVER, wait let me emphasize that NEVER said " And finally, let's see what my rating translates into when considering Bluemnkmn's rating of infinity". I never stated that. Once agian, this shows signs that you're not good at comprehending. I simply wanted to translate MY rating of seven out of FIVE catagories into a star rating. Is that really that hard to explain and/or understand? I realize the youth of today is generally made up of morons, but I wouldn't have expected the game developers on these forums to be!
I'll say it agian, and after this, leave it as is. This discussion ended when I gave my rating. Here it is:
I scored the game out of five catagories. I took the average of those five catagories and came out with a seven. I decided " Hmmm...what would that be in stars?" So, I translated it into my OWN star rating.
Well, if you can't understand that, then there is no hope for you. Please leave the discussion as is and go to class or watch some star wars or whatever you nerds do nowadays.
-
Apparently the discussion has not ended, as you have continued to respond. And you never gave the top rating of your star system either. One could easily figure out that it's out of 5, but even you must understand that one might be confused into thinking when you are saying it translates into a 3.5 star rating, you were using the star rating that you have been criticising all this time, saying that you would've given it a lower score than what bluemonk gave it on his star rating. You NEVER said that it wasn't BlueMonk's star rating either, and since that's the one that's generally been in use, one would suspect that since you never specified otherwise, that's the one you were using. So obviously this conversation was usefull even after the rating was given, so that people can understand that you're using a system of your own devising, not the one that's been in use for several years.
And while my class is starting soon, I never bring my book. It's much to heavy. I just use it to do the problems.
-
Okay, okay, calm down. I wasn't the one who continued the discussion little boy, you we're the one who replied to my rating. I'm just simply trying to end it now. It's done, okay? Good. Gosh, the way people rant on and peform denial and damage control, makes me proud to be out of school and away from the corruptive peer pressure of the youth (which is clearly the problem with this... dur(nerd) guy ;)).
On a final note: The one rating system that I remember that has been in use for several years is the five star system, not bluemnkmn's.. system ;). Calm down and end the discussion already. Jeez.
*walks out shaking head*
-
How is it that you can leave the room shaking your head after every thing you say, but never actually enter the room? Just a curiosity of mine. And while I may be in college, I don't see how corruptive peer pressure has anything to do with what I'm saying on this message board, even if I were the sort to give in to that kind of thing. It's not just downright denial, it's constructing a series of statements to arrive at a proposition (stole that from Monty Python). Peer pressure isn't the kind of thing that makes one deny and do damage control. That's the most absurd thing I've heard. Peer pressure is making people smoke, not "Hey, man! You should really say this guy is wrong, man! Everybody's doing it!". Or however you want to put it.
And there's of course the 4-star system of rating hotels. But I'm talking specifically about the star-rating system that has been use on this site for years, rating the games on this site. And since that's what has been in use here for quite a while now, those who have been here for even a little while would think that is the one you are reffering to when you talk about a star-rating system.
-
tisk tisk. Oh wait, this one's for you, Durnurd.
*he walks in*
Look, just end it, okay? You're being a darn hipocrite for reviving this discussion. Let me try to end it one more time (sheesh). On a side note, i can't believe you just admitted you're the kind of person who is vulnerable to peer pressure. Pathetic. You seem like a raty 19 year old punk/nerd who relies mainly on his freinds to get him through life and to ultimately have fun. Go back to class or talk to your little clique, okay? Jeez, it's Monday, don't all you schoolboy's have class on this day or something? I know I did when I was succeeding in college.
Oh, and I wasn't talking about 'hotels'. Damn, that's the stupidest thing I've heard in a damn long time. Have you ever vetured off to gaming websites? I thought the 10 point scale and 5 point scale was the most widely used, so I used it for MYSELF. You should try 'em. Gamespot, IGN, Gamespy. I mean come on, why the hell would I be talking about HOTELS on a gaming board? Oh my gosh, that was a mistake, it had to have been. That, my new freind, was the most absurd thing I have ever heard.
*wipes hands off proudly*
I'm outa here.
*walks out shaking head at the little defensive school boy (heh heh)*
-
y don yall stop fitein and jus be ferends? lik man wit der on opinions, shak hands on it, an leave tit as it be need to be left! :)
-
I think the hypocrite is the one who the conversation to end but always keeps responding to every post. Read my post again closely. I very specifically said "even if I were the sort to give in to that kind of thing", insinuating that I am not the kind of person who gives in to peer pressure. Yes, I am 19 years old. And some have called my facial hair ratty, I suppose, and I am short for my age, but I hardly require my friends to help me through life. Quite the opposite, in fact.
Yes, I do have class on mondays. Every weekday, actually. But between classes, I don't sit around waiting for my next class. That would be a waste of time.
Yes, I've been to many gaming websites. I've read a lot of reviews, and I've seen the rating system that is present on other sites. And if you had posted your review on one of those sites, I'm sure I wouldn't have had to bring up the point that it was on a 5-point scale. And perhaps you didn't understand... I'm not saying that you used the hotel's 4-point system. Just saying that it is a popular rating system, as you seemed to only have taken into account one system, and didn't say anything about games specifically.
And at what little defensive school boy are you shaking your head? Perhaps I come off as a little defensive to you, but I'm simply responding to what you have to say. And as I said, I'm hardly a school boy. Perhaps a better ending would have been *walks out shaking head at the collegiate scholar*, but that would have not insulted me, as I imagine you are trying very hard to do.
-
No, no I'm not trying to insult you. heh, look, I've had it with talking to you. Let's end it right here, okay? Okay. Are you going to calm down? Yeeess, you are. Are you going to quit trying to make yourself feel better by typing senseless stuff? God, I hope so. I knew insecure punks like you in
school, College, I just ignored your kind.
One more time now!
*walks out laughing at the kid before his (Durnurd) head takes up ALL the space in the room*
-
I sincerely hope I'm not as insecure as you make me sound. You obviously don't know me very well (which is to be expected, I suppose. It's an online community, after all), as I've been very calm this entire time. So I don't see how I can calm down much more. I'm not trying to make myself feel better, as I've stated numerous times already. I guess there's just no convincing you.
*walks out shaking head in amazement at how long it can take some people and still not understand*
-
End it.
(By the way, I laughed really hard at your walking out sentence! that was great! I didn't think you could be funny!)
*Walks out shaking head and laughing*
-
Aw, I missed all the fun :P
One thing I will say, though. I don't know about everyone else, but I for one have a very difficult time leaving misunderstood, twisted and misleading statements (and the like) alone. Perhaps it just runs in the family, but to me, a discussion's not over until both sides are clear on what the other side has said (or at least until both sides have been clarified to any other reader who might be observing). I can see there was quite a bit of... "confusion" going on here (I don't want to point fingers, but suffice it to say that some points took a while to clarify, if they ever did clear up). Although there were many attempts to end the discussion prematurely, I at least appreciate it when someone sticks around long enough to respond to the bitter end ;). I hate it when some chat mediums (such as IRC) just blatantly kick/ban someone trying to hold an intelligent discussion with a moderator/admin just because the guy in charge disagrees and can't tolerate a little dissention. That seems quite unfair. So I expect/hope you'll never find me deleting posts with even the slightest bit of purpose or coherence just because I disagree with them. I will consider moving some of the comments from the project listing to the forums when I get a chance, but I would never want to be accused of warrantlessly cutting someone off.
-
After thinking about everything I missed last night I realized two things:
1. I don't think we're as far apart in our opinion of this game as you thought we were.
-
You are definately right, I admit that that was extremely immature, and if there were a way to delete those ratings and let me re-vote, then I'd sure as hell do it. Also, I would like for you to STOP assuming that that other little person in the listing was me. Man, people these days.
*walks out shaking head*
-
I can delete your first comment altogether or just delete the rating (1) from it if you want. Should I do one of those?
-
yeah, yeah, just delete that rating (1) if you will. I already went back and gave it a 7. Do that, would ya?
Thanks.
*walks o-* Wait a minute.
You already deleted all of mine. There's that one person in there and then there are mine. Just forget it, or whatever. there are only two comments now.