[Add-On]Cash Mod 0.3.2

Misc MOD Downloads for phpBB3 -- Any MOD that does not fit into any other category
Forum rules
Image Please feel free to download any MOD's here, support for each MOD is located it's own thread.

To post your own MOD, please first read the MOD Guidelines

How would you rate this mod?

Excellent!
53
45%
Very Good
14
12%
Good
16
13%
Fair
0
No votes
Poor
5
4%
Needs much more work
31
26%
 
Total votes : 119

[Add-On]Cash Mod 0.3.2

Postby Handyman » 12 Oct 2006, 05:36

Classification: Add-on
phpBB Part: Forum

MOD Name: Cash Mod
MOD Version: 0.3.2
Author: Handyman
MOD Description: Allows users to receive points/cash for making posts.

Works with:
  • phpBB 3.0 RC4 - RC5 (prosilver and subsilver2)

Features:
  • Receive points for posting.
  • Set amount of points per post in ACP.
  • Set more than 1 kind of currency.
  • Admins and mods can edit users cash amounts with permission
  • Allow cash on a per forum basis
  • Limit amount earned in a day
  • View all currency in users profile

Language: English

Licence: GNU General Public License v2

Screenshots:

Installation Level: Easy
Installation Time: 16 Minutes
Format: MOD
Download File:
cash_mod_0.3.2.zip
0.3.2 released
Fixed error in instructions.
(32.53 KiB) Downloaded 9388 times

Upgrade from 0.3.0:
upgrade.zip
Upgrade 0.3.0 to 0.3.2
(5.26 KiB) Downloaded 358 times
(please note: I have not tested this? see note below)
Donate: Support StarTrekGuide

## History:
## (yyyy-mm-dd)
## 2006-10-12 - Version 0.0.1 (BETA)
## - Beta release
## 2007-02-03 - Version 0.1.0
## - Added display on viewtopic and memberlist
## 2007-03-03 - Version 0.2.0
## - Added cash toggle switches so it only works if you have it set in the ACP
##
## 2007-05-27 - Version 0.3.0
## - Added view all users cash amounts in profile
## - Added Bank Management for Admins and Mods with permission to edit users cash
## - Added permissions for admins and mods to edit users cash
## - Added prosilver and subsilver2 instructions
## - Updated to work with RC1
## - Cash on/off on per forum basis
## - Limit Cash per time period
##
## 2007-6-26 - Version 0.3.2
## - Serious code cleanup and overhaul
## - Made all cash instances into functions for easy upgrading
## - Finished the ACP so it now controls all currently available options
## - Made link to Bank in viewtopic


0.3.2 translations
Spoiler:
Languages:
  1. Dutch - eFantasy
  2. Finnish - niejon
  3. French - Crosby2(below)
    Code: Select all
        #-----[ OPEN ]----------------------
        #
        language/fr/acp/permissions_phpbb.php
        #
        #-----[ FIND ]----------------------
        #
        'actions'      => 'Actions',
        #
        #-----[ AFTER, ADD ]----------------------
        #
        'bank'         => 'Banque',
        #
    Code: Select all

        <?php
            
    /**
            *
            * Traduction [Français] par Crosby(2)
            *
            * @Fichier de langue
            * @Version $Id: cash.php 490 2007-06-27 02:17:56Z roadydude $
            * @Copyright (c) 2006 StarTrekGuide Group
            * @Licence http://opensource.org/licenses/gpl-license.php GNU Public License
            *
            */
            /**
            * NE PAS MODIFIER CE FICHIER
            */
            
    if (empty($lang) || !is_array($lang))
            {
               
    $lang = array();
            }

            
    // DEVELOPERS PLEASE NOTE
            //
            // Les variables ont maintenant une nouvelle façon d'être inscrite dans la page:
            // 'Page %s de %s' vous pouvez (et devriez) écrire 'Page %1$s de %2$s', ceci permet aux traducteurs de réordonner le classement des données en assurant que le mod fonctionne toujours.
            //
            //
            // Vous n'avez pas besoin de faire cela si la phrase ne contient qu'une variable, donc 'Message %d' est bien construit.
            // Vous pouvez aussi le faire si la phrase contient seulemente deux variables utilisées pour modifier le texte ainsi que dans les liens.
            // Exemple: 'Clickez %sICI%s' est bien construit.

            
    $lang array_merge($lang, array(
               
    'ACP_HANDY_MODS'      => 'Handymans Mods',
               
    'ACP_CASH'            => 'Cash Mod',
               
    'ADD_CURRENCY'         => 'Ajouter une devise',
               
    'AMOUNT'            => 'Quantité',
               
    'BANK_MANAGEMENT'      => 'Gestion de la banque',
               
    'BANK_ROBBERY'         => 'Désolé, le vol de banque est présentement interdit.',
               
    'CASH_LIMIT'         => 'Limite d\'argent',
               
    'CASH_LIMIT_EXPLAIN'   => '(quantité que vous pouvez gagner en 1 jour. Placez à 0 pour aucune limite)',
               
    'CASH_NAME'            => 'Nom',
               
    'CASH_PER_POST'         => 'Argent par message',
               
    'CASH_SETTINGS'         => 'Paramètres du Cash Mod',
               
    'CASH_UPDATED'         => 'Les paramètres du Cash Mod ont été modifiés',
               
    'CASH_VALUE'         => 'Valeur',
               
    'CURRENCIES'         => 'Devises',
               
    'DEFAULT'            => 'Défaut',
               
    'ENABLE_CASHMOD'      => 'Activer le Cash Mod',
               
    'NAME'               => 'Nom',
               
    'SELECT_VALID_USER'      => 'Vous devez choisir un utilisateur à configurer.',
               
    'UCP_BANK'            => 'Banque',
               
    'UCP_BANK_MANAGEMENT'   => 'Gestion de la banque',
               
    'USER_CASH_UPDATED'      => 'L\'argent de l\'utilisateur a été modifié correctement',
            ));

            
    $lang array_merge($lang, array(
               
    'acl_f_cash'      => array('lang' => 'Recevoir de l\'argent en postant''cat' => 'Message'),
               
    'acl_a_bank_manage'   => array('lang' => 'Vous pouvez modifier l\'argent de l\'utilisateur''cat' => 'Banque'),
               
    'acl_m_bank_manage'   => array('lang' => 'Vous pouvez modifier l\'argent de l\'utilisateur''cat' => 'Banque'),
            ));
            
    ?>
