More wierdness:
If I ever try to delete any of my posts, it gives me an error, attached pic below.
I was trying to delete my battle request in the Rpg forum. It was in the Rpg Battle Rquest thread or something. In fact, it's the most RECENT message. Why is this?
Along with that, I can't edit it.
EDIT:
YAY, this is my Turning-Into-Reg-Post.
EDIT: Oh, and what is "Participation: #%"?
I've never heard of that error happening anywhere from anyone.
STOP POSTING IN THE BLOODY NEWBIE FORUM. WE GOT A FEEDBACK FORUM YOU KNOW!!!!!!!!
Paricipation is how much you've been posting since your account creation date.
well do what it sais
I got that error once :erm: I just stopped trying to edit it and moved on.
QUOTE(Yoshi da Sniper @ Jan 2 2004, 03:55 PM)
I've never heard of that error happening anywhere from anyone.
STOP POSTING IN THE BLOODY NEWBIE FORUM. WE GOT A FEEDBACK FORUM YOU KNOW!!!!!!!!
Paricipation is how much you've been posting since your account creation date.
Sorry.
I still don't understand what participation is... )_=
Actually I'm wondering that too (even though it effects nothing).
[number of posts] / [number of days since your registration] = [participation]
Not quite actually HARD to get, you know...
It's your post per day set into a percentage with the maximum being 100%. Though I think posts per day really suffices, Yoshi added it in to show the active people. Just think of it as another way to show how active you are.
Also, how do you post that much is beyond me. Nearly 28 posts per day? Wow.
It does that for newbies. After a week it goes to normal. Its messed in the calculations -_-
Participation is mainly to help people that haven't been at the forums from before to get a high post count, and they want to show that they are here to stay and be active. Thats exact what it does. The higher % a person has, the most they post in the forums and contribute.
Better than competing with someone with 90358723896 posts, no?
Its also a way to make me appear inactive when I'm actually not.
QUOTE(Yoshi da Sniper @ Jan 2 2004, 11:54 PM)
It does that for newbies. After a week it goes to normal. Its messed in the calculations -_-
Participation is mainly to help people that haven't been at the forums from before to get a high post count, and they want to show that they are here to stay and be active. Thats exact what it does. The higher % a person has, the most they post in the forums and contribute.
Better than competing with someone with 90358723896 posts, no?
Well, at the moment...
3rd day at SENET.
65 Posts.
65/3=3 and some fraction I'm too lazy to calculate at the moment.
It's close.
Nah, its different than that. Heres the acual coding:
CODE
$hoje[0] = date("Y");
$hoje[1] = date("m");
$hoje[2] = date("d");
$registrado[0] = date("Y", $row['joined']);
$registrado[1] = date("m", $row['joined']);
$registrado[2] = date("d", $row['joined']);
for($x = 0; $x <= 2; $x++) {
$intercessao[$x] = $hoje[$x]-$registrado[$x];
}
$numdias = ($intercessao[0]*365)+($intercessao[1]*30)+$intercessao[2];
if($row['posts'] == 0) {
$participacao = 0;
} elseif($numdias == 0) {
$participacao = 100;
} else {
$participacao = floor($row['posts']/$numdias*20);
}
if($participacao > 100) { $participacao = 100; }
$row['participacao'] = $participacao;
Yeah, its made by someone in another language. The variables are declared weird
Wooaah, cool.
"No, it's different than that."
I don't understand what'cha mean.
Hmm, the variables seems to be in some language like spanish. Care to translate for us Yoshi? Or can you just write out a simple equation for us?
Noo, I thought they were in Japanese...[sarcasm]
Hey, make that 73, not 65 posts.
Also, care to take a look at my ther thread down below this one...?
Exact equation:
posts/(registered days*20)
(if its over 100, it automaticly puts itself to 100)