This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.
  • Index
  •  » Suggestions
  •  » "60 seconds must pass between posts. Please wait XX seconds."

#1 2012-04-21 10:32:40

maxskywalker
Scratcher
Registered: 2008-01-27
Posts: 1000+

"60 seconds must pass between posts. Please wait XX seconds."

Could the 60 second rule at least tell us how much time is left until you can submit your post?

Offline

 

#2 2012-04-21 10:44:33

Greenatic
Scratcher
Registered: 2009-05-03
Posts: 1000+

Re: "60 seconds must pass between posts. Please wait XX seconds."

This would be really useful!  Support!   smile

Offline

 

#3 2012-04-21 10:48:01

RedRocker227
Scratcher
Registered: 2011-10-26
Posts: 1000+

Re: "60 seconds must pass between posts. Please wait XX seconds."

That'd be really cool - I definitely support.


Why

Offline

 

#4 2012-04-21 11:55:30

ImagineIt
Scratcher
Registered: 2011-02-28
Posts: 1000+

Re: "60 seconds must pass between posts. Please wait XX seconds."

Support.

Offline

 

#5 2012-04-21 11:57:33

coolhogs
Scratcher
Registered: 2011-07-26
Posts: 1000+

Re: "60 seconds must pass between posts. Please wait XX seconds."

Support.
That would be very useful.


Get ready for domination of:  tongue

Offline

 

#6 2012-04-21 14:55:48

scimonster
Community Moderator
Registered: 2010-06-13
Posts: 1000+

Re: "60 seconds must pass between posts. Please wait XX seconds."

I did that on my forums, so i already have the code. I'll discuss it with the ST.

Offline

 

#7 2012-04-21 15:11:23

veggieman001
Scratcher
Registered: 2010-02-20
Posts: 1000+

Re: "60 seconds must pass between posts. Please wait XX seconds."

Would be nice, I guess.


Posts: 20000 - Show all posts

Offline

 

#8 2012-04-21 15:13:00

LiFaytheGoblin
Scratcher
Registered: 2011-11-14
Posts: 1000+

Re: "60 seconds must pass between posts. Please wait XX seconds."

That would be cool! I support

Offline

 

#9 2012-04-21 16:25:25

CheeseMunchy
Scratcher
Registered: 2008-10-13
Posts: 1000+

Re: "60 seconds must pass between posts. Please wait XX seconds."

Support!


6418,

Offline

 

#10 2012-04-21 16:27:50

soniku3
Scratcher
Registered: 2011-12-08
Posts: 1000+

Re: "60 seconds must pass between posts. Please wait XX seconds."

support!


internet's all about cats today.

Offline

 

#11 2012-04-21 16:54:12

SilverDomination
Scratcher
Registered: 2011-11-23
Posts: 500+

Re: "60 seconds must pass between posts. Please wait XX seconds."

I support! I think it would ease the anger of Scratchers waiting, if they knew how much time they had left to wait. That's how it's done on Coder's Shed!  smile
@sci, can you tell me your flood interval code, & how to add it in punBB?


Sooner or Later. Or sooner. Not much, except for a lot. In a way. But it will come no matter what.

Offline

 

#12 2012-04-21 17:03:08

RedRocker227
Scratcher
Registered: 2011-10-26
Posts: 1000+

Re: "60 seconds must pass between posts. Please wait XX seconds."

SilverDomination wrote:

I support! I think it would ease the anger of Scratchers waiting, if they knew how much time they had left to wait. That's how it's done on Coder's Shed!  smile
@sci, can you tell me your flood interval code, & how to add it in punBB?

I'm pretty sure it'd be impossible with PunBB-Hosting, as you can have next to no custom code. Oh, and don't be deceived by the name - PunBB-Hosting actually uses FluxBB. ;P


Why

Offline

 

#13 2012-04-21 17:24:58

SilverDomination
Scratcher
Registered: 2011-11-23
Posts: 500+

Re: "60 seconds must pass between posts. Please wait XX seconds."

RedRocker227 wrote:

SilverDomination wrote:

I support! I think it would ease the anger of Scratchers waiting, if they knew how much time they had left to wait. That's how it's done on Coder's Shed!  smile
@sci, can you tell me your flood interval code, & how to add it in punBB?

I'm pretty sure it'd be impossible with PunBB-Hosting, as you can have next to no custom code. Oh, and don't be deceived by the name - PunBB-Hosting actually uses FluxBB. ;P

Oh.
And yes, I'm aware that it's FluxBB. :3


Sooner or Later. Or sooner. Not much, except for a lot. In a way. But it will come no matter what.

Offline

 

#14 2012-04-21 18:09:43

trinary
Scratcher
Registered: 2012-01-29
Posts: 1000+

Re: "60 seconds must pass between posts. Please wait XX seconds."

I support.


http://trinary.tk/images/signature_.php

Offline

 

#15 2012-04-21 21:00:49

scimonster
Community Moderator
Registered: 2010-06-13
Posts: 1000+

Re: "60 seconds must pass between posts. Please wait XX seconds."

SilverDomination wrote:

I support! I think it would ease the anger of Scratchers waiting, if they knew how much time they had left to wait. That's how it's done on Coder's Shed!  smile
@sci, can you tell me your flood interval code, & how to add it in punBB?

You probably won't be able to do this using PunBB-Hosting. :S

Code:

In /post.php, find...

// Flood protection
    if (!isset($_POST['preview']) && $pun_user['last_post'] != '' && (time() - $pun_user['last_post']) < $pun_user['g_post_flood'])
        $errors[] = $lang_post['Flood start'].' '.$pun_user['g_post_flood'].' '.$lang_post['flood end'];

and replace it with...

// Flood protection
    if (!isset($_POST['preview']) && $pun_user['last_post'] != '' && (time() - $pun_user['last_post']) < $pun_user['g_post_flood'])
        $errors[] = $lang_post['Flood start'].' '.$pun_user['g_post_flood'].' '.sprintf($lang_post['flood end'], $pun_user['g_post_flood']-(time() - $pun_user['last_post']));

In /lang/English/post.php find

'flood end'            =>    'seconds have to pass between posts. Please wait a little while, then try posting again.',

and replace it with...

'flood end'            =>    'seconds have to pass between posts. Please wait %s more seconds, then try posting again.',

That's it!

Offline

 

#16 2012-04-22 07:36:04

soniku3
Scratcher
Registered: 2011-12-08
Posts: 1000+

Re: "60 seconds must pass between posts. Please wait XX seconds."

scimonster wrote:

SilverDomination wrote:

I support! I think it would ease the anger of Scratchers waiting, if they knew how much time they had left to wait. That's how it's done on Coder's Shed!  smile
@sci, can you tell me your flood interval code, & how to add it in punBB?

You probably won't be able to do this using PunBB-Hosting. :S

Code:

In /post.php, find...

// Flood protection
    if (!isset($_POST['preview']) && $pun_user['last_post'] != '' && (time() - $pun_user['last_post']) < $pun_user['g_post_flood'])
        $errors[] = $lang_post['Flood start'].' '.$pun_user['g_post_flood'].' '.$lang_post['flood end'];

and replace it with...

// Flood protection
    if (!isset($_POST['preview']) && $pun_user['last_post'] != '' && (time() - $pun_user['last_post']) < $pun_user['g_post_flood'])
        $errors[] = $lang_post['Flood start'].' '.$pun_user['g_post_flood'].' '.sprintf($lang_post['flood end'], $pun_user['g_post_flood']-(time() - $pun_user['last_post']));

In /lang/English/post.php find

'flood end'            =>    'seconds have to pass between posts. Please wait a little while, then try posting again.',

and replace it with...

'flood end'            =>    'seconds have to pass between posts. Please wait %s more seconds, then try posting again.',

That's it!

How do you do that?


internet's all about cats today.

Offline

 

#17 2012-04-22 07:40:15

scimonster
Community Moderator
Registered: 2010-06-13
Posts: 1000+

Re: "60 seconds must pass between posts. Please wait XX seconds."

soniku3 wrote:

scimonster wrote:

SilverDomination wrote:

