Could the 60 second rule at least tell us how much time is left until you can submit your post?
Offline
This would be really useful! Support!
Offline
That'd be really cool - I definitely support.
Offline
Offline
I did that on my forums, so i already have the code. I'll discuss it with the ST.
Offline
Would be nice, I guess.
Offline
That would be cool! I support
Offline
Support!
Offline
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!
@sci, can you tell me your flood interval code, & how to add it in punBB?
Offline
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!
@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
Offline
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!
@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
Offline
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!
@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
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
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!
@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?
Offline
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!
@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
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
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.
Offline
I support!
Offline
I support !!!
Just make sure it does it for new Scratchers! (180 seconds)
Offline
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