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
  #912  
Old 08-12-2007, 02:16 AM
McCarroll21 McCarroll21 is offline
 
Join Date: Sep 2006
Posts: 41
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is there a way you can manually put in their amount of iCash so we can manually take some away?

I know you can manually donate through the Admin Donate, but can you manually take away too? If so, how? If not, can it be implemented?
Reply With Quote
  #913  
Old 08-12-2007, 09:11 AM
TalkBolts's Avatar
TalkBolts TalkBolts is offline
 
Join Date: Mar 2006
Posts: 28
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Blaine0002 View Post
ill look into it, your giving it to the users upon registration?
Yes, that's correct. They were getting points at registration. Thank you very much for checking into this.
Reply With Quote
  #914  
Old 08-12-2007, 09:12 AM
TalkBolts's Avatar
TalkBolts TalkBolts is offline
 
Join Date: Mar 2006
Posts: 28
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by McCarroll21 View Post
Is there a way you can manually put in their amount of iCash so we can manually take some away?

I know you can manually donate through the Admin Donate, but can you manually take away too? If so, how? If not, can it be implemented?
Just give the person a negative dollar amount and it'll take it away from them.
Reply With Quote
  #915  
Old 08-13-2007, 08:24 AM
vitnuce vitnuce is offline
 
Join Date: May 2005
Posts: 23
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

New bug: People can send the bigger amount than they have. Ex: A have 1 point on hand, and he can donate to B with amount: 1000; After that, A have -999 points.

Because this code doesn't work:
Code:
    if ($vbulletin->userinfo[$vbulletin->options['icashf']] - $vbuletin->GPC['amount'] < 0){
        eval(standard_error(fetch_error('error_icash_donthave')));
    }
change it to

Code:
    if ($vbulletin->userinfo[$vbulletin->options['icashf']] - $vbulletin->GPC['amount'] < 0){
        eval(standard_error(fetch_error('error_icash_donthave')));
    }
or

Code:
    if ($vbulletin->userinfo[$vbulletin->options['icashf']] < $vbulletin->GPC['amount'] ){
        eval(standard_error(fetch_error('error_icash_donthave')));
    }
Reply With Quote
  #916  
Old 08-13-2007, 02:42 PM
Blaine0002's Avatar
Blaine0002 Blaine0002 is offline
 
Join Date: Jul 2003
Location: Wisconsin.
Posts: 1,350
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Doh! thanks for pointing that out
Reply With Quote
  #917  
Old 08-14-2007, 09:37 AM
vitnuce vitnuce is offline
 
Join Date: May 2005
Posts: 23
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Update: User may donate negative amout to other. Replace

Code:
    if ($vbulletin->userinfo[$vbulletin->options['icashf']] - $vbuletin->GPC['amount'] < 0){
        eval(standard_error(fetch_error('error_icash_donthave')));
    }
by
Code:
    if ($vbulletin->userinfo[$vbulletin->options['icashf']] < $vbulletin->GPC['amount'] ){
        eval(standard_error(fetch_error('error_icash_donthave')));
    }

    if ($vbulletin->GPC['amount'] < 0){
        eval(standard_error(fetch_error('error_icash_donthave')));
    }
Reply With Quote
  #918  
Old 08-20-2007, 06:03 PM
4newbies 4newbies is offline
 
Join Date: Feb 2007
Posts: 24
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Anyone know if Version 1.1.4 of this has been tested and works with older vB version 3.6.5?

Seems like there should also be a admin panel option to just disable member donations to for people who just wish to avoid the potencial exploits all together with this function.
Reply With Quote
  #919  
Old 08-20-2007, 09:46 PM
Black Tiger's Avatar
Black Tiger Black Tiger is offline
 
Join Date: Apr 2004
Location: Netherlands
Posts: 957
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Anyone know if Version 1.1.4 of this has been tested and works with older vB version 3.6.5?
Which 1.1.4? We are just at 1.1.2 so there isn't even a 1.1.4.

Maybe wrong thread? I have Icash running at 3.6.8 and in the ACP there is no option to disable member donations. I just deleted the "donate.php" from the forum home directory. And did not at the "donate" line to postbit and postbit-legacy. That works great.
Reply With Quote
  #920  
Old 08-23-2007, 04:46 PM
MadKad's Avatar
MadKad MadKad is offline
 
Join Date: Mar 2006
Location: UK
Posts: 208
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Please can some one help, I have tried this


https://vborg.vbsupport.ru/showpost....&postcount=914

and the problem is still there
Reply With Quote
  #921  
Old 08-27-2007, 05:22 PM
4newbies 4newbies is offline
 
Join Date: Feb 2007
Posts: 24
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I just installed this along with the latest version of iShop over older versions of iCash & iShop to take advantage of the feature that supposedly removes points when posts are deleted. However, this function does not work for my forum. I tried both "soft-deleting" and "physically removing" posts but the member's amount of points stays the same.

What could be the problem?

I am using vB version 3.6.8
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 04:37 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.06565 seconds
  • Memory Usage 2,313KB
  • 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
  • (5)bbcode_code
  • (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
  • (3)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