vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Major Additions - [DBTech] vBCredits II Deluxe (https://vborg.vbsupport.ru/showthread.php?t=245752)

Darkwaltz4 12-13-2010 12:08 AM

I am almost done backporting the v2.0.0 into the lite version, should be ready in a few hours.

What is the error? Installing the new version will clean up the old one.
Did you install the vbulletin itemtype? Did you create a post event? If you did neither, v2.0.0 will take care of both (it merged in the vbulletin itemtype and will auto-import some basic events for you if you have not set up any)

Darkwaltz4 12-13-2010 03:52 AM

At long last, a massive new update is available for vBCredits II Deluxe: v2.0.0!

Highlights:
Process all pages of users when recalculating
Public side fully phrased, additional admin phrasing
Variable decimals when shown for transaction logs
Currency Wizard displays third party addon names
Improved instructions for making multiple selections
Overlapping events can stack instead of selecting best
Improved compatibility with addons that use points
Better labels, instructions, and context-sensitive helpers
Transfers and donate fixed and include optional presets
Currency popup redesigned and only loads configured actions
User recalculation fixes and improved for assigned actions
vBulletin actionset merged and installer cleans up legacy files
Import/export events, including default set loaded upon install
Accessibility, appearance and clarification tweaks within admincp
New currency interest and currency events can be set by target
Individual transaction phrases and avoids running unset events
Over 50 bug fixes, improvements, and optimizations!
(but no paypal support, charge bbcode, or redemption codes :D)

We hope that you enjoy this new release! Thank you for your continued support :)

washingtonboise 12-13-2010 06:25 AM

Quote:

(but no paypal support, charge bbcode, or redemption codes )
In a prior email, I heard that paypal support had been developed so that a person can purchase credits.

In this update, it is stated that there is no paypal support.

Could you clarify what the details or plans are regarding paypal support and what feature set will be provided for paypal integration?

Olgi 12-13-2010 10:37 AM

Quote:

Originally Posted by washingtonboise (Post 2133161)
In a prior email, I heard that paypal support had been developed so that a person can purchase credits.

In this update, it is stated that there is no paypal support.

Could you clarify what the details or plans are regarding paypal support and what feature set will be provided for paypal integration?

That features is in the pro version I believe

I bought it and it simply rocks

Congrats John for this excellent job!

chaldo 12-13-2010 02:09 PM

when I send my credits to someone, it says that i did not enter a valid amount. What am I doing wrong?

NarutoFTW 12-13-2010 06:43 PM

It looks the new version doesn't allow you to disable the auto template edits.

Darkwaltz4 12-14-2010 03:07 PM

Quote:

Originally Posted by NarutoFTW (Post 2133410)
It looks the new version doesn't allow you to disable the auto template edits.

Ha! Looks like I accidentally removed the block of code that handles that >.< I will restore it asap.

Quote:

Originally Posted by chaldo (Post 2133278)
when I send my credits to someone, it says that i did not enter a valid amount. What am I doing wrong?

I checked, and donations are working fine for lite.

In the currency popup, you need to enter the amount you want into the textbox on the lower left corner of it. It should only give you that error if you did not enter a positive number.

NarutoFTW 12-14-2010 05:25 PM

Are we able to use custom icons?

blue6995 12-15-2010 05:38 AM

It looks the new version doesn't allow you to disable the auto template edits.

Quote:

Originally Posted by Darkwaltz4 (Post 2133787)
Ha! Looks like I accidentally removed the block of code that handles that >.< I will restore it asap.

Has this been fixed now?

Thanks

ocloren 12-15-2010 01:03 PM

When will crediting of events be available for blog and article sections of vBulletin 4? ...if ever.

rootsxrocks 12-15-2010 02:45 PM

Its there somting more I have to set up for charging for content, when a member clicks the button the header loads in the post and then it stalls .

merk_aus 12-16-2010 02:35 AM

Code:

In order to upgrade or install vBCredits, you must upload credits_installer.php to the plugins folder within your forum directory!
Is what it comes up with when attempting to install Credits on fresh install of vbps 4.1 PL2

Darkwaltz4 12-19-2010 06:39 PM

Quote:

Originally Posted by NarutoFTW (Post 2133868)
Are we able to use custom icons?

What are you referring to?

Quote:

Originally Posted by blue6995 (Post 2134127)
It looks the new version doesn't allow you to disable the auto template edits.

Has this been fixed now?

Thanks

You can restore this in the meantime by editing admincp/credits_admin.php and finding:

PHP Code:

// ##################### Start Events Update ################################### 

and inserting this ABOVE that:

