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.
Go to your edit plugins in your admincp, you should see one that says icash money system or somthing. click edit, and then hook location click the drop down, newpost_complete should be only a few down from what its at.
Go to your edit plugins in your admincp, you should see one that says icash money system or somthing. click edit, and then hook location click the drop down, newpost_complete should be only a few down from what its at.
Worked like a charm. I tested it and i previewed my post a few times and clicked submit. It gave me the correct points. Thanks again. :up:
I'd like to have an option in the admincp that lets me select a certain usergroup/usergroups, to which I can reset/override each member's money to whatever I want it to be.
I'm using icash as my money system on vb 3.6.4.
I see that icash already has a feature that lets you donate to certain members/usergroups from the admincp. The difference being is that with the current feature you are "adding to" the users current money, rather than "overriding with" the new value.
thats great news I am new to vbulletin and the reason i bought it was to use all the great plugins lol my new forum will revolve around a point system so I really need that plugin lol. Vbbux and ebux are messed up I just want something that works or isnt full of hacks.. Can you give me any idea when this new plugin will arrive?
By the way nice job on the donation log it looks good!
Blaine - thx much, I actually got someone here form the community to help with it. (Dankness) He made a few changes to the icashadmin.php file. If you'd like to implement these changes you are more than welcome to do so.
PHP Code:
<?php /*======================================================================*\ || #################################################################### || || # ICash # || || # Copyright Blaine0002(C) 2005 All rights reserved. # || || # Modifyed by Dankness to Override Money Values # || || # ---------------------------------------------------------------- # || || # For use with vBulletin Version 3.5.3 # || || # http://www.vbulletin.com | http://www.vbulletin.com/license.html # || || # Discussion and support available at # || || # https://vborg.vbsupport.ru/showthread.php?t=100344 # || || #################################################################### || \*======================================================================*/ error_reporting(E_ALL & ~E_NOTICE); define('THIS_SCRIPT', 'icashadmin'); require_once('./global.php'); // ###################### Donate To All Members ######################## if ($_GET['act'] == "donate_to_all") { print_cp_header("Donate To Members");
$uoption="<option value='All'>All Usergroups</option>"; $usergroups = $db->query("SELECT * FROM " . TABLE_PREFIX . "usergroup ORDER BY title"); while ($usergroup = $db->fetch_array($usergroups)) { $uoption.="<option value='{$usergroup['usergroupid']}'>{$usergroup['title']}</option>"; }
print_form_header('icashadmin', 'do_donate_all'); print_table_header("Donate To Members");
print_input_row("Amount of {$vbphrase['money']} to donate", 'amount','0'); print_label_row("Choose Usergroup<dfn>Will only donate to members within this usergroup</dfn>", '<select name="usergroup" class="bginput">'.$uoption.'</select>');
print_submit_row("Donate {$vbphrase['money']} To Members", 0);
//member print_form_header('icashadmin', 'do_donate_member'); print_table_header("Donate To Member");
print_input_row("Amount of {$vbphrase['money']} to donate", 'amount2','0'); print_input_row("Choose Username", 'username','');
print_submit_row("Donate {$vbphrase['money']} To Member", 0);
//member print_form_header('icashadmin', 'do_set_member'); print_table_header("Set Member Cash");
print_input_row("Amount of {$vbphrase['money']} to set to", 'amount2','0'); print_input_row("Choose Username", 'username','');
print_submit_row("Set {$vbphrase['money']} To Member", 0);
print_form_header('icashadmin', 'do_set_all'); print_table_header("Set Money of Usergroups");
print_input_row("Amount of {$vbphrase['money']} to set", 'amount','0'); print_label_row("Choose Usergroup<dfn>Will only donate to members within this usergroup</dfn>", '<select name="usergroup" class="bginput">'.$uoption.'</select>');
print_submit_row("Set {$vbphrase['money']} To Members", 0);
print_cp_footer(); exit; }
// ###################### Do Donate To All Members ######################## if ($_POST['do'] == "do_donate_all") { print_cp_header("Donate To Members");
Really great hack! I posted a thread looking for this just yesterday and found this this morning! YAY! I just read all the pages and I was wondering if it is possible, like it was asked earlier in this thread, to receive points for specific clicking on certain URL. I also too use the thank you hack and I would like peoples getting points when they receive a thank you. And also when they vote.