Version: 2.0.3, by Blaine0002
Developer Last Online: Jul 2018
Category: Major Additions -
Version: 3.6.8
Rating:
Released: 06-19-2006
Last Update: 12-28-2007
Installs: 316
DB Changes Uses Plugins Auto-Templates
Re-useable Code Additional Files Translations Is in Beta Stage
No support by the author.
Unsupported and Unmaintained. There are better point systems to use!
ICash V2.0.2
Features
-----------
+Points in postbit.
+Points in profile page.
+Donation logs.
+Admin donation logs.
+Easy admin donate.
+Points on registration.
+Points for referrers.
+Customizable point name.
+Customizable file name.
+Donation comments.
+Dynamic decimal system.
+Points per topic creation.
+Points per post.
+Points per character.
+Ability to change money row for easy integration with your favorite hacks. for example, integrating with vbookie is as easy as going into your admin cp and changing money to 'vbookie_cash'.
+Mass point giving via ACP.
+Set customizable point values per forum.
+Points may be taken away on post deletion.
+Automatic navbar, memberinfo, and postbit template edits.
To install:
------------
Simply upload all files to your forum root directory and import the product file.
To update:
--------------
Simply reupload all files, overwrite product and revert any templates you may have edited.
Show Your Support
This modification may not be copied, reproduced or published elsewhere without author's permission.
OK, with people being able to steal from each other, I want to prevent the balance from going into the negative. How do I do that? I read the thread, and noticed it was asked, but I want to allow my members to negatively donate, but don't want their balance to go below zero. So if one member has 400 points, I don't want someone to be able to "steal" 500 from them and put that person at -100 points.
I got logging to work with donations, but couldn't figure out how to do this for posts and referrals. I wanted to have one-line log entries that stored the following:
- for posts: timestamp, username, post number (I couldn't figure out how to reference this variable in my mod of your code), points given
- for referrals: timestamp, username, referral username, points given
I need this to be able to detect points fraud, since point on my forum can be redeemed for cash and stuff. Also, did you get to look into the double-credit bug? https://vborg.vbsupport.ru/showpost....&postcount=131
Hi Armstrong - I have attached an edited version of Blains XML using the code from your original logging post - see attached (search for $logentry = date('Ymd') in the XML to see the logging lines - you can edit the text to suit your own logs.
Just import this new XML and overwrite teh existing - make sure you have a backup etc and know what your current settings etc are!
This should add to the log file for all iCash earnings
I'm trying to install Cloudrunner's paypal donation hack 3.5.0 but it'll require for me to overwrite ICash's donate.php file on my forum's root folder. I cannot let go of ICash so is there any way around this?
Hi Armstrong - I have attached an edited version of Blains XML using the code from your original logging post - see attached (search for $logentry = date('Ymd') in the XML to see the logging lines - you can edit the text to suit your own logs.
Just import this new XML and overwrite teh existing - make sure you have a backup etc and know what your current settings etc are!
This should add to the log file for all iCash earnings
Thanks dartho, this will indeed help. But looking over your code, it still doesn't log "post number" or "referral username". I'm not familiar enough with vb to know how to get this data, so I'm kinda stuck at this point.
$logentry = date('Ymd') . ' ' . strftime('%T') . ' ' . $vbulletin->options['ppreferp'] . ' Referal Points Given To User ' . $vbulletin->GPC['referrername'];
and change to
PHP Code:
$logentry = date('Ymd') . ' ' . strftime('%T') . ' ' . $vbulletin->options['ppreferp'] . ' Referal Points Given To User ' . $vbulletin->GPC['referrername'] . ' for refering ' . $vbulletin->userinfo['userid'];
not sure about post number/ thread id...
@chkdgate - simply rename the donate.php to something like - cashdonate.php and reapply the postbit edit as per instructions using the new name rather than donate.php
I'm trying to install Cloudrunner's paypal donation hack 3.5.0 but it'll require for me to overwrite ICash's donate.php file on my forum's root folder. I cannot let go of ICash so is there any way around this?
Anyone have any news on this?
Quote:
Originally Posted by dartho
@chkdgate - simply rename the donate.php to something like - cashdonate.php and reapply the postbit edit as per instructions using the new name rather than donate.php
Sorry I didn't see your post at me. Which donate.php file are you referring to, ICash's?