Last edited by Handyman on 29 Sep 2007, 16:42, edited 26 times in total.
Reason: Added Dutch and French and Finnish Translations
Please contact me if you have any news to submit to SCOFF News.
SCOFFing at the candidates while you sleep.
My Mods || My Mod Queue
Image
User avatar
Handyman    
Rear Fleet Admiral
Rear Fleet Admiral
 
Posts: 7457
Joined: 08 May 2006, 04:45
Location: Where no man has gone before!
Favorite Team: Seattle Seahawks
Gender: Male




phpBB Academy at StarTrekGuide
Support STG
Using PayPal Donate

Cash Mod Roadmap

Postby Handyman » 12 Oct 2006, 05:51

ROADMAP

I now unveil all my secret plans for this project.
If you would like any more features... please post them and I will add them to this list in the appropriate version time-frame.

Planned for 0.0.1 Finished
  1. Setup Database structure
  2. Receive 1 point for posting

Planned for 0.1.0 Finished
  1. Build into viewtopic
  2. Build into Memberlist
  3. Create upgrade script from 0.0.1

Planned for 0.2.0 Finished Released 3/7/07
  1. Vix bug introduced in 0.1.0 100%
  2. ACP Module (manage currencies) 100%
  3. ACP cash per post 100%
  4. Create DB script to auto install ACP module 100%
  5. Upgrade script from 0.1.0 100%

Planned for 0.3.0 0%
  1. Add/Edit Currencies
  2. View all currency amounts in ViewProfile 25%
  3. Create trading window to trade between currencies 0%
  4. Add conversion rates to ACP 0%
  5. Upgrade script from 0.2.0 0%

Planned for 0.4.0 0%
  1. Create display toggle for viewtopic and memberlist 0%
  2. Allow admins and mods to add/subtract/exchange users cash 0%
  3. Allow Users to donate points to other users
  4. Upgrade from 0.3.0 0%

Planned for 0.5.0 0%
  1. Points per word with ACP set Min wordcount and max points per post. 0%
  2. Points per character with ACP set Min characters and Max points per post 0%
  3. Upgrade from 0.4.0 0%

Planned for 0.6.0 0%
  1. Show points earned on post success page 0%
  2. Allow points on/off on per forum basis 0%
  3. Allow per forum earnings/rates 0%
  4. Upgrade from 0.5.0 0%

Planned for 0.7.0 0%
  1. Separate points amounts for topic start and topic replies
  2. Allow topic starter to gain points because of replies to his topic
  3. Limit Points per time period (discourages spamming)
  4. Upgrade from 0.6.0 0%

Planned for 0.8.0 0%
  1. Bonuses per post (breakdown) on a per group/rank basis
  2. Upgrade from 0.7.0 0%

Planned for 1.0.0 0%
  1. Fix any remaining bugs 0%
  2. Create MODX Install File 0%
  3. Upgrade from 0.8.0 0%
Last edited by Handyman on 30 Apr 2007, 22:42, edited 21 times in total.
Reason: Added features newly requested
Please contact me if you have any news to submit to SCOFF News.
SCOFFing at the candidates while you sleep.
My Mods || My Mod Queue
Image
User avatar
Handyman    
Rear Fleet Admiral
Rear Fleet Admiral
 