PHP Code:

// ##################### Start Displays Update ###################################

if ($_REQUEST['do'] == 'update_displays')
{
    
$vbulletin->input->clean_array_gpc('r', array(
        
'active' => TYPE_ARRAY
    
));

    
$displays $db->query_read("SELECT displayid FROM " TABLE_PREFIX "credits_display");

    while (
$display $db->fetch_array($displays))
    {
        
$db->query_write("UPDATE " TABLE_PREFIX "credits_display SET enabled = " intval($vbulletin->GPC['active'][$display['displayid']]) . " WHERE displayid = '" $db->escape_string($display['displayid']) . "'");
    }

    
$db->free_result($displays);
    
vbcredits_cache();

    
define('CP_REDIRECT''credits_admin.php?' $vbulletin->session->vars['sessionurl'] . 'do=displays');
    
print_stop_message('credits_displays_saved');


Quote:

Originally Posted by ocloren (Post 2134252)
When will crediting of events be available for blog and article sections of vBulletin 4? ...if ever.

It is on the radar, but no official timeframe is available sorry. It will probably be one of the sooner ones though, because it seems to have a mild number of people asking for it.

Quote:

Originally Posted by rootsxrocks (Post 2134289)
Its there somting more I have to set up for charging for content, when a member clicks the button the header loads in the post and then it stalls .

Please keep support for the pro features at my official site thanks :p

Quote:

Originally Posted by merk_aus (Post 2134610)
Code:

In order to upgrade or install vBCredits, you must upload credits_installer.php to the plugins folder within your forum directory!
Is what it comes up with when attempting to install Credits on fresh install of vbps 4.1 PL2

Sorry, but that was something that was forgotten to be changed, but that means you are lacking the (forum)/dbtech/credits folder, or at least the credits_installer.php file within it. Make sure your FTP program deep-uploads directories. If that one is missing, you are probably missing others.

dondavis 12-21-2010 03:51 PM

Quote:

Originally Posted by Darkwaltz4 (Post 2133122)
(but no charge bbcode :D)

Darkwaltz4 could you tell me plz est. timeframe when it will be done? Thats important for me.

Darkwaltz4 12-22-2010 01:46 AM

That exists in the pro version only, fully implemented :p

dondavis 12-22-2010 07:05 AM

Quote:

Originally Posted by Darkwaltz4 (Post 2137438)
That exists in the pro version only, fully implemented :p

Ahh cool, i am gonna buy it asap.

petergharris 12-22-2010 08:47 AM

Sorry if I have missed it, but is there any way that you can give members credits automatically when they go into another usergroup.

Equally how do you give members credits through the admincp.

Darkwaltz4 12-22-2010 12:16 PM

Quote:

Originally Posted by petergharris (Post 2137559)
Sorry if I have missed it, but is there any way that you can give members credits automatically when they go into another usergroup.

Equally how do you give members credits through the admincp.

That is the Welcome action you should attach/edit an event for - the Activity Amounts Configuration menu link

You can modify the accounts of users by going to the Recalculate User Accounts menu link.

petergharris 12-22-2010 02:01 PM

Quote:

Originally Posted by Darkwaltz4 (Post 2137612)
That is the Welcome action you should attach/edit an event for - the Activity Amounts Configuration menu link

You can modify the accounts of users by going to the Recalculate User Accounts menu link.

Thanks very much, it works a treat :)

andrewpl 12-23-2010 06:00 AM

hello,
i have installed the mod but the refferer becomes no points why?
Than i have a problem, i can no give and take credits with adjust why?

Darkwaltz4 12-28-2010 07:42 PM

Check the action specific configuration for referral action settings - it usually requires that the user with a referrer reach a certain usergroup, such as regular member. That is so that only confirmed real members will award their referrers.

Your usergroup must be set to use adjust, and the option to do that appears on the currency popup.

AF_staff 12-29-2010 12:01 PM

Hi Dark,

I am wondering if the functions added like process all pages of users when recalculating and new currency interest can also be seen in Pro? I know it might be a silly question but it seems that we don't have these (and others) in our DragonByte Tech: vBCredits II Deluxe Pro. Our version is 2.0.0... :confused:

Thank You in advance and more power to you! :)

EDIT:
Is it also possible to create an event so users will gain interest in their savings? We saw the formula textbox in the Mass Update Users page but we would like to know if we can implement that formula (ex: savings * 0.01 will be added every x day(s)) in an event?

Darkwaltz4 12-29-2010 03:10 PM

Please ask questions about the pro version only at the site in my sig please!
I will answer them here though, only because they apply to the lite version equally:

