Staredit Network

Staredit Network -> Website Feedback, Bugs & Discussion -> ANNOYANCE
Report, edit, etc...Posted by EzDay281 on 2004-01-02 at 15:15:22
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: #%"?
Report, edit, etc...Posted by Yoshi da Sniper on 2004-01-02 at 15:55:56
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.
Report, edit, etc...Posted by Deathknight on 2004-01-02 at 16:08:31
well do what it sais tongue.gif
Report, edit, etc...Posted by Staredit.Net Essence on 2004-01-02 at 16:41:21
I got that error once :erm: I just stopped trying to edit it and moved on.
Report, edit, etc...Posted by EzDay281 on 2004-01-02 at 16:45:48
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... )_=
Report, edit, etc...Posted by Staredit.Net Essence on 2004-01-02 at 16:48:02
Actually I'm wondering that too (even though it effects nothing).
Report, edit, etc...Posted by Staredit.Net Essence on 2004-01-02 at 18:35:57
[number of posts] / [number of days since your registration] = [participation]

Not quite actually HARD to get, you know...
Report, edit, etc...Posted by SpaceBoy2000 on 2004-01-02 at 22:52:42
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.
Report, edit, etc...Posted by Yoshi da Sniper on 2004-01-02 at 23:54:39
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?
Report, edit, etc...Posted by Mini Moose 2707 on 2004-01-03 at 11:20:41
Its also a way to make me appear inactive when I'm actually not. tongue.gif
Report, edit, etc...Posted by EzDay281 on 2004-01-03 at 13:36:10
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.
Report, edit, etc...Posted by Yoshi da Sniper on 2004-01-03 at 13:58:59
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 tongue.gif
Report, edit, etc...Posted by EzDay281 on 2004-01-03 at 14:02:45
Wooaah, cool.
"No, it's different than that."
I don't understand what'cha mean.
Report, edit, etc...Posted by SpaceBoy2000 on 2004-01-03 at 15:11:00
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?
Report, edit, etc...Posted by EzDay281 on 2004-01-03 at 15:18:31
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...?
Report, edit, etc...Posted by Yoshi da Sniper on 2004-01-03 at 17:46:15
Exact equation:
posts/(registered days*20)

(if its over 100, it automaticly puts itself to 100)
Next Page (1)