Posts: 7457
Joined: 08 May 2006, 04:45
Location: Where no man has gone before!
Favorite Team: Seattle Seahawks
Gender: Male

Re: [BETA 1] Cash Mod 0.0.1

Postby harmlessgoat22 » 16 Oct 2006, 18:29

USE MODX!!!!!!!

Otherwise, it looks pretty cool.
User avatar
harmlessgoat22    
STG Support Team
STG Support Team
 
Posts: 2886
Joined: 13 Jul 2006, 17:38
Gender: Male
phpBB Knowledge: 8

Re: [BETA 1] Cash Mod 0.0.1

Postby Handyman » 16 Oct 2006, 21:20

MODX Will be coming (see Roadmap), but I don't want to take any extra time since my time is limited for doing this kind of thing at the moment.
Please contact me if you have any news to submit to SCOFF News.
SCOFFing at the candidates while you sleep.
My Mods || My Mod Queue
Image
User avatar
Handyman    
Rear Fleet Admiral
Rear Fleet Admiral
 
Posts: 7457
Joined: 08 May 2006, 04:45
Location: Where no man has gone before!
Favorite Team: Seattle Seahawks
Gender: Male

Re: [BETA 1] Cash Mod 0.0.1

Postby harmlessgoat22 » 17 Oct 2006, 14:59

MODX is really simple. It took me about 10 minutes to convert burnMOD to MODX
User avatar
harmlessgoat22    
STG Support Team
STG Support Team
 
Posts: 2886
Joined: 13 Jul 2006, 17:38
Gender: Male
phpBB Knowledge: 8

Re: [BETA 1] Cash Mod 0.0.1

Postby Synaptic Anarchy » 23 Nov 2006, 09:51

[ABD] ?

=(
It's winter.
User avatar
Synaptic Anarchy    
Lieutenant Commander
Lieutenant Commander
 
Posts: 351
Joined: 02 Jul 2006, 02:39
Favorite Team: Starfleet Design :P
Gender: Male

Re: [BETA 1] Cash Mod 0.0.1

Postby LEW21 » 23 Nov 2006, 10:40

[quote="Handyman":5ffac]
(Goal release date: January 15th)
[/quote:5ffac]
phpBB3.PL - User-friendly Polish phpBB 3.0 support
LEW21    
Translator
Translator
 
Posts: 901
Joined: 01 Jun 2006, 03:51
Location: Warsaw, Poland
Gender: Male
phpBB Knowledge: 10

Re: [BETA 1] Cash Mod 0.0.1

Postby Handyman » 23 Nov 2006, 12:07

Thank you Lew!
That's still the goal.
Please contact me if you have any news to submit to SCOFF News.
SCOFFing at the candidates while you sleep.
My Mods || My Mod Queue
Image
User avatar
Handyman    
Rear Fleet Admiral
Rear Fleet Admiral
 
Posts: 7457
Joined: 08 May 2006, 04:45
Location: Where no man has gone before!
Favorite Team: Seattle Seahawks
Gender: Male

Re: [BETA 1] Cash Mod 0.0.1

Postby Synaptic Anarchy » 24 Nov 2006, 07:25

Hmm. It's not even "complete" to the basic expectations of a site's webmaster until 0.2.0, when an administration control panel module is developed.

Many people aren't comfortable making changes to files, and some don't even have the access required to make such changes.

Either way, version 0.0.1 has been Beta 1 for over a month with no discussion of bugs, further development, and so on. That's why I asked if it was abandoned.
It's winter.
User avatar
Synaptic Anarchy    
Lieutenant Commander
Lieutenant Commander
 
Posts: 351
Joined: 02 Jul 2006, 02:39
Favorite Team: Starfleet Design :P
Gender: Male

Re: [BETA 1] Cash Mod 0.0.1

Postby Handyman » 24 Nov 2006, 11:14

Yes... I put the roadmap there because I knew people would think it's abandoned.

I created version 0.0.1 the day before I went back to work with some serious deadlines and I've had other mod priorities that have taken up what little time that I have... but that won't be the case in January... I won't have a pressing Deadline (I hope).

exreaction and I just finished the Beta1 to Beta 3 upgrade script... so I have been putting some time in.
Please contact me if you have any news to submit to SCOFF News.
SCOFFing at the candidates while you sleep.
My Mods || My Mod Queue
Image
User avatar
Handyman    
Rear Fleet Admiral
Rear Fleet Admiral
 
Posts: 7457
Joined: 08 May 2006, 04:45
Location: Where no man has gone before!
Favorite Team: Seattle Seahawks
Gender: Male

Next

Return to Miscellaneous MODs, Hacks and Downloads

Who is online

Users browsing this forum: No registered users and 10 guests