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 - vBExperience 4 (https://vborg.vbsupport.ru/showthread.php?t=245023)

snowlion 11-12-2011 12:38 AM

Quote:

Snow, are you calculating points from a specific date, or from the beginning of your boards tiime (since it was created)?
Yes, I calculate from the beginning of the board so I set 0 to "Start calculation of points from given date" not from a specific date and I think you should do it, or can you tell me why you have to calculate from a specific date cause I noticed your board start from 2005, right?

** EDIT: Some plugins are still causing database errors from 4.1.0 RC. Such as:
ProjectTools
v3arcade_Champion
v3arcade_Submissions
vBookie
vBSoccer
vBSoccer_Bets

Phalynx 11-12-2011 11:47 AM

Quote:

Originally Posted by RollaJedi (Post 2266971)
dude, step off. Give Master P a break. He's constantly got people hounding him for answers and he's just one man, plus its not like he gets a paycheck for this. Take a pill

Thanks for your motivating words.

Quote:

Originally Posted by WDS (Post 2267043)
OK, it would be an interesting improvement.
Please take into account :D

Here we go:
http://www.vbaddict.net/project.php?issueid=114

Quote:

Originally Posted by snowlion (Post 2267103)
** EDIT: Some plugins are still causing database errors from 4.1.0 RC. Such as:
ProjectTools
v3arcade_Champion
v3arcade_Submissions
vBookie
vBSoccer
vBSoccer_Bets

Did you installed the new version of the plugins already?

Vowgaming 11-12-2011 11:55 AM

Hi firstly love the addon just hoping you can give me a clue about notifications on promotions.
When you receive a promotion I want the pm to link to a different page, at the moment it goes to insight, where can this be changed I have looked through the code and cant seem to find it.

thought it was in functions
Code:

function AddNotification($column, $userid)
{
        global $vbulletin;
       
        if ($vbulletin->options['xperience_notifications'])
        {
                $vbulletin->db->query_write("UPDATE " . TABLE_PREFIX . "user SET ".$column."=+1 WHERE userid=".$userid);
        }
}

But I cant see the details of the notification here

vitrag24 11-12-2011 12:16 PM

i had issue of server overload due to spam bot mostly in previous version..when i disabled previous version, no such problem..so i think there was some problem with previous version..now ujpgrading to this version..i hope there wont be such problem now.

Phalynx 11-12-2011 12:54 PM

Quote:

Originally Posted by Vowgaming (Post 2267247)
Hi firstly love the addon just hoping you can give me a clue about notifications on promotions.
When you receive a promotion I want the pm to link to a different page, at the moment it goes to insight, where can this be changed I have looked through the code and cant seem to find it.

thought it was in functions
Code:

function AddNotification($column, $userid)
{
        global $vbulletin;
       
        if ($vbulletin->options['xperience_notifications'])
        {
                $vbulletin->db->query_write("UPDATE " . TABLE_PREFIX . "user SET ".$column."=+1 WHERE userid=".$userid);
        }
}

But I cant see the details of the notification here

It's not in the PHP files. You need to change the code of a plugin named "vBExperience (notifications)":
PHP Code:

    $notifications['xperience_promotioncount'] = array(
        
'phrase' => $vbphrase['xperience_promotions_notifications'],
        
'link'   => $vbulletin->options['bburl'].'/xperience.php?go=insight' $vbulletin->session->vars['sessionurl'],
        
'order'  => 152
    
); 

Quote:

Originally Posted by vitrag24 (Post 2267251)
i had issue of server overload due to spam bot mostly in previous version..when i disabled previous version, no such problem..so i think there was some problem with previous version..now ujpgrading to this version..i hope there wont be such problem now.

Please check if the banned usergroup id is set to be ignored in vBExperience Settings.

goxy63 11-12-2011 07:22 PM

Just installed this awesome mod :)

I just dont know how to set some awards regarding to arcade games (ibproarcade)
Would like to give users awards for first three places and also some achievements....
Installed plugin for ibproarcade, just dont know what to set in "Add a new Award", as in settings it is mentioned that I can set this manually but...?
How to set this for an awards and achievements?

Also, where is option for a user to give away points? I just cant find it :D
Found it, its kinda hidden :D
Is it possible that user see this option in some better way?

Thanks

Vowgaming 11-12-2011 10:58 PM

Quote:

Originally Posted by Phalynx (Post 2267255)
It's not in the PHP files. You need to change the code of a plugin named "vBExperience (notifications)":
PHP Code:

    $notifications['xperience_promotioncount'] = array(
        
'phrase' => $vbphrase['xperience_promotions_notifications'],
        
'link'   => $vbulletin->options['bburl'].'/xperience.php?go=insight' $vbulletin->session->vars['sessionurl'],
        
'order'  => 152
    
); 


Exactly what is was after thank you for your quick response.

Vbulletin has so many areas you have to look when you want to make changes, makes it hard some times!

Phalynx 11-12-2011 11:53 PM

Quote:

Originally Posted by goxy63 (Post 2267346)
Just installed this awesome mod :)

I just dont know how to set some awards regarding to arcade games (ibproarcade)
Would like to give users awards for first three places and also some achievements....
Installed plugin for ibproarcade, just dont know what to set in "Add a new Award", as in settings it is mentioned that I can set this manually but...?
How to set this for an awards and achievements?

Look out for the fieldname "Arcade Championships" and select it. Create three awards and put gold, silver or bronze on each of them - automatically the best three user should get the award.

Quote:

Originally Posted by goxy63 (Post 2267346)
Also, where is option for a user to give away points? I just cant find it :D
Found it, its kinda hidden :D
Is it possible that user see this option in some better way?

Thanks

You can put a link wherever you want, just link to xperience.php?go=gap

Quote:

Originally Posted by Vowgaming (Post 2267393)
Exactly what is was after thank you for your quick response.

Vbulletin has so many areas you have to look when you want to make changes, makes it hard some times!

Yes, absolutly. To make it more confusing, I could just do a require_once in that hook :D

sweetpotato 11-13-2011 01:48 AM

How to config Last Promotion to show more? On my site only 15 days showed. I want more to inform all members who have been promoted
Thanks,

snowlion 11-13-2011 10:36 AM

Quote:

Originally Posted by Phalynx (Post 2267246)
Did you installed the new version of the plugins already?

Yes, I did


All times are GMT. The time now is 03:12 AM.

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.07192 seconds
  • Memory Usage 1,765KB
  • 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
  • (11)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (5)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