I support! I think it would ease the anger of Scratchers waiting, if they knew how much time they had left to wait. That's how it's done on Coder's Shed!  smile
@sci, can you tell me your flood interval code, & how to add it in punBB?

You probably won't be able to do this using PunBB-Hosting. :S

Code:

In /post.php, find...

// Flood protection
    if (!isset($_POST['preview']) && $pun_user['last_post'] != '' && (time() - $pun_user['last_post']) < $pun_user['g_post_flood'])
        $errors[] = $lang_post['Flood start'].' '.$pun_user['g_post_flood'].' '.$lang_post['flood end'];

and replace it with...

// Flood protection
    if (!isset($_POST['preview']) && $pun_user['last_post'] != '' && (time() - $pun_user['last_post']) < $pun_user['g_post_flood'])
        $errors[] = $lang_post['Flood start'].' '.$pun_user['g_post_flood'].' '.sprintf($lang_post['flood end'], $pun_user['g_post_flood']-(time() - $pun_user['last_post']));

In /lang/English/post.php find

'flood end'            =>    'seconds have to pass between posts. Please wait a little while, then try posting again.',

and replace it with...

'flood end'            =>    'seconds have to pass between posts. Please wait %s more seconds, then try posting again.',

That's it!

How do you do that?

By editing the original source.

Offline

 

#18 2012-04-22 13:47:44

Haiming
Scratcher
Registered: 2011-08-20
Posts: 1000+

Re: "60 seconds must pass between posts. Please wait XX seconds."

I had a similar suggestion and people just said it wasn't useful, so if I made the same suggestion, I'd definitely support this!

Offline

 

#19 2012-04-22 13:50:51

MoreGamesNow
Scratcher
Registered: 2009-10-12
Posts: 1000+

Re: "60 seconds must pass between posts. Please wait XX seconds."

The 60 second rule almost never effects me, but for when it does, it would be nice to know how long I have to wait.

Support.


http://images2.layoutsparks.com/1/218929/rubiks-cube-animated-rotating.gif
"Cogito ergo sum" --  I think, therefore I am

Offline

 

#20 2012-04-22 14:02:41

TorbyFork234
Scratcher
Registered: 2012-03-01
Posts: 1000+

Re: "60 seconds must pass between posts. Please wait XX seconds."

I support!

Offline

 

#21 2012-04-22 16:55:00

GoldRock
Scratcher
Registered: 2011-06-08
Posts: 100+

Re: "60 seconds must pass between posts. Please wait XX seconds."

Support  smile


http://img806.imageshack.us/img806/24/goldrocksig1.png

Offline

 

#22 2012-04-23 03:09:21

Jem12
Scratcher
Registered: 2012-04-20
Posts: 100+

Re: "60 seconds must pass between posts. Please wait XX seconds."

I support !!!  cool   smile   wink

Just make sure it does it for new Scratchers! (180 seconds)


"In the begging the universe was created, this made a lot of people angry and was widly regarded as a bad move" ~  Douglas Adams ~ The resturant at the end of the universe

Offline

 

#23 2012-04-23 08:53:27

Mokat
Scratcher
Registered: 2011-12-08
Posts: 1000+

Re: "60 seconds must pass between posts. Please wait XX seconds."

Support!
big_smile


http://www.eggcave.com/egg/977371.pnghttp://www.eggcave.com/egg/977376.pnghttp://www.eggcave.com/egg/1005291.pnghttp://www.eggcave.com/egg/996745.png

Offline

 

#24 2012-04-23 13:27:28

maxskywalker
Scratcher
Registered: 2008-01-27
Posts: 1000+

Re: "60 seconds must pass between posts. Please wait XX seconds."

scimonster wrote:

I did that on my forums, so i already have the code. I'll discuss it with the ST.

IK, I got the idea from Coders Shed.

Offline

 

#25 2012-04-23 21:51:55

wolvesstar97
Scratcher
Registered: 2011-08-31
Posts: 1000+

Re: "60 seconds must pass between posts. Please wait XX seconds."

Support!  big_smile   big_smile


https://dl.dropbox.com/u/33551365/psyko.png

Offline

 
  • Index
  •  » Suggestions
  •  » "60 seconds must pass between posts. Please wait XX seconds."

Board footer