You know that code that can set points per day at 45 and make it lower by 1 every day? Can I use the code or is it downloadable somewhere and I can't find it?
Deduct Points Code
| Ratmaster wrote: |
| You know that code that can set points per day at 45 and make it lower by 1 every day? Can I use the code or is it downloadable somewhere and I can't find it? |
No sorry, it's not available. But the sql query isn't difficult.
Well with my rudimentary knowledge of PHP and MySQL just do a query of every use with points and setup if else statement.
Of course you have to replace the coding with proper mySQL queries and such and proper coding. This is just the "outline" of the concept. Then set this as a cron job to run once a day.
| Code: |
|
if($hosted=yes){ if($points>45){ // Set points to 45 code } else{ $points=$points-1; } } |
Of course you have to replace the coding with proper mySQL queries and such and proper coding. This is just the "outline" of the concept. Then set this as a cron job to run once a day.
I think DjinniFire has got the basic outline right.
Now all you need is the real stuff in the middle
Now all you need is the real stuff in the middle
