vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Add-On Releases - vBExperience 3.8 (https://vborg.vbsupport.ru/showthread.php?t=199556)

cykelmyggen 08-16-2009 05:37 AM

Sometimes users are asking why they have been losing certain amounts of Expirience-points, which they notice at the Activities page. When I take a look at the Point-settings in the ACP, the only thing set for subtracting points is the Infration parameter. The users losing points hasn't been given any infractions. Could anybody please explain this. My only guess so far, is that is has to do with the amount of time they spend online?

jkcerda 08-16-2009 05:42 AM

reserved

Dutch_Boy 08-16-2009 07:45 PM

Is there someone who using the promotion system? If tried to get it running but no one gets a promotin to a new group :(

Tried this but i didnt work:


Quote:

Originally Posted by Phalynx (Post 1865702)
First of all, disable the vBulletin Promotions. Make also sure you'r Administrator Usergroup is on the excluded list, otherwise you will lose it.
2. Edit the level xml file. Take a look at that part:
Code:

$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (56,1,2)");
The bold 2 is the usergroupid of the group the user will be switched to whenever he has at least 56 Experience points.

Another example:
Code:

$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (600,6,3)");
The user will be switched to usergroup #3 when he has at least 600 Experience points.

The usergroupid 2 must be entered for every point/level statement up to the next level:
Code:

$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (56,1,2)");
Code:

$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (100,2,2)");
Code:

$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (200,3,2)");
Code:

$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (300,4,2)");
....
Code:

$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (600,6,3)");
3. Import that level file
4. Recount


Kayden 08-16-2009 10:45 PM

Using Check Version in the admin CP, it still says I'm using 3.8.4, when I just imported the latest product.

Is that right?

SEW810 08-17-2009 02:12 AM

Quote:

Originally Posted by Kayden (Post 1868780)
Using Check Version in the admin CP, it still says I'm using 3.8.4, when I just imported the latest product.

Is that right?

Yeah, no problem.
Go to your xperience page and you'll see the correct version at the bottom.
Regards :)

KEKforce 08-17-2009 07:32 AM

Quote:

Originally Posted by Kayden (Post 1868780)
Using Check Version in the admin CP, it still says I'm using 3.8.4, when I just imported the latest product.

Is that right?

Here Also... 3.8.4. not 3.8.4.1. :confused:

Phalynx 08-17-2009 07:52 AM

Quote:

Originally Posted by Matt Lathrop (Post 1867177)
Hey I have a question about the CDP. This is what I have so far on my chat mod... currently I have it working so that when I recount the code it changes points_misc_cdp to 1 if they are in the chat room at the time of the recount. The problem is it won't do it constantly... it only updates when I hit recount and when I do that it dose not add on to the current # (which I guess is what recount is supposed to do) Do you have any suggestion on how to solve the issue?

The Experience Points are only recalculated if the user is logging into vBulletin or ist doing a post. It's not triggered by a chat application...


Quote:

Originally Posted by mikeo9043 (Post 1867208)
I updated that file, but no % still shows up on the xperience page.

Please upload the functions_xperience.php and re-import the product xml. It seems you imported the product with the old functions_xperience.php and therefore it did not update the tables.

Quote:

Originally Posted by gamerfu (Post 1867252)
I noticed vBExperience 3.8.4 counts posts in my "SPAM Games" board towards the user's experience. :(

I have this board set to not to count posts towards the user's final post count. :confused:

You will have to enter the board into the exclusion list of vBExperience


Quote:

Originally Posted by Joshkrz (Post 1867330)
Just a question...

Is there anyway to make it so that some shop items can be like so...



And things like custom title item or exclusive display pictures and stuff like that. If so that would be great!

Sounds great, but will not be included soon.

Quote:

Originally Posted by Joshkrz (Post 1867330)
Also could you add "Achivment" type awards, where more than one user can have an award, for lets say... 100 posts or Active for 1 year ect?

Sorry if I'm asking too much but it would be really great, and thanks for the update, I was about to ask about the activity problem.

Yes, Achievements are already in work as they will come with 3.8.5

Quote:

Originally Posted by ConfusedCartman (Post 1867380)
One more quick thing: Activity doesn't seem to behave as expected. A member half my Average Posts Per Day has twice the Activity percentage as I do, and I have toggled off everything except posts and last activity date (he's active daily, like I am). It's not just this one isolated case either - it seems to be very inconsistent across the board. Isn't there a way to just average out the top X number of members' Average Posts Per Day, then just compare each member's average Posts Per Day to that number and draw a percentage from it? If that's what's supposed to be happening, then I don't think it's working. It's not urgent, but if you could make improvements in future releases, that would be great.