Process all pages of users when recalculating: its something you have to toggle at the bottom of the advanced settings when recalculating. It will move between the pages of results automatically vs you having to keep clicking.

Interest: is an action you need to configure in the Activity Amounts Configuration. If it didnt install with such an event, pick it from the dropdown at the bottom. Make sure to select your savings currency (or create a savings currency if you dont have one at Multiple Currency Integration). In the Action Specific Configuration, you can pick the frequency and reference date for that.

MGP_Tech 12-29-2010 04:27 PM

Originally Posted by x9751
Question and sorry if this is already in their but i didn't see it so i am asking. Are you planing on making it so people can "purchase' the Credits via paypal? Against sorry if this was asked already.
Quote:

Originally Posted by Darkwaltz4 (Post 2117998)

That is going to be in the next major pro version only.

Any ETA on that release?

Darkwaltz4 12-29-2010 04:48 PM

It is present in all its glory in the new pro version only.

NarutoFTW 12-30-2010 01:48 AM

DarkWalt, I want to add custom icons in the vbshop.

Darkwaltz4 12-31-2010 05:36 PM

Please ask that at the vbshop thread - i didnt develop that addon.

Dadoo 01-02-2011 03:19 AM

1 Attachment(s)
Please find below [DBTech] vBCredits II Deluxe v2.0.0 LITE translated in french.

Install instructions :

Go to AdminCP -> Language & Phrases -> Import -> Import XML file on existant French language (Allow overwrite : YES)

-----

Rendez-vous dans votre AdminCP -> Langues & Expressions -> Importer un langage :
Choisissez le langage "Français" (Autoriser l'écrasement : OUI)

doubleclick 01-02-2011 10:44 PM

Will this work on 3.8 as well?

Dadoo 01-02-2011 11:15 PM

I don't think so, doubleclick..

Too many changes between 3.8 and 4.x branch..

FreshFroot 01-03-2011 04:51 AM

Quote:

Originally Posted by rootsxrocks (Post 2123127)
yeah no pressure on that v3arcade intergration either :D

Is this still being worked on?

Would be nice if we could buy games or to play them use X credits.

doubleclick 01-03-2011 09:06 AM

That's too bad. Thanks, Dadoo!

Darkwaltz4 01-03-2011 12:28 PM

Quote:

Originally Posted by FreshFroot (Post 2143098)
Is this still being worked on?

Would be nice if we could buy games or to play them use X credits.

The old addon to integrate with it should still work provided you are still using the default Credits currency for the time being.

Quote:

Originally Posted by doubleclick (Post 2143175)
That's too bad. Thanks, Dadoo!

dadoo thought you were asking about his french translation, not the addon itself. this does work on vb3.8, here is the dedicated thread for it: https://vborg.vbsupport.ru/showthread.php?t=245952

Wifey 01-03-2011 04:44 PM

I have edited my points on a test board to be 1000000. When I try and transfer to a test user, it tells me I'm not allowed to do that. "Could not complete transfer"

Additionally, before in vB3.x.x version, I could have points in a bank, then transfer them into my actual account from the bank so I could donate them to users - what has changed with this? I only want my members to get the points that I or other staff members give them - for winning contests, challenges, etc.). I have it set to where nobody gets points for referrals, etc. because I have all those things set to be inactive. What am I missing here?

siriuxs 01-04-2011 04:43 PM

It is possible integrate this plugin with post thank you hack?

Thanks!

siriuxs 01-05-2011 01:58 PM

Please help me... Thanks! :)

rootsxrocks 01-06-2011 04:50 PM

Quote:

Originally Posted by siriuxs (Post 2144004)
It is possible integrate this plugin with post thank you hack?

Thanks!

Quote:

Originally Posted by siriuxs (Post 2144411)
Please help me... Thanks! :)

I certianly can with the pro version :p

siriuxs 01-06-2011 05:06 PM

In the log of the pro version there isn't explicitate this feature.... :(

motorola 01-07-2011 01:09 PM

Is it possible to integrate this plugin with a hide hack?

Antidepresiv 01-07-2011 03:18 PM

Thanks for this mod. Is there any way to disable the credits from showing up anywhere, because i have a custom menu, and i want to set that page in my custom menu.. Curently the Currency dropdown is showing twice in my navlinks, can i disable it from showing in navtabs and in navlinks ? Thanks..


All times are GMT. The time now is 07:42 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.03008 seconds
  • Memory Usage 1,848KB
  • 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
  • (2)bbcode_code_printable
  • (2)bbcode_php_printable
  • (20)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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