Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.6 > vBulletin 3.6 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
ICash, Simple, stand alone point system. Details »»
ICash, Simple, stand alone point system.
Version: 2.0.3, by Blaine0002 Blaine0002 is offline
Developer Last Online: Jul 2018 Show Printable Version Email this Page

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.

Comments
  #172  
Old 11-05-2006, 05:25 AM
chikkoo chikkoo is offline
 
Join Date: Mar 2005
Posts: 223
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I wanted to show the icash information in MEMBERINFO template.

I try to cut & paste the same information from Postbit, it's not showing the icash amount.

Anyone knows how to do it?
Reply With Quote
  #173  
Old 11-12-2006, 01:28 PM
davidw's Avatar
davidw davidw is offline
 
Join Date: Jul 2005
Location: Arkansas
Posts: 2,815
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If you want to show decimal places as in real currency, you need to make one alteration. Remember to do a backup of your table before doing this. I will not be held responsible for any problems. This works on my forums just fine.

Go in to phpmyadmin or however you alter your database and run this query
[sql]alter table " . TABLE_PREFIX . "user modify money decimal(15,2);[/sql]

If you are running iBank, you will need to run this query as well
[sql]alter table " . TABLE_PREFIX . "user modify bankmoney decimal(15,2);[/sql]

If you haven't installed this mod yet, this change to the installer should work

Find

PHP Code:
<installcode><![CDATA[
$db->query_write("ALTER TABLE " TABLE_PREFIX "user ADD COLUMN money int(15) DEFAULT '0' NOT NULL");
    ]]></
installcode
Replace with

PHP Code:
<installcode><![CDATA[
$db->query_write("ALTER TABLE " TABLE_PREFIX "user ADD COLUMN money decimal(15,2) DEFAULT '0' NOT NULL");
    ]]></
installcode
Reply With Quote
  #174  
Old 11-15-2006, 10:09 PM
Blaine0002's Avatar
Blaine0002 Blaine0002 is offline
 
Join Date: Jul 2003
Location: Wisconsin.
Posts: 1,350
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thx christian for helping, Marching band and finals are over hopefully I will be able to work on coding once again soon, though rebuilding my site is a priority (that means auction hack soon!)
Reply With Quote
  #175  
Old 11-15-2006, 10:38 PM
davidw's Avatar
davidw davidw is offline
 
Join Date: Jul 2005
Location: Arkansas
Posts: 2,815
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

No problem - there's a lot of stuff I'd like to see added, but as I add them (if I have time - and if you haven't already) I'll post them here. Right now, however, my concern is more focused on merging two sites together :P
Reply With Quote
  #176  
Old 11-15-2006, 11:25 PM
Blaine0002's Avatar
Blaine0002 Blaine0002 is offline
 
Join Date: Jul 2003
Location: Wisconsin.
Posts: 1,350
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

go right ahead, my mods are open to editing by anyone.
Reply With Quote
  #177  
Old 11-16-2006, 12:33 PM
dartho dartho is offline
 
Join Date: Sep 2005
Location: Australia
Posts: 2,303
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Blaine0002
(that means auction hack soon!)
Auction Hack? I've been toying with attempting to make a single bid auction hack, the format is: as a seller, you put in a start price and a reserve price, every hour (or x hours), the start price drops by y dollars. First bid wins the item. If no bids when it hits the reserve, the auction ends with no sale. No snipes, no tricks, no fake bids to up the price.
Reply With Quote
  #178  
Old 11-17-2006, 07:57 PM
thetradingforum's Avatar
thetradingforum thetradingforum is offline
 
Join Date: Oct 2006
Posts: 27
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is there an addon to this hack which gives users points for posts made by their referrals.

I also need a page which displays the users with most points.

Can anyone help?....needed desperately!
Reply With Quote
  #179  
Old 11-21-2006, 06:50 PM
Blaine0002's Avatar
Blaine0002 Blaine0002 is offline
 
Join Date: Jul 2003
Location: Wisconsin.
Posts: 1,350
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by dartho View Post
Auction Hack? I've been toying with attempting to make a single bid auction hack, the format is: as a seller, you put in a start price and a reserve price, every hour (or x hours), the start price drops by y dollars. First bid wins the item. If no bids when it hits the reserve, the auction ends with no sale. No snipes, no tricks, no fake bids to up the price.
I see what you mean with this, but i believe if there are not many users on the website, the seller can get screwed over on this. If we can get in contact maybe we could join forces on this.
Reply With Quote
  #180  
Old 11-26-2006, 11:00 AM
thetradingforum's Avatar
thetradingforum thetradingforum is offline
 
Join Date: Oct 2006
Posts: 27
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by thetradingforum View Post
Is there an addon to this hack which gives users points for posts made by their referrals.

I also need a page which displays the users with most points.

Can anyone help?....needed desperately!

I guess not then
Reply With Quote
  #181  
Old 11-26-2006, 11:48 AM
dartho dartho is offline
 
Join Date: Sep 2005
Location: Australia
Posts: 2,303
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The second option shouldn't be too hard to do with Logicians Web Templates

I've attached a template for use with Logicians Web Templates which should work with iCash default installation, just import it in to webtemplates

This should show the 10 richest and 10 poorest members of you site and should be very easy to change to suit you own requirements
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 01:01 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04782 seconds
  • Memory Usage 2,322KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (2)bbcode_php
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete