vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Major Additions - ICash, Simple, stand alone point system. (https://vborg.vbsupport.ru/showthread.php?t=119086)

McCarroll21 08-12-2007 02:16 AM

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?

TalkBolts 08-12-2007 09:11 AM

Quote:

Originally Posted by Blaine0002 (Post 1315465)
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.

TalkBolts 08-12-2007 09:12 AM

Quote:

Originally Posted by McCarroll21 (Post 1315597)
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.

vitnuce 08-13-2007 08:24 AM

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')));
    }


Blaine0002 08-13-2007 02:42 PM

Doh! thanks for pointing that out :)

vitnuce 08-14-2007 09:37 AM

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')));
    }

:(

4newbies 08-20-2007 06:03 PM

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.

Black Tiger 08-20-2007 09:46 PM

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.

MadKad 08-23-2007 04:46 PM

Please can some one help, I have tried this


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

and the problem is still there :(

4newbies 08-27-2007 05:22 PM

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


All times are GMT. The time now is 06:03 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01681 seconds
  • Memory Usage 1,745KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (5)bbcode_code_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete