Jump to content
MakeWebGames

Mailbox Quota restrict amount of emails sent per player per day


Recommended Posts

Posted

This mod will allow you to set the amount of emails players send each other ingame per day

SQLS

[mysql]ALTER TABLE users ADD `sent_mail_count` int(11) NOT NULL default '25';

ALTER TABLE users ADD `sent_mail` int(11) NOT NULL default '0';

ALTER TABLE users ADD `mail_max` int(11) NOT NULL default '25';[/mysql]

change both 25's to the allowed number per day

cron for cron day

 

You're unable to view this code.

Viewing code within this forum requires registration, you can register here for free.

 

mailbox.php

 

You're unable to view this code.

Viewing code within this forum requires registration, you can register here for free.

 

Download these images and send the imageicons folder to your ftp

Posted

finally add this to header.php this will prevent the user from MULTI sending Emails to a user

open header.php and add this below your <title></title> tags

 

<script type="text/javascript">

 

/*

Block multiple form submission script- By JavaScriptKit.com

Visit http://www.javascriptkit.com for this script and more

This notice must stay intact for use

*/

 

//Enter error message to display if submit button has been pressed multiple times below.

//Delete below line if you don't want a message displayed:

 

var formerrormsg="Once is enough thank you."

 

function checksubmit(submitbtn){

submitbtn.form.submit()

checksubmit=blocksubmit

return false

}

 

function blocksubmit(){

if (typeof formerrormsg!="undefined")

alert(formerrormsg)

return false

}

 

</script>

** FOOTNOTE **

even though the user can no longer send Emails they can still Receive emails from those who still have email credits left

I'll post a few screenies soon

Posted

here are a few screenie..

IMAGE 1 = Full Quota of 50 emails.

50emails.jpg

IMAGE 2 = Half Quota Used.

quotahalfused.jpg

IMAGE 3 = Show taht your on your final Email

finalemail.jpg

IMAGE 4 = Shows your out of emails...

expired.jpg

IMAGE 5 = Shows that you cannot send anymore even when click on a userprofile to send emails..

try2sendmore.jpg

  • 3 months later...
Posted

update count problem

when delete messege with chekbox and icon the message count in menu dont make -1 in database i know miss a line like this

 

You're unable to view this code.

Viewing code within this forum requires registration, you can register here for free.

 

i try to find where, i post if i find where

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...