Activity does NOT take the average posts per day, as this is not a value that says if a user is very active. It depends just how long and how many posts the user has written in the past, but not in the last days.

You should check how long the timeframe for the activity is, increase or decrease it and test the result via recount activity.

Phalynx 08-17-2009 07:58 AM

Quote:

Originally Posted by Itchy Nips (Post 1867461)
i just realized that the awards images are not appearing for users that have the "user name images" modification.

I even don't know that modification, but I assume it is using the same hooks.

Quote:

Originally Posted by Harley D (Post 1867952)
Add this to your CONFIG.PHP That should get you back into your ADMINCP.

Thanks for this help to the user.

Quote:

Originally Posted by milsirhc (Post 1868191)
Thanks Harley!

I've manually add a new column xperience_done in my user DB and that allows me to login.

I re-install the mod and uninstall it by first using the kill_xperience.php and then remove the product but the error came back again...

I guess I just leave xperience_done column in there for now...

That was the problem. In the readme for uninstall is written that you have to uninstall it first by removing the product.


Quote:

Originally Posted by cykelmyggen (Post 1868331)
Sometimes users are asking why they have been losing certain amounts of Expirience-points, which they notice at the Activities page. When I take a look at the Point-settings in the ACP, the only thing set for subtracting points is the Infration parameter. The users losing points hasn't been given any infractions. Could anybody please explain this. My only guess so far, is that is has to do with the amount of time they spend online?

Losing points can be caused by deleted posts/threads/discussions, removed buddies/friends, threads that are not pinned anymore, etc...
Also if you have RadioActivity installed, it is removing points...


Quote:

Originally Posted by Dutch_Boy (Post 1868698)
Is there someone who using the promotion system? If tried to get it running but no one gets a promotin to a new group :(

Tried this but i didnt work:

Yes, I know some boards who are using this actively. Also, the Inside SupCom Demoboard is using it.

Phalynx 08-17-2009 07:59 AM

Quote:

Originally Posted by Kayden (Post 1868780)
Using Check Version in the admin CP, it still says I'm using 3.8.4, when I just imported the latest product.

Is that right?

Yes, as the version of the XML did not change.

Quote:

Originally Posted by KEKforce (Post 1869008)
Here Also... 3.8.4. not 3.8.4.1. :confused:

Overwrite the xperience.php if you want the version number, but it is not needed as the fix for 3.8.4.1 is in the class_xperience.php

RaZoRShawN 08-17-2009 08:46 AM

Quote:

Originally Posted by Phalynx (Post 1869021)
Yes, I know some boards who are using this actively. Also, the Inside SupCom Demoboard is using it.

Yes. And It is working on TripDealers.org too :)

It is hard to understand at the beginning how to make it work ... but readme.thx modifications will be done soone to help all out.

:)

Another thing concerning the readme.txt

SUGGESTION 1
Add the links to mods/hack that are being supported by vBeXperience.

It will give a chance to expand the vBeXperience hack to its maximum potential faster and it would avoid the confusions during the expanding process.

Example: Readme.txt


Additionally there is support for 3rd party addons (some are already installed):
.
.
.
.
.
.
- ibProArcade Highscorer Points (via CDP Addon)
https://vborg.vbsupport.ru/showthrea...ghlight=arcade
.
.
.
.
- Post Thank You / Use of Post Thank You (via CDP Addon)
https://vborg.vbsupport.ru/showthrea...Post+Thank+You

Q: is the last one I gave is correct one, meaning this one is being supported by vBeXperience ? <<- this is what I ment by being confused in expanding process :).

SUGGESTION 2
Name of the hack small/big letters, my vote is:

vBeXperience

There is different naming being used in different files/forums etc.
There should be one name, since this might be one of the best hack ever...
Think about it :)

And THX again for great HACK!
Support is also unbelievable !!!


All times are GMT. The time now is 03:22 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.03455 seconds
  • Memory Usage 1,792KB
  • 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
  • (7)bbcode_code_printable
  • (17)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (6)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