PDA

View Full Version : Add-On Releases - vBExperience 3.8


Pages : 1 2 3 4 [5] 6 7 8 9 10

cooltechie
08-12-2009, 03:34 AM
Since the style author doesn't seem to be providing support, I was wondering how I can compare and where I should look to determine why experience menu is not showing up when I 'Enable link in navbar' and 'Enable link in quicklinks'.

bada_bing
08-12-2009, 03:52 AM
Support seems a bit slow for this hack???

SEW810
08-12-2009, 05:02 AM
Nope, Phalynx aswers pretty fast, of course he has to sleep a lil bit, he is human :)
Thnx Phalynx for your great support and mod.

Regards.

diesalot
08-12-2009, 05:25 AM
Since the style author doesn't seem to be providing support, I was wondering how I can compare and where I should look to determine why experience menu is not showing up when I 'Enable link in navbar' and 'Enable link in quicklinks'.

This mod uses template hooks like most other mods.

You need to search for the following lines of code and compare their places in the Navbar Template in the Vbulletin default style to your installed custom Style Navbar Template and make sure that they are in their.

$template_hook[navbar_quick_links_menu_pos1]

$template_hook[navbar_buttons_right]

$template_hook[navbar_community_menu_end]

Phalynx
08-12-2009, 07:09 AM
HOw come everytime I try and update the users points and activities I get CGI Errors

FastCGI Error
The FastCGI Handler was unable to process the request.

Error Details:

* The FastCGI process exceeded configured request timeout
* Error Number: 258 (0x80070102).
* Error Description: The wait operation timed out.

HTTP Error 500 - Server Error.
Internet Information Services (IIS)
Decrease the number of users that are calculated at once from 250 to f.e. 100

I don't got it!.

Every time I do a Recount, User's activity always go down and down and down :(
Even if I reinstall another or actual level

Activity setts are by default
Activity has absolutly nothing to do with the level. What do you mean with "always"? Every day? Maybe because the new mechanism "Include User's last activity date" is enabled? Try to disable it and to a recount on Activity (not Points!)


Since the style author doesn't seem to be providing support, I was wondering how I can compare and where I should look to determine why experience menu is not showing up when I 'Enable link in navbar' and 'Enable link in quicklinks'.
This mod uses template hooks like most other mods.

You need to search for the following lines of code and compare their places in the Navbar Template in the Vbulletin default style to your installed custom Style Navbar Template and make sure that they are in their.

$template_hook[navbar_quick_links_menu_pos1]

$template_hook[navbar_buttons_right]

$template_hook[navbar_community_menu_end]

Thanks for helping out :)


Support seems a bit slow for this hack???
I'm so sorry, I have to sleep a little bit. Really sorry for your impatience....

Nope, Phalynx aswers pretty fast, of course he has to sleep a lil bit, he is human :)
Thnx Phalynx for your great support and mod.

Regards.
Thanks :)

Dutch_Boy
08-12-2009, 07:22 AM
phalynx found the problem!

AWCoding- Donation System LITE for vBExperience

That mod causes the recount database error.

Now i hope everything wil run without problems :)

gamerfu
08-12-2009, 07:25 AM
is there a way to "buy" user priviledges?

say like, username coloring, customiz usertitle, or buy customize signature priviledge in shop?

basically, buy user priviledges or features that are normal not avaliable to them from their Usergroup.

Edit [Add]: Oh BTW! Does vBExp still support Bills PayPal Donate Basic?
I do not see it on the 3rd party add-on support anymore.
link: https://vborg.vbsupport.ru/showthread.php?t=174010

Phalynx
08-12-2009, 07:37 AM
phalynx found the problem!

AWCoding- Donation System LITE for vBExperience

That mod causes the recount database error.

Now i hope everything wil run without problems :)
Finally! Nice to hear.

is there a way to "buy" user priviledges?

say like, username coloring, customiz usertitle, or buy customize signature priviledge in shop?

basically, buy user priviledges or features that are normal not avaliable to them from their Usergroup.
No, this will come with a major update of the shop.

RaZoRShawN
08-12-2009, 08:49 AM
OK

First of all BIG THX for this great mod Mariusz!

Idea, plugin system and mostly your support is appreciated.

I wold like to sorry if I am making doubled issue.

I went through 40 pages of history of this post and found only questions about my problem.
The answer : read the readme files is not enough for me thou...

Problem (understanding how it works)

Promotion system if enable YES, how does it work?
How to make it possible to users changing ranks (pictures) with experience level ?
I have tried to:
-import modified vbexperience_level_2_average.xml changing usergroupid to custom group ids that I have created;
-add a rank image in user ranks for custom groups)

Am I going good direction? (as far as understanding the hack is concern)

problem is that I have members lets say on experience level 2... and I am refreshing and rebuilding everything that might lead to the users being promoted to the custom groups with no success...

Please help me out.
I will make ready to go manual to be implemented to Your readme for future generation people with the brain like me :)...

Phalynx
08-12-2009, 09:27 AM
Problem (understanding how it works)

Promotion system if enable YES, how does it work?
How to make it possible to users changing ranks (pictures) with experience level ?
I have tried to:
-import modified vbexperience_level_2_average.xml changing usergroupid to custom group ids that I have created;
-add a rank image in user ranks for custom groups)

Am I going good direction? (as far as understanding the hack is concern)

problem is that I have members lets say on experience level 2... and I am refreshing and rebuilding everything that might lead to the users being promoted to the custom groups with no success...

Please help me out.
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:
$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:
$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:
$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (56,1,2)");
$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (100,2,2)");
$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (200,3,2)");
$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (300,4,2)");
....
$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



I will make ready to go manual to be implemented to Your readme for future generation people with the brain like me :)...
Yes, I need a native english speaker who takes a look at the readme's and re-writes it so it is more understandable :)

bada_bing
08-12-2009, 02:12 PM
Originally Posted by bada_bing View Post

HOw come everytime I try and update the users points and activities I get CGI Errors

Code:

FastCGI Error
The FastCGI Handler was unable to process the request.

Error Details:

* The FastCGI process exceeded configured request timeout
* Error Number: 258 (0x80070102).
* Error Description: The wait operation timed out.

HTTP Error 500 - Server Error.
Internet Information Services (IIS)

Decrease the number of users that are calculated at once from 250 to f.e. 100


Ive tried this even 50 and still does the same thing, seems that when I run this my site stops responding for several minutes also

Eryeal
08-12-2009, 02:28 PM
Is the experience point level stored in the user table? If so - what is the name it is stored as? I want to see if this is compatible with the new Gameroom mod. Thanks!

SEW810
08-12-2009, 02:36 PM
Eryeal I'm not for sure but, I think Experience doesn't include add on for Gameroom mod.
I just can see v3 and ibpro add ons.
Regards :)

Activity has absolutly nothing to do with the level. What do you mean with "always"? Every day? Maybe because the new mechanism "Include User's last activity date" is enabled? Try to disable it and to a recount on Activity (not Points!)


Well, I mean:

If I did some adjustments at Xperience CP and after that I do a Recount, activity % always goes smaller
Example:

Some user has 46% Activity bar.
I do a recount.
When recounf finishes, now that user has 12% Activity bar.

Anyway, I'll try your advice.
Danke Sie ;)

Eryeal
08-12-2009, 02:42 PM
Eryeal I'm not for sure but, I think Experience doesn't include add on for Gameroom mod.
I just can see v3 and ibpro add ons.
Regards :)

Right there's no add-on, but the new Game Room includes the feature to specify where to draw currency from in the User Table. I actually just now found it for here - the user table name is xPerience. It is actually working at the moment - pulling the correct number of points as "cash" and saving any winnings or losses. I just don't know if after a cron run or recalculation I'm assuming the points won in the Game Room would be erased. I already made a suggestion for Game Room to have an add-on that fully supports VBExperience - that would be really nice.

Eryeal
08-12-2009, 02:43 PM
Suggestion -

Have a PM option for when a user wins an award. Maybe even have a PM option for when a user loses an award as well.

bada_bing
08-12-2009, 03:17 PM
Removed due to lack of support.

Eryeal
08-12-2009, 03:29 PM
Removed due to lack of support.

What do you want - a 24 hour 1-800 number or something? Phalynx provides great support. Sorry that it's not working for you like the rest of us - Phalanx is helping to solve your problems as well as others as you can see - he responds every single day. Your last message was one hour ago, and then you come on and say removed due to lack of support? You think people that program these mods don't have day jobs and just sit and wait for a message to come through?

Sorry for going off... I just feel that was an unnecessary post.

bada_bing
08-12-2009, 03:40 PM
What do you want - a 24 hour 1-800 number or something? Phalynx provides great support. Sorry that it's not working for you like the rest of us - Phalanx is helping to solve your problems as well as others as you can see - he responds every single day. Your last message was one hour ago, and then you come on and say removed due to lack of support? You think people that program these mods don't have day jobs and just sit and wait for a message to come through?

Sorry for going off... I just feel that was an unnecessary post.

Yes I understand and give the coder of this mod massive props, Its just that I could not afford to sped anymore time trying on thing per day to resolve my issues. If I ever get a more complete response of things to check I may give it another try

Dutch_Boy
08-12-2009, 04:31 PM
I found one same problem.

When i hit on test in Manage Awards on an new made award that i dont us and not filld in i get this database error:

Invalid SQL:
SELECT
u.userid, u.username,

AS get_count
FROM vb_xperience_stats as s
INNER JOIN vb_user as u ON u.userid = s.userid
ORDER BY get_count DESC, points_xperience DESC
LIMIT 10;

MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'AS get_count
FROM vb_xperience_stats as s
INNER JOIN vb_user as u ON u' at line 4
Error Number : 1064

Just a small bug :)

robdawg
08-12-2009, 05:17 PM
I created a bunch of new awards finally and I only see the 3 "default" awards in the system from 3.8.3

Anyone know how to get new awards to show up?

Thanks.

Nevermind, I am an idiot. Put display to 0... :( sign...

NLP-er
08-12-2009, 06:00 PM
Where were old awards images? I don't remember anc cannot find it... I have to find it to point it again... :/

NLP-er
08-12-2009, 06:20 PM
Where were old awards images? I don't remember anc cannot find it... I have to find it to point it again... :/

Got it :) images/misc/level

Joshkrz
08-12-2009, 10:32 PM
Hello,

I upload all the files to my server, but when I go to install the XML it says:
You need to upload files first!

Could anyone help me out please.

Thank you.

EDIT: Sorry, FireFTP was playing up and wasn't actually uploading the files in the correct places. Sorry to bother you all and thanks for this great add-on.

Gun Geek
08-13-2009, 01:51 AM
Great plug in here. I am still learning how to use it.

One of my users activity is at 99.9% mine is at 100% and everyone else is at 0 - what is the activity based on exactly because the user with 99.9% activity is only a level one with two posts and 71 points.

Also what are the awards based off of? What determines what award to give to who? I have been playing with this for the past few days and dont see where this is or if you can set it.

Also one suggestion - upload image button for the shop would be great. Having to go FTP and then put in the URL is kind of a long process to add a product to the shop.

stardotstar
08-13-2009, 03:34 AM
Hi, I'm uncertain if this is fixed earlier in the pages, but please point me there if so,,,

I have only a few of the options showing as configuration panels when clicked on in the side bar of the acp.
ie the settings labeled:
Settings:
do not display - I get a blank right side main panel
but the others work fine....
I recall something like this with another mod but I cannot remember if it got fixed or what caused it...
Ring any bells?

BTW thank you for such a huge update - massive and most awesome mod!

SEW810
08-13-2009, 04:52 AM
Pretty nice, now everybody on my forum is 100% activity.
Oh my $&%$/$&%&)(/ God!!!

Experience Activity setts are:
Include User's posts YES
Include User's Blog entries and Blog comments NO
Include User's Visitor messages YES
Include User's Social Group messages YES
Include User's last activity date YES
Stupid PPD value is by default: 21
Other stupid PPD value is calculated daily by blah blah blah. ( I HAVE NOT CHANGED IT)

What the hell is wrong? :'(
I am tired, angry, sad... almost losing my mind

Jesus, I have uninstalled and re installed Exp 3.8.4 a lot of times and no good news :(
Experience 3.8.3 used to work fine... well, even 3.8.3 gives me terrible headaches now ... i don?t know what to do man, I REALLY don't want to uninstall it but oh God!, this mod is begging me to do it!!!

Recounts??, Man!!, If someone would give me a dollar for every recount I've done... I'd be millionaire

my forum www.seusers.com

Regards and sorry about my behavior.....I'm desperate
HELLp !!!!!!!!

SEW810
08-13-2009, 05:06 AM
I almost forget.
Maybe this is an issue.

If I sett only take user's post to activity like this:

Include User's posts YES
Include User's Blog entries and Blog comments NO
Include User's Visitor messages NO
Include User's Social Group messages NO
Include User's last activity date NO
Stupid PPD value is by default: 21
Other stupid PPD value is calculated daily by blah blah blah. ( I HAVE NOT CHANGED IT)

After that I do an activity recount. It showes:

Update Activity PPD (Post per Day)
Processing Average PPD: 0 zero?? WTF ??
1
2
3
4
5
6
7
blah blah blah
My board:
VBulletin 3.8.2 ( yeah I know, must to update)
Level 7 installed.
Post thanx add on installed.
v3 arcade champions add on installed.
radioactivity add on installed.
More than 75,000 users.
Active users ~ 13,588

************* EDITED ****************
Me again, for one moment my activity was correct (20% I've been inactive these days)
Any way, If me or some other user post 1 message,the activity goes to 100%.

I think I'll be 20% again,maybe within a couple of hours, I guess.

Still got same setts:
Include User's posts YES
Include User's Blog entries and Blog comments NO
Include User's Visitor messages YES
Include User's Social Group messages YES
Include User's last activity date YES
Stupid PPD value is by default: 21
Other stupid PPD value is calculated daily by blah blah blah. ( I HAVE NOT CHANGED IT)

Regards !!!!.
I wont give up buddy, I love this MOD and I know you or God will give me the answer.... one day.

Das ist 2 Uhr 12 in diesem Augenblick. Ich bin schl?frig, gute Nacht ;)

Phalynx
08-13-2009, 08:24 AM
Is the experience point level stored in the user table? If so - what is the name it is stored as? I want to see if this is compatible with the new Gameroom mod. Thanks!

Right there's no add-on, but the new Game Room includes the feature to specify where to draw currency from in the User Table. I actually just now found it for here - the user table name is xPerience. It is actually working at the moment - pulling the correct number of points as "cash" and saving any winnings or losses. I just don't know if after a cron run or recalculation I'm assuming the points won in the Game Room would be erased. I already made a suggestion for Game Room to have an add-on that fully supports VBExperience - that would be really nice.
Gameroom must store the points in the xperience_custompoints table, otherwise it get's overwritten by the cron.

Suggestion -

Have a PM option for when a user wins an award. Maybe even have a PM option for when a user loses an award as well.
Added to Todo-list. Maybe just a notification.

Removed due to lack of support.
Removed support for you due to lack of "Installed" Flag.

What do you want - a 24 hour 1-800 number or something? Phalynx provides great support. Sorry that it's not working for you like the rest of us - Phalanx is helping to solve your problems as well as others as you can see - he responds every single day. Your last message was one hour ago, and then you come on and say removed due to lack of support? You think people that program these mods don't have day jobs and just sit and wait for a message to come through?

Sorry for going off... I just feel that was an unnecessary post.
Thanks. That's right, I'm not a computer and have also a real life. Because of this, I'm not able to give 24h Support. If someone is uninstalling after he gets few hours no response, good luck for him.

Phalynx
08-13-2009, 08:32 AM
I found one same problem.

When i hit on test in Manage Awards on an new made award that i dont us and not filld in i get this database error:

Invalid SQL:
SELECT
u.userid, u.username,

AS get_count
FROM vb_xperience_stats as s
INNER JOIN vb_user as u ON u.userid = s.userid
ORDER BY get_count DESC, points_xperience DESC
LIMIT 10;

MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'AS get_count
FROM vb_xperience_stats as s
INNER JOIN vb_user as u ON u' at line 4
Error Number : 1064

Just a small bug :)
That is not a bug. You have not selected any field that the award should calcule with. Even if you assign an award manually, you need to select at least one field.


Great plug in here. I am still learning how to use it.

One of my users activity is at 99.9% mine is at 100% and everyone else is at 0 - what is the activity based on exactly because the user with 99.9% activity is only a level one with two posts and 71 points.
Run the activity cron and after that the recalculate activity.

Also what are the awards based off of? What determines what award to give to who? I have been playing with this for the past few days and dont see where this is or if you can set it.
It's based on the fields you select for every awards. All fields are summed together. User with highest value is getting the award. If you have enabled the new awardlisting, you can see the fields that were used for the calculation. Also, if you have the option enabled to limit the awards to max 1 for a user, the user is not getting it. The second, third, etc... user is getting it then.

Also one suggestion - upload image button for the shop would be great. Having to go FTP and then put in the URL is kind of a long process to add a product to the shop.
Added to my Todo-List.

Hi, I'm uncertain if this is fixed earlier in the pages, but please point me there if so,,,

I have only a few of the options showing as configuration panels when clicked on in the side bar of the acp.
ie the settings labeled:
Settings:
do not display - I get a blank right side main panel
but the others work fine....
I recall something like this with another mod but I cannot remember if it got fixed or what caused it...
Ring any bells?

BTW thank you for such a huge update - massive and most awesome mod!
That is a known issue, but not with vBExperience, it's PHP:
- Settings are showing only a blank page, read here: http://www.vbulletin.com/forum/project.php?issueid=26979#note74140

Pretty nice, now everybody on my forum is 100% activity.
Please PM me a temporary admin account so I can track that down.

TimzZ
08-13-2009, 11:58 AM
I have a weird problem since I few days.

I have a selfmade usergroup since the beginning who have access to all the private forums.

A few days ago I did the gold update of vBExperience, and I also turned on the standard VB User Reputation system. Now my users from that private group always get demoted to registered users when they change there signature or add something in their profile fields.

On the promotions page of vBExperience, on the activities it says:
... demoted to Registered Users

I change them back to the private group but when they change something they get auto demoted again..

What is happening?
Thanks..

Phalynx
08-13-2009, 12:37 PM
I have a weird problem since I few days.

I have a selfmade usergroup since the beginning who have access to all the private forums.

A few days ago I did the gold update of vBExperience, and I also turned on the standard VB User Reputation system. Now my users from that private group always get demoted to registered users when they change there signature or add something in their profile fields.

On the promotions page of vBExperience, on the activities it says:
... demoted to Registered Users

I change them back to the private group but when they change something they get auto demoted again..

What is happening?
Thanks..

You have turned on the vBExperience Promotion System. The Users are promoted/demoted to other usergroups based on the levels defined in the level XML. Turn off vBExperience Promotionsystem or type the private usergroup as an exception into the settings.

RK1gaming
08-13-2009, 12:42 PM
Updated - another great product and just keeps getting better

smirkley
08-13-2009, 01:08 PM
Just reinstalled this after some time ago,.. much better. Thanks.

A suggestion,... on the points giveaway page.

The points giveaway would be better if it didnt list all point earning catagories possible. I think it should show only points that arent zero.

Primarily because I dont use alot of the mods that vBexperience is setup to give points for, so my members will never earn points in those categories.

But yes, a gread mod!

Phalynx
08-13-2009, 01:10 PM
Just reinstalled this after some time ago,.. much better. Thanks.

A suggestion,... on the points giveaway page.

The points giveaway would be better if it didnt list all point earning catagories possible. I think it should show only points that arent zero.

Primarily because I dont use alot of the mods that vBexperience is setup to give points for, so my members will never earn points in those categories.



But yes, a gread mod!
Great Idea, will be included in 3.8.5

TimzZ
08-13-2009, 01:11 PM
You have turned on the vBExperience Promotion System. The Users are promoted/demoted to other usergroups based on the levels defined in the level XML. Turn off vBExperience Promotionsystem or type the private usergroup as an exception into the settings.


Thank you, I think this will work.

This (The vBExperience Promotion system) will replace the internal vB promotions, it says somewhere in the settings.

But the internal VB Promotions, is this the User reputation manager?

So if I use the vBExperience Promotion System, I have to disable the original internal vB promotions/User reputation? Because this may interfere together? Am I correct or wrong?

Cuz those two names of promotion systems, the one you made & the original kinda confuses me, with those names.. :)

Phalynx
08-13-2009, 01:17 PM
Thank you, I think this will work.

This (The vBExperience Promotion system) will replace the internal vB promotions, it says somewhere in the settings.

But the internal VB Promotions, is this the User reputation manager?

So if I use the vBExperience Promotion System, I have to disable the original internal vB promotions/User reputation? Because this may interfere together? Am I correct or wrong?

Cuz those two names of promotion systems, the one you made & the original kinda confuses me, with those names.. :)

The internal promotionsystem of vBulletin can be reached via AdminCP, Usergroups, Promotions. Reputation has nothing to do with promotion.

Matt Lathrop
08-13-2009, 01:56 PM
Would it be possible to give points based on time spent in chat (flashchat), without having to manually assign custom points to active chat users? Also does days online count every day or only the ones they logged in on?

Phalynx
08-13-2009, 01:59 PM
Does Flashchat store the online time in a database?

Days online is just counting the days since registered, because vBulletin does not store the information about when a user is online.

Matt Lathrop
08-13-2009, 02:06 PM
Not time online but it has sent messages and connections (like logins). Which would both work fine.

I just looked and it does not store either of the values forever... it deletes them after a day or so. Also to open chat you have to click on a forum link, so I guess if you could count "viewing" that forum more then other forums that would work.

Phalynx
08-13-2009, 02:23 PM
No, forum redirects statistics are not stored into the database.

Matt Lathrop
08-13-2009, 02:31 PM
Ok after further investigation, both messages and connections are stored but messages also include a lot of hidden messages and things like that, connections are pretty clean and only kept while the user is online. So would it be possible to award x points for every time your user id comes up in the connection log (in the mysql database)? Also in this table it stores the time that the connection was made and the time it was last updated (every time you send a message or interact with chat). SO I guess in a way it does store online time...

Phalynx
08-13-2009, 02:33 PM
If the table is readable via vBulletin, it should be no problem to read this. You can use the CDP to get the data and store it as a point provider.

Matt Lathrop
08-13-2009, 02:40 PM
Not to sound totally noobish, but CDP?

Phalynx
08-13-2009, 02:46 PM
Custom Data Provider, the plugin interface of vBExperience. All plugins are written using this. Take a look at the samples ZIP\extras\Addons and also into the documentation ZIP\extras\Custom Data Provider\readme_custom_data_provider.txt

SEW810
08-13-2009, 02:47 PM
Ok Phalynx, you have an MP

Thats your account ;)

Thnx

Matt Lathrop
08-13-2009, 02:49 PM
Thanks. I will take a look.

Matt Lathrop
08-13-2009, 03:09 PM
Well if I wasn't so brain dead on coding ect. then your instructions would have been very clear... I guess my question would me what all do I ahve to change? flashchat stores the info in a table called flashchat_connections.

Phalynx
08-13-2009, 03:30 PM
Currently I don't have the time to code this, sorry.

veenuisthebest
08-13-2009, 03:35 PM
Awesome work Phalynx! This is undoubtedly ONE MOST superbly built, documented and supported mod. Updated to 3.8.4 and it works great.

I have a few suggestions please.

1. In xperience.php?go=gap, I have 12 fields showing as 0 as I am not using those mods. Rather than just disabling the text box, why not DON'T SHOW that field at all. It will reduce the clutter on the page. In other words, those 12 rows should not display when You Have = 0.

2. When viewing OTHER PERSON's profile, the Give Away Points should link to xperience.php?go=gap&username=bobby , just like we have from postbit.

Thanks

Phalynx
08-13-2009, 03:51 PM
Awesome work Phalynx! This is undoubtedly ONE MOST superbly built, documented and supported mod. Updated to 3.8.4 and it works great.

I have a few suggestions please.

1. In xperience.php?go=gap, I have 12 fields showing as 0 as I am not using those mods. Rather than just disabling the text box, why not DON'T SHOW that field at all. It will reduce the clutter on the page. In other words, those 12 rows should not display when You Have = 0.
This has been already asked and is on my Todo list

2. When viewing OTHER PERSON's profile, the Give Away Points should link to xperience.php?go=gap&username=bobby , just like we have from postbit.

Thanks
Nice idea, yes. Will implement this.

SEW810
08-13-2009, 04:09 PM
I don't know why xperience_admin.php showes blank page :'(
Even form me, I can't see anything :'(

Well, thanx Phalynx,I'll check it later. Thanx a lot for your time, please if I got some troubles please please could you help me again?.
Thnx

gamerfu
08-13-2009, 04:51 PM
I don't know why xperience_admin.php showes blank page :'(
Even form me, I can't see anything :'(

Well, thanx Phalynx,I'll check it later. Thanx a lot for your time, please if I got some troubles please please could you help me again?.
ThnxThere was a fix to this...

I think you need PHP 5.2.9 and something else... sorry, the second one escapes me atm.

Phalynx, could you please add the link (solution) to the non-displaying xperience_admin.php in your modification description, please?

Trek
08-13-2009, 04:51 PM
This is working good, but one thing I'd like to see is on the awards a minimum requirements field.

For instance, the "Frequent Poster" award is going to people that just sign up and make a single post. This is normal on my forums as it's a gaming guild and people sign up and then submit their application. So their days as a member and post count are considered high.

I'd like it make it so members are only counted if they have been members for 2 weeks or more. Basically, making this a variable.

ConfusedCartman
08-13-2009, 06:23 PM
I'm not sure if this bug has been reported, but I've been getting messages from my members saying they can give away more XP than they have if they click the "Give Away" button twice before the page finishes loading. Is this something you're aware of? Anyway, it put one of my members 200xp negative, which shouldn't happen.

Phalynx
08-13-2009, 07:10 PM
I don't know why xperience_admin.php showes blank page :'(
Even form me, I can't see anything :'(

Well, thanx Phalynx,I'll check it later. Thanx a lot for your time, please if I got some troubles please please could you help me again?.
Thnx
As long as you don't fix it I cannot help you. I didn't have had any access to that part.

This is working good, but one thing I'd like to see is on the awards a minimum requirements field.

For instance, the "Frequent Poster" award is going to people that just sign up and make a single post. This is normal on my forums as it's a gaming guild and people sign up and then submit their application. So their days as a member and post count are considered high.

I'd like it make it so members are only counted if they have been members for 2 weeks or more. Basically, making this a variable.
Ehm, this is already part of the finale 3.8.4 - that award goes only to people who are at least 7 days online. Please upgrade to the final GOLD version.

I'm not sure if this bug has been reported, but I've been getting messages from my members saying they can give away more XP than they have if they click the "Give Away" button twice before the page finishes loading. Is this something you're aware of? Anyway, it put one of my members 200xp negative, which shouldn't happen.

This is very strange, will take a deeper look.

Matt Lathrop
08-13-2009, 09:00 PM
$attq = $vbulletin->db->query_read("SELECT
SUM(counter) as sum_att_views
FROM " . TABLE_PREFIX . "flashchat_connections
WHERE userid=".$user['userid']);

if ($vbulletin->db->num_rows($attq) > 0)
{
$att = $vbulletin->db->fetch_array($attq);

$xperience['count_misc_cdp'] = $att['sum_att_views'] * $vbulletin->options['xperience_points_cdp'];
$xperience['count_misc'] += $xperience['count_misc_cdp'];
$additionalsql .= "points_misc_cdp=".$xperience['count_misc_cdp'].","

Is this the main bulk of code to edit?

stardotstar
08-13-2009, 09:19 PM
Originally Posted by stardotstar View Post

Hi, I'm uncertain if this is fixed earlier in the pages, but please point me there if so,,,

I have only a few of the options showing as configuration panels when clicked on in the side bar of the acp.
ie the settings labeled:
Settings:
do not display - I get a blank right side main panel
but the others work fine....
I recall something like this with another mod but I cannot remember if it got fixed or what caused it...
Ring any bells?

BTW thank you for such a huge update - massive and most awesome mod!

That is a known issue, but not with vBExperience, it's PHP:
- Settings are showing only a blank page, read here: http://www.vbulletin.com/forum/proje...6979#note74140

I knew it was something related - thank you for setting me off in the right direction - it was the photoplog I last saw this with.

Great mod, great support, thank you very much.
Will

ConfusedCartman
08-14-2009, 12:54 AM
Thanks for responding to my last comment. It seems I'm having one more problem - when calculating average PPD, it calculates it as 0PPD. For some reason, it's unable to read the database that stores the post information - e.g. it's calculating most members with 0% activity. Before I upgraded to this version, I didn't have this problem. I'm using vBulletin 3.7x if that makes a difference.

mikeo9043
08-14-2009, 02:26 AM
I installed the latest version on my site, but the when I go to the xperience page, it doesn't show what % each member is at like so:
https://vborg.vbsupport.ru/external/2009/08/67.jpg

Trek
08-14-2009, 03:25 AM
Ehm, this is already part of the finale 3.8.4 - that award goes only to people who are at least 7 days online. Please upgrade to the final GOLD version.

I'm already running 3.8.4... I'll overwrite the files, but... I dunno.

Trek
08-14-2009, 03:31 AM
Just overwrote the files and reran the award recount, same thing. Hope this information helps.

Awards page: http://www.darkhandofvalor.com/xperience.php?go=awards

Member: http://www.darkhandofvalor.com/member.php?u=538

Join Date08-07-2009
Total Posts: 1
Posts Per Day: 0.16
Last Activity: 08-07-2009 03:35 PM
Join Date: 08-07-2009Frequent Poster issued for ValunarGalway (http://www.darkhandofvalor.com/member.php?u=538) on 08-13-2009 10:47 AM.
User likes to post
Fields used: Average Posts per Day

Trek
08-14-2009, 03:45 AM
Ok, I ran the recount of experience points and it seemed to of fixed this issue. The other recount that I thought would do it, didn't. Thanks.

SEW810
08-14-2009, 03:56 AM
As long as you don't fix it I cannot help you. I didn't have had any access to that part.


Sorry dude, I just talked to mauro1947 (web master) about your temporary account, I forget to talk to billnick, the guy that was on line with you and me. He changed your permissions. Really sorry, I feel ashamed :o , he didn't know anything about these movements.

Your mod works just perfect!!! THANK YOU,THANK YOU,THANK YOU,THANK YOU,THANK YOU
THANK YOU,GRACIAS,GRAZIE,OBRIGADO,СПАСИБО,DANKE,MERCI, THANK YOU FOR EVERYTHING !!!!!!!!!!.

Installed, updated, nominated..... your great man ;)
Did I forget to say thank you? lol :D

Phalynx
08-14-2009, 06:19 AM
Thanks for responding to my last comment. It seems I'm having one more problem - when calculating average PPD, it calculates it as 0PPD. For some reason, it's unable to read the database that stores the post information - e.g. it's calculating most members with 0% activity. Before I upgraded to this version, I didn't have this problem. I'm using vBulletin 3.7x if that makes a difference.
I installed the latest version on my site, but the when I go to the xperience page, it doesn't show what % each member is at like so:
https://vborg.vbsupport.ru/external/2009/08/67.jpg
Confirmed bug, I will release a patch in few minutes.

Ok, I ran the recount of experience points and it seemed to of fixed this issue. The other recount that I thought would do it, didn't. Thanks.
Nice to hear.

Sorry dude, I just talked to mauro1947 (web master) about your temporary account, I forget to talk to billnick, the guy that was on line with you and me. He changed your permissions. Really sorry, I feel ashamed :o , he didn't know anything about these movements.

Your mod works just perfect!!! THANK YOU,THANK YOU,THANK YOU,THANK YOU,THANK YOU
THANK YOU,GRACIAS,GRAZIE,OBRIGADO,СПАСИБО,DANKE,MERCI, THANK YOU FOR EVERYTHING !!!!!!!!!!.

Installed, updated, nominated..... your great man ;)
Did I forget to say thank you? lol :D

Thanks for helping in this. I will release this as a bugfix to 3.8.4

Phalynx
08-14-2009, 08:15 AM
This bugfix resolves problems with the activity. There was a bug in reading out average postcount.

Please overwrite the file class_xperience.php

3.8.4.1, 14th August 2009
- Fixed issues with low/high activity
- Improved speed by recounting activity
- Included french translation by mitch84 - thanks!

veenuisthebest
08-14-2009, 08:52 AM
Another bug:-

One is able to Give away points to himself.

I had 3605 points, I gave 20 points to myself and it increased. One should not be able to give points to himself, the system can be clearly abused this way.

Also, it would be nice to not to show Give Away Points in postbit dropdown FROM OUR OWN USERNAME.

Phalynx
08-14-2009, 09:29 AM
Fixed in next version.

Just a Note:
I'm the next few days on vacation and therefore cannot provide any support. I will return on Monday, 17th August.

Limode
08-14-2009, 10:10 AM
@Phalynx ,
Need 10 Hours Recount when upgrade for 136,000 member =.= .

Matt Lathrop
08-14-2009, 02:17 PM
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?

mikeo9043
08-14-2009, 02:57 PM
This bugfix resolves problems with the activity. There was a bug in reading out average postcount.

Please overwrite the file class_xperience.php


3.8.4.1, 14th August 2009
- Fixed issues with low/high activity
- Improved speed by recounting activity
- Included french translation by mitch84 - thanks!

I updated that file, but no % still shows up on the xperience page.

gamerfu
08-14-2009, 03:48 PM
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:

SEW810
08-14-2009, 04:11 PM
Fixed in next version.

Just a Note:
I'm the next few days on vacation and therefore cannot provide any support. I will return on Monday, 17th August.

Enjoy your vacations. !!!!!!. See you soon.
@Phalynx ,
Need 10 Hours Recount when upgrade for 136,000 member =.= .

Oh man!!!. Why don't you set
Xperience->General setts->Only active users?... YES

My board has 76000 users and it takes to calculate activity 10~15 mins.
You have double than me, it should takes 30 mins max !!

ConfusedCartman
08-14-2009, 04:26 PM
This bugfix resolves problems with the activity. There was a bug in reading out average postcount.

Please overwrite the file class_xperience.php


3.8.4.1, 14th August 2009
- Fixed issues with low/high activity
- Improved speed by recounting activity
- Included french translation by mitch84 - thanks!

Thank you! It fixed the problem perfectly. The fantastic support is another reason why this is my favorite vBulletin addon.

Joshkrz
08-14-2009, 05:39 PM
Just a question...

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

Reputation Upgrade
+1 REP Power
2000 XP

The Rep Upgrade gives your account an extra Rep power to inflict more damage (or reward) on other users.

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

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.

ConfusedCartman
08-14-2009, 06:24 PM
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.

Itchy Nips
08-14-2009, 07:55 PM
i just realized that the awards images are not appearing for users that have the "user name images" modification.

milsirhc
08-15-2009, 11:17 AM
I'm having a major issue:

I've uninstall this product, however now I am getting a SQL error:

Database error in vBulletin 3.8.4:

Invalid SQL:
UPDATE vb_user SET xperience_done=0 WHERE userid='1';

MySQL Error : Unknown column 'xperience_done' in 'field list'

and I am unable to login to my admin CP nor login nor post.

I need help desperately!!

vinss
08-15-2009, 11:22 AM
thanks :)

Harley D
08-15-2009, 03:38 PM
I'm having a major issue:

I've uninstall this product, however now I am getting a SQL error:

Database error in vBulletin 3.8.4:

Invalid SQL:
UPDATE vb_user SET xperience_done=0 WHERE userid='1';

MySQL Error : Unknown column 'xperience_done' in 'field list'

and I am unable to login to my admin CP nor login nor post.

I need help desperately!!

Add this to your CONFIG.PHP define("DISABLE_HOOKS", true);
That should get you back into your ADMINCP.
From there disable anything related to xperience. Then remove the line to reactivate your plug-ins.

You probably un-installed the mod incorrectly or incompletely. A Reinstall may be necessary. Also make sure you have un-installed ALL related mods as well.

Hope this helps.

milsirhc
08-15-2009, 10:36 PM
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...

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:


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:
$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:
$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:
$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (56,1,2)");
$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (100,2,2)");
$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (200,3,2)");
$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (300,4,2)");
....
$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
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
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
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...


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.

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


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.

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

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
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.

Add this to your CONFIG.PHP That should get you back into your ADMINCP.
Thanks for this help to the user.

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.


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...


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
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.

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
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/showthread.php?t=101554&highlight=arcade
.
.
.
.
- Post Thank You / Use of Post Thank You (via CDP Addon)
https://vborg.vbsupport.ru/showthread.php?t=165673&highlight=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 !!!

Phalynx
08-17-2009, 09:05 AM
SUGGESTION 1
Add the links to mods/hack that are being supported by vBeXperience.
Sounds nice, but this would mean to keep all links updated, also during updates. Too much work for me.




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 !!!

Some users are naming that product like they want. It has been called earlier "xPerience", but I named it with a more vBulletin touch "vBExperience".

Dutch_Boy
08-17-2009, 09:34 AM
In the readme file there is a line saying that i have to turn off the vbulletin promotion mod. Where can i turn it off? I cant find it.

Dont know if thats the problem why my promotion stuff didnt work.

Phalynx
08-17-2009, 09:44 AM
In the readme file there is a line saying that i have to turn off the vbulletin promotion mod. Where can i turn it off? I cant find it.

Dont know if thats the problem why my promotion stuff didnt work.

No, it says:
This will replace the internal vB promotions. If you enable this system, make sure that you delete any promotions that could collide with Experience. Also, take care that the promotions are overwritten the primary group of every user.

RaZoRShawN
08-17-2009, 10:50 AM
Sounds nice, but this would mean to keep all links updated, also during updates. Too much work for me.

Nah... all the hacks has one supporting site (main one)... once You give direction for the link everybody will be able to track the supported hack by them-self, no need to update.
The problem is that some of the hacks are difficult to target, once targeted there will be no problem.

There is lots of people who can support You in doing things. (updating readme.txt etc.)

-----------------------------

If You really think that links might be a problem, my idea is that we can add coder name at least
ex.:
- ibProArcade Highscorer Points (via CDP Addon) Origin Hack by MrZeropage --- will be enough to target the proper hack.


Some users are naming that product like they want. It has been called earlier "xPerience", but I named it with a more vBulletin touch "vBExperience".

I have suggestion for You nick also

Ph4LynX

since You R c0d3R and h4ckZ0R (joke)
:p

No, it says:
This will replace the internal vB promotions. If you enable this system, make sure that you delete any promotions that could collide with Experience. Also, take care that the promotions are overwritten the primary group of every user.

Meaning:

-Create new User Groups
-Add new ranks to the proper groups (original vb promotions are based on post count, so add new ranks with Minimum Posts 0 --- will not create problems with the vBeXperience promotion system.
-update(edit) ex.: vbexperience_level_2_average.xml with the proper usergroupid values (from the new groups that you have created)

$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (50,1,9)");
-import new(updated by You) vbexperience_level_2_average.xml

DONE

Enabling internal promotion system of vBeXperience will promote users to usergroups based on eXperience level (values) from now.

See Also
https://vborg.vbsupport.ru/showpost.php?p=1865702&postcount=1013

for details of editing and rules of doing such.

Phalynx
08-17-2009, 11:08 AM
Yes, naming the coder would be good.

There is lots of people who can support You in doing things. (updating readme.txt etc.)
Maybe, but why nobody is helping me then? I asked already multiple times for such a help, since the first version of vBExperience in 2006. Nobody (zero, null) said he would help me. So I doubt it also this time.

RaZoRShawN
08-17-2009, 11:17 AM
Yes, naming the coder would be good.

ISSUE1
OK. Help me to identify all for first time I will update the readme.txt for You.


Maybe, but why nobody is helping me then? I asked already multiple times for such a help, since the first version of vBExperience in 2006. Nobody (zero, null) said he would help me. So I doubt it also this time.

ISSUE2
Do not /dev nuLL me!

PM me with the infos about ISSUE1, i will extract the support informations and will do the update the readme.txt and others if necessary and will send you back to be implemented.
I will use as a basis the ones from vBExperience_3841.zip

Dutch_Boy
08-17-2009, 12:27 PM
Yes, naming the coder would be good.


Maybe, but why nobody is helping me then? I asked already multiple times for such a help, since the first version of vBExperience in 2006. Nobody (zero, null) said he would help me. So I doubt it also this time.

Why dont you put it in your main post. In red so everyone see it :)

And im still busy translating to dutch. Damn allot of text to translate :P Gonna translate the readme to.

EidolonAH
08-17-2009, 01:48 PM
Greetings Marius, I was wondering if you are still going to add the ability to have shop items link to actual downloads. If memory serves you said it might be released in 3.8.4 version, but I see it didn't make it in that time around. I would like very much to be able to use your mod on our Skin site but we really need linked items before I can install this, is there a real estimation of when you might include the items being able to link to download files?

SEW810
08-17-2009, 02:11 PM
Welcome back Phalynx

Phalynx
08-17-2009, 05:41 PM
Why dont you put it in your main post. In red so everyone see it :)

And im still busy translating to dutch. Damn allot of text to translate :P Gonna translate the readme to.
Waiting for your Translation :) In normal case the language file is enough.

Greetings Marius, I was wondering if you are still going to add the ability to have shop items link to actual downloads. If memory serves you said it might be released in 3.8.4 version, but I see it didn't make it in that time around. I would like very much to be able to use your mod on our Skin site but we really need linked items before I can install this, is there a real estimation of when you might include the items being able to link to download files?
Yes, it is still on my todo list. For 3.8.5 there will be reworked User promotion system, additionally achievement (which are almost finished) and also the linkable items. As to the linked items we need to talk seperatly via PM.

Welcome back Phalynx

Thanks :)

veenuisthebest
08-17-2009, 06:26 PM
Hello Phalynx, I wanted to know why did you decided to put xperience folder in root.

Because its containing just images, wouldn't it had been better to put it like images/xperience/ ?

Thanks

Phalynx
08-17-2009, 08:14 PM
Hello Phalynx, I wanted to know why did you decided to put xperience folder in root.

Because its containing just images, wouldn't it had been better to put it like images/xperience/ ?

Thanks

It was already there and confused many user. Read a little in the past...

Also, this folder will contain in the future plugins/addons and other stuff.

EidolonAH
08-17-2009, 10:23 PM
As to the linked items we need to talk seperatly via PM.

PM sent Marius.

Tarfandestan
08-18-2009, 01:36 AM
Tanx Phalynx. (https://vborg.vbsupport.ru/member.php?u=49918)
I updated to 3.8.4.1 from 3.7.17.
but when I enable "Use the activities" in Settings, in members profile pages, I get this error:
Fatal error: Call to undefined function GetActivityAll() in /home/XXX/public_html/forum/member.php(463) : eval()'d code on line 206

I uploded files completely.
plz help me, tnx.

mikeo9043
08-18-2009, 02:24 AM
Hmm..I did everything you said still doesn't seem to be showing up the % on the xperience page but it's fine, no biggie, it still shows it on the post bit, so that is fine. I'll wait till the next update. Thanks tho!

SEW810
08-18-2009, 05:13 PM
Tanx Phalynx. (https://vborg.vbsupport.ru/member.php?u=49918)
I updated to 3.8.4.1 from 3.7.17.
but when I enable "Use the activities" in Settings, in members profile pages, I get this error:
Fatal error: Call to undefined function GetActivityAll() in /home/XXX/public_html/forum/member.php(463) : eval()'d code on line 206

I uploded files completely.
plz help me, tnx.

Ouch !, same here.
Any way, I don't use activities.

Dutch_Boy
08-18-2009, 05:42 PM
Meaning:

-Create new User Groups
-Add new ranks to the proper groups (original vb promotions are based on post count, so add new ranks with Minimum Posts 0 --- will not create problems with the vBeXperience promotion system.
-update(edit) ex.: vbexperience_level_2_average.xml with the proper usergroupid values (from the new groups that you have created)

$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (50,1,9)");
-import new(updated by You) vbexperience_level_2_average.xml

DONE

Enabling internal promotion system of vBeXperience will promote users to usergroups based on eXperience level (values) from now.

See Also
https://vborg.vbsupport.ru/showpost.php?p=1865702&postcount=1013

for details of editing and rules of doing such.

I did this but no one gets a promotion.

Usergroup: WannaBe Member* (test usergroup. Same rights as registerd member)
Usergroup id: 62
Use the promotion system? Yes
Promotions: check picture.

$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (50,1,62)");

SEW810
08-18-2009, 06:39 PM
Yes, naming the coder would be good.
Maybe, but why nobody is helping me then? I asked already multiple times for such a help, since the first version of vBExperience in 2006. Nobody (zero, null) said he would help me. So I doubt it also this time.

I never saw those posts dude.
Leave Spanish translation on my hands.

Translating..... 25% Done.


Atenci?n Hispano hablantes
Pronto estar? disponible para Espa?ol (Mx) y Espa?ol (Arg)

Regards

scrap19
08-18-2009, 11:53 PM
thanks for the hack...is there any fuction as to when an award is given it e-mails member directly? or is this already an option?

thanks

ConfusedCartman
08-19-2009, 12:47 AM
Thanks for the earlier clarification Phalynx. :)

I have a small feature request, if possible: what do you think of a "discard" option for items, both purchased and received as a gift? That way, people can get rid of the things they buy even if the "Sell item back to shop" option is disabled. This would also provide a way for users to discard items that were gifted to them. Currently, they are stuck with the items they've been given, which can be a nuisance.

On a slightly related note, what do you think about allowing us to enable the "Sell item back to shop" option per shop item? Maybe have a checkbox next to each item listing in the "Edit Items" view which would enable or disable the "Sell item back to shop" option per each item. Along with this should be a checkbox at the very top of the column which would enable or disable all items in a category, making it easy to switch on and off entire categories.

TubeOfMommment
08-19-2009, 05:43 AM
hi . i hawe problem with mod... my level is not rising . always 99% and need to another lwl 0 points .. pls help

yeshoward
08-19-2009, 08:09 AM
Tanx Phalynx. (https://vborg.vbsupport.ru/member.php?u=49918)
I updated to 3.8.4.1 from 3.7.17.
but when I enable "Use the activities" in Settings, in members profile pages, I get this error:
Fatal error: Call to undefined function GetActivityAll() in /home/XXX/public_html/forum/member.php(463) : eval()'d code on line 206

I uploded files completely.
plz help me, tnx.

yes, we have the SAME issues

VBexp:3.8.41
VB: 3.8.0

When we activate "activity" it shows errors when click member's profile

yeshoward
08-19-2009, 08:24 AM
feature request

please put a "sarch" function on

http://abc.com/forum/xperience.php

We have 100,000 members, it is hard to click "next page" all the time to look up someone's level

thanks

Phalynx
08-19-2009, 10:19 AM
Tanx Phalynx. (https://vborg.vbsupport.ru/member.php?u=49918)
I updated to 3.8.4.1 from 3.7.17.
but when I enable "Use the activities" in Settings, in members profile pages, I get this error:
Fatal error: Call to undefined function GetActivityAll() in /home/XXX/public_html/forum/member.php(463) : eval()'d code on line 206

I uploded files completely.
plz help me, tnx.
Fixed in 3.8.4.2, which will be released in few minutes.

Hmm..I did everything you said still doesn't seem to be showing up the % on the xperience page but it's fine, no biggie, it still shows it on the post bit, so that is fine. I'll wait till the next update. Thanks tho!
Very strange. Cannot reproduce it here.

I did this but no one gets a promotion.

Usergroup: WannaBe Member* (test usergroup. Same rights as registerd member)
Usergroup id: 62
Use the promotion system? Yes
Promotions: check picture.

$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "xperience_level (xperience_points, xperience_level, usergroupid) VALUES (50,1,62)");
I see a promotion screen from the vBulletin Promotions. This will not work with it.

I never saw those posts dude.
Leave Spanish translation on my hands.

Translating..... 25% Done.


Atenci?n Hispano hablantes
Pronto estar? disponible para Espa?ol (Mx) y Espa?ol (Arg)

Regards
Great, looking forward to it.

thanks for the hack...is there any fuction as to when an award is given it e-mails member directly? or is this already an option?

thanks
It's already on my todo list.

Phalynx
08-19-2009, 10:23 AM
Thanks for the earlier clarification Phalynx. :)

I have a small feature request, if possible: what do you think of a "discard" option for items, both purchased and received as a gift? That way, people can get rid of the things they buy even if the "Sell item back to shop" option is disabled. This would also provide a way for users to discard items that were gifted to them. Currently, they are stuck with the items they've been given, which can be a nuisance.

On a slightly related note, what do you think about allowing us to enable the "Sell item back to shop" option per shop item? Maybe have a checkbox next to each item listing in the "Edit Items" view which would enable or disable the "Sell item back to shop" option per each item. Along with this should be a checkbox at the very top of the column which would enable or disable all items in a category, making it easy to switch on and off entire categories.
The shop gift's will be reworked in one of the next bigger version, I will also include some new options for this.


hi . i hawe problem with mod... my level is not rising . always 99% and need to another lwl 0 points .. pls help
Did you imported a level xml?

feature request

please put a "sarch" function on

http://abc.com/forum/xperience.php

We have 100,000 members, it is hard to click "next page" all the time to look up someone's level

thanks

It is already there, take a look at the right side.

Phalynx
08-19-2009, 10:26 AM
There is an bugfix release of vBExperience available:

3.8.4.2, 19th August 2009
- Fixed GetActivityAll() on Profiles

3.8.4.1, 14th August 2009
- Fixed issues with low/high activity
- Improved speed by recounting activity
- Included french translation by mitch84 - thanks!

yeshoward
08-19-2009, 11:36 AM
thanks for fix of 3.8.4.2, do we need to upload ALL files or some files only? if so, which are them? thanks

Phalynx
08-19-2009, 11:40 AM
If you upgraded from 3.8.4.1, you need only to re-import the product xml. Upgrade from 3.8.4 needs also the class_xperience.php
If you want to show the version number, upload also xperience.php

yeshoward, you will need to click "Mark as Installed", thanks.

avsunforum
08-19-2009, 12:15 PM
ooowww thanks guys very update :)

Limode
08-19-2009, 01:44 PM
There is an bugfix release of vBExperience available:

3.8.4.2, 19th August 2009
- Fixed GetActivityAll() on Profiles

3.8.4.1, 14th August 2009
- Fixed issues with low/high activity
- Improved speed by recounting activity
- Included french translation by mitch84 - thanks!

Thanks for updated

animcentral
08-19-2009, 03:46 PM
hi, is there anyway to change the position of awards?
i wanna have awards like this modification:
Yet Another Awards System (https://vborg.vbsupport.ru/showthread.php?t=196244)

Dutch_Boy
08-19-2009, 06:34 PM
It looks like the promotion system works BUT is it normale not to see a promotion in experience page? I only see demoted. (check pic)

Kind regards,

Dutch_Boy.

SEW810
08-20-2009, 12:22 AM
Great, looking forward to it.
.

Translated ....99.9% done.
There are some words that I couldon't translate (Menu options at Admin Experience)

Oh by the way:
GetActivityAll() issue has gone!!!!. 3.8.4.2 works pretty good.

Another old issue:

Max awards a user can have doesn't work.
If I set 1, a user still can have 2 or 3 awards.

Phalynx
08-20-2009, 08:11 AM
hi, is there anyway to change the position of awards?
i wanna have awards like this modification:
Yet Another Awards System (https://vborg.vbsupport.ru/showthread.php?t=196244)
Will be included in 3.8.5


It looks like the promotion system works BUT is it normale not to see a promotion in experience page? I only see demoted. (check pic)

Kind regards,

Dutch_Boy.
Please post your level.xml

Translated ....99.9% done.
There are some words that I couldon't translate (Menu options at Admin Experience)

Oh by the way:
GetActivityAll() issue has gone!!!!. 3.8.4.2 works pretty good.
Great, thanks for sharing. Will include this.

Another old issue:

Max awards a user can have doesn't work.
If I set 1, a user still can have 2 or 3 awards.
Cannot confirm that. Did you re-generated awards after your set this?

Nadeemjp
08-20-2009, 09:13 AM
hey phalynx
soon there wuld be vb4.0 out.
are you currently in the process of upgrading this to be compatible with vb4.0?
cause i intend to install it the moment its GOLD is out and i love this hack and would definitely want it with me

Phalynx
08-20-2009, 09:31 AM
Please define "soon". If you mean with soon "in around 6 months", yes.

vB4 is currently available to _few_ testers as an alpha version. As soon as it is available as a public beta I will take a look.

Nadeemjp
08-20-2009, 10:45 AM
oh boy, 6 months is too long:)
but i guess this is not the only mod or work you are doing so i guess we will hae to wait and see.
but please make it available as soon as possible, cause unless you upgrade this modification, i wont be able to install vb4.

Phalynx
08-20-2009, 11:13 AM
I cannot upgrade vBExperience if there is no public version of vB4. Also, I don't know the exact timeline of vB4 as there is no timeline/roadmap.
With the six month I mean vBulletin 4, not vBExperience. But it can be also 9 months or just 4 months. Nobody knows.

exportforce
08-20-2009, 06:10 PM
Phalynx,

can you please add an achievement function ?
That would be so awesome, I think that it shouldn't be that hard, or am I wrong ?
I mean stuff like: Posts, Donations, Days/years registered, threads started, rep given, rep gotten, thanks (from thank-you-addons) and stuff should be easy to use for that.

Hope it'll be doable :)

Phalynx
08-20-2009, 06:23 PM
Achievements are almost finished and will be part of 3.8.5
It has been wished already multiple times...

You can use any field for this, similar to the awards. Combination of fields also possible.

Nadeemjp
08-20-2009, 11:57 PM
hey phalynx, i have a certain problem i dont know what is causing it.

i consulted the vbulletin.com staff but they say this is because of an activity add-on.


a few weeks ago i introduced system of promotions. depending upon the number of posts, users are moved up to a superior user group.

the problem is that all those users who are inactive are moved into "COPA user awaiting moderation" group. i tried many times to move them back but everytime they are moved back again to this group.

furthermore, when i check the usergroup segment in the admincp, it shows no members in the above mentioned user group, but when i check individual users, the inactives are shown in that group.

then i have a usergroup who can access a cerain forum on my board. some of the members of this group (unless i give them custom permission) cannot see or access this forum.

I was wondering what could be the reason.

can you help me in this problem?

SEW810
08-21-2009, 04:54 AM
I don't know how your experience promotions are configured but try this:

Admin CP->Experience->General Settings:

Go to: Ignore Usergroups on promotions?
and sett COPA ID over there.

However,check on your promotions dude
Regards.

Phalynx
08-21-2009, 06:22 AM
Yes, check your promotions in the level xml. It's seems it has a wrong usergroup id in it.

gamerfu
08-21-2009, 06:53 AM
Speaking of promotions, would it be possible to have a promotions admincp page instead of editing a xml file? :erm:

Phalynx
08-21-2009, 08:05 AM
Yes, in 3.8.5 - this has been wished since months.

Nadeemjp
08-21-2009, 12:23 PM
I don't know how your experience promotions are configured but try this:

Admin CP->Experience->General Settings:

Go to: Ignore Usergroups on promotions?
and sett COPA ID over there.

However,check on your promotions dude
Regards.

Yes, check your promotions in the level xml. It's seems it has a wrong usergroup id in it.

guys thanx for the advice.
i created the promotions exactly as it was adviced in the vbulletin manual:confused:
so it seems pretty much in accordance with the manual
i have not enabled experience promotions.
when u say level xml, what does that mean?:confused:

Nadeemjp
08-21-2009, 12:31 PM
these are the promotions that i have set, is there anything wrong with them?:confused:
http://www.familybunker.com/1.png

Phalynx
08-21-2009, 12:39 PM
If you don't enabled xperience promotions than this part is not doing anything. Maybe your vBulletin promotions are not correct.

gamerfu
08-21-2009, 10:09 PM
Would it be possible to setup a "Mystery Gift"?

If you buy this item, it is a mystery of what items you (shop owner) have set up for the mystery gift.

Example, 500 pts. for Mystery Gift

Admin sets 3 items with % chance of recieving certain item:
(lazer gun 60% chance, hamburger 35% chance, barbie doll 5% chance)

SEW810
08-21-2009, 10:22 PM
Would it be possible to setup a "Mystery Gift"?

If you buy this item, it is a mystery of what items you (shop owner) have set up for the mystery gift.

Example, 500 pts. for Mystery Gift

Admin sets 3 items with % chance of recieving certain item:
(lazer gun 60% chance, hamburger 35% chance, barbie doll 5% chance)

lol, sounds funny hehe

gamerfu
08-22-2009, 01:58 AM
It occured to me that people love baseball packs, role-playing card packs, models, or even Pokemon. Collectors search for cards that they have to buy multiple packs to get their favorite card or to complete a set. I thought "WOW!", this would encoruage activity and gift giving of giving away their "Mystery Gifts" to other members or exchanging of items.

lol, sounds funny hehe

It would be fun! :cool:

lovevn
08-22-2009, 05:21 AM
Hello
I want to use this with the shop addon to :
-Let members collect points
-They can use point to buy some "access right" to my "member area" to get some support.

My question is does it come with a "member area(support tichket)" or can I use it with some member area script?

I have installed and works very well!
By the ways could you make a product for vba-dynamic and vba_link directory?

I have photopost pro and vbulletin on the seperate database. How can I fix the plug in for photopost?
Thanks

mcloud
08-22-2009, 03:54 PM
Hi!

how do you earn custom points? I tried adding them manually, via admincp -> Experience -> Manage Custom Points, but it does not display.

103519

mitch84
08-22-2009, 06:20 PM
Hello
I want to use this with the shop addon to :
-Let members collect points
-They can use point to buy some "access right" to my "member area" to get some support.

... Hi, or acces a specific forum, it's possible? thx

Marcus_Fenix
08-22-2009, 07:29 PM
I just unstalled it tonight because it dindt do what i wanted. But now i cannot login into my forums anymore i get:

UPDATE user SET xperience_done=0 WHERE userid='1';

MySQL Error : Unknown column 'xperience_done' in 'field list'
Error Number : 1054

what todo ?

edit: i unstalled it like in the readme

suiz
08-23-2009, 02:45 AM
1 - pay to download attachments (certain sections only) rar/zips (not jpegs etc)
2 - Pay uploader a set fee for uploading attachments (certain sections only) rar/zips
3 - no credit no download (must be secure so no one gets stuff for free )
4 - Stats page addon will be discussed when job taken.

As simple as that really - Need it to work only on attachments such as rars/zips - not jpgs

Contact me with timeframe on how long to code etc and with price.I pay fee on completion and can supply refs of coders ive used in the past.
Edit/Delete Message

mitch84
08-23-2009, 09:19 AM
hi, In local I use wampserver and it seems don't work with php 5.3.0 , I can install him but when i click in navbar on experience I've got a blank page, with php 5.2.0 all it's ok

mcloud
08-23-2009, 05:23 PM
I just unstalled it tonight because it dindt do what i wanted. But now i cannot login into my forums anymore i get:

UPDATE user SET xperience_done=0 WHERE userid='1';

MySQL Error : Unknown column 'xperience_done' in 'field list'
Error Number : 1054
what todo ?

edit: i unstalled it like in the readme
Upload all files to de server and try, if the problem continues, install again the hack and don't uninstalled it, Just disable the modification

smirkley
08-24-2009, 12:52 AM
I am looking, but cant find the answer,..

How do I delete or reset the activities listings.

I was experimenting with several things, and now the activities listing is littered with several different changes to member points,... that they didnt instigate by forum usage.

And I just want to reset it and start that log over from now.

edit to add ----

also, I think it would be esthetically better to add an additional line break after reputation in postbit display for icons purchased in stores, automatically.

I use vbexp in stock form, and I hate to edit the templates as it would have to be edited everytime a new version was brought out.

And of course,... thanks a ton for this awsome mod,...one of the best, and best supported.

Phalynx
08-24-2009, 08:09 AM
Would it be possible to setup a "Mystery Gift"?

If you buy this item, it is a mystery of what items you (shop owner) have set up for the mystery gift.

Example, 500 pts. for Mystery Gift

Admin sets 3 items with % chance of recieving certain item:
(lazer gun 60% chance, hamburger 35% chance, barbie doll 5% chance)
Sounds nice, but I doubt it will come in the next version.

Hello
I want to use this with the shop addon to :
-Let members collect points
-They can use point to buy some "access right" to my "member area" to get some support.

My question is does it come with a "member area(support tichket)" or can I use it with some member area script?

I have installed and works very well!
You could use promotions for this. No other way currently possible.

By the ways could you make a product for vba-dynamic and vba_link directory?
As these are paid modification and I don't have them I cannot create a CDP for it.

I have photopost pro and vbulletin on the seperate database. How can I fix the plug in for photopost?
Thanks
You cannot easily. You would need to implement a way to read the database without the help of the vBulletin API.

Hi!

how do you earn custom points? I tried adding them manually, via admincp -> Experience -> Manage Custom Points, but it does not display.

103519
Are they showing in AdminCP?
Earn Points are not showing your Custom Points.


Hi, or acces a specific forum, it's possible? thx
Via usergroups/promotions.


I just unstalled it tonight because it dindt do what i wanted. But now i cannot login into my forums anymore i get:

UPDATE user SET xperience_done=0 WHERE userid='1';

MySQL Error : Unknown column 'xperience_done' in 'field list'
Error Number : 1054


what todo ?

edit: i unstalled it like in the readme
Disable Plugins, login to AdminCP and remove the product. It seems it has not been automatically uninstalled.

Phalynx
08-24-2009, 08:13 AM
1 - pay to download attachments (certain sections only) rar/zips (not jpegs etc)
2 - Pay uploader a set fee for uploading attachments (certain sections only) rar/zips
3 - no credit no download (must be secure so no one gets stuff for free )
4 - Stats page addon will be discussed when job taken.

As simple as that really - Need it to work only on attachments such as rars/zips - not jpgs

Contact me with timeframe on how long to code etc and with price.I pay fee on completion and can supply refs of coders ive used in the past.
Edit/Delete Message
Please let us discuss this via PM.

hi, In local I use wampserver and it seems don't work with php 5.3.0 , I can install him but when i click in navbar on experience I've got a blank page, with php 5.2.0 all it's ok
Mitch, is the xperience page the only one which is not working?
Can someone else confirm this?


I am looking, but cant find the answer,..

How do I delete or reset the activities listings.

I was experimenting with several things, and now the activities listing is littered with several different changes to member points,... that they didnt instigate by forum usage.

And I just want to reset it and start that log over from now.
You will run queries to clear it (include your DB prefix!):
DELETE * FROM xperience_promotion_log
DELETE * FROM xperience_award_issues
DELETE * FROM xperience_stats_changes


Will add a log eraser for next version




edit to add ----


also, I think it would be esthetically better to add an additional line break after reputation in postbit display for icons purchased in stores, automatically.

I use vbexp in stock form, and I hate to edit the templates as it would have to be edited everytime a new version was brought out.


And of course,... thanks a ton for this awsome mod,...one of the best, and best supported.

You can edit a template, it will not be overwritten by an upgrade.

mcloud
08-24-2009, 03:30 PM
Are they showing in AdminCP?
Earn Points are not showing your Custom Points.Yes, they are showing in AdminCP

But, in the forum -> Experience -> Earn Points -> Points for Misc, Not

Phalynx
08-24-2009, 03:36 PM
That's right, Earn Points are not showing your Custom Points.

This is not a bug. Custom points are using a different mechanism for saving. Maybe in 3.8.5 I will write a plugin for it.

smirkley
08-24-2009, 04:26 PM
Just had an idea, not sure if it was ever said before,...

But I just finished setting up the store feature, and was noticing that you can turn on or off the ability to give away items to other members after purchase. I think it would be awsome if items individually could be set in store cp as giveawayable or not giveawayable.

That way certain store items could be bought, but not given away, while others could be. For example, if I let someone buy a profile icon using their reputation points only, this way only that person could own that icon but not give it away, while other store items bought just for fun, could be given away to any other member.

Maybe even have in item store management cp where individual items could be sold back to store, while others cant.

Like just checkboxes in the item setup.

Just thinking out loud.

mcloud
08-24-2009, 05:59 PM
That's right, Earn Points are not showing your Custom Points.

This is not a bug. Custom points are using a different mechanism for saving. Maybe in 3.8.5 I will write a plugin for it.
OK! thanks mate.
---

I am translating this mod into the Spanish language, because the previous versions have some errors or they are not completely translated.

In the next days I will send to you a PM.

Greetings

Phalynx
08-24-2009, 08:24 PM
Just had an idea, not sure if it was ever said before,...

But I just finished setting up the store feature, and was noticing that you can turn on or off the ability to give away items to other members after purchase. I think it would be awsome if items individually could be set in store cp as giveawayable or not giveawayable.

That way certain store items could be bought, but not given away, while others could be. For example, if I let someone buy a profile icon using their reputation points only, this way only that person could own that icon but not give it away, while other store items bought just for fun, could be given away to any other member.

Maybe even have in item store management cp where individual items could be sold back to store, while others cant.

Like just checkboxes in the item setup.

Just thinking out loud.
Yes, that was already wished few days ago and it is included in 3.8.5

OK! thanks mate.
---

I am translating this mod into the Spanish language, because the previous versions have some errors or they are not completely translated.

In the next days I will send to you a PM.

Greetings
Sounds great!

smirkley
08-24-2009, 10:37 PM
OK, there are just alot of pages to this thread lol.


Question,...are all activities by all members supposed to show up under everyones member profile page?

I noticed that today in another persons profile, that all my activities show up on everyones elses profile page too.

(sorry for all the questions)

Hitsums
08-25-2009, 12:13 AM
Where it says

IconWill be displayed in postbit. Should have max. 16x16px.

How do i change those to 32x32px?

SEW810
08-25-2009, 03:45 AM
OK! thanks mate.
---

I am translating this mod into the Spanish language, because the previous versions have some errors or they are not completely translated.

In the next days I will send to you a PM.

Greetings
Errors?, what kind of errors?. Grammar or something?.
They r just phrases, I didn't touch php files
Where it says

IconWill be displayed in postbit. Should have max. 16x16px.

How do i change those to 32x32px?

If you want to change the phrase just look for it and edit it.

Now, if you want to use a 32x32 image instead of 16x16, you can do it. No matters if it says 3x3, 100x100 or whatever.

Phalynx
08-25-2009, 07:36 AM
OK, there are just alot of pages to this thread lol.


Question,...are all activities by all members supposed to show up under everyones member profile page?

I noticed that today in another persons profile, that all my activities show up on everyones elses profile page too.

(sorry for all the questions)
Cannot confirm that. It should display the activities of the user.


Where it says

IconWill be displayed in postbit. Should have max. 16x16px.

How do i change those to 32x32px?
You can leave them in the size they are. 32x32 is just a recommandation.
Otherwise resize via PhotoShop or similar...

matthewhotdude
08-25-2009, 09:35 AM
I havent read through this whole thread, But as anyone got any shop items to download? I mean like the small images ?

matthewhotdude
08-25-2009, 10:22 AM
How do you give away points?

* edit

sorted

Phalynx
08-25-2009, 10:31 AM
I havent read through this whole thread, But as anyone got any shop items to download? I mean like the small images ?
Shop Downloads are part of v3.8.5

How do you give away points?
Click on profile or on popup on users postbit.

matthewhotdude
08-25-2009, 10:55 AM
I think you misunderstood what I meant. I meant has anyone got any shop items I can upload to my shop, The promotions system, I have enabled it in this mod, But how do I configure it?

mcloud
08-25-2009, 03:26 PM
Not SEW810, I think taht your translation es very good, almost perfect :)

... I didn't touch php files This is the question!

SEW810
08-25-2009, 04:11 PM
Not SEW810, I think taht your translation es very good, almost perfect :)

This is the question!

Oh I see dude lol :D
I didn?t know that I could edit those files :o

Well, maybe next time hehe.

Regards ;)

matthewhotdude
08-25-2009, 08:39 PM
I have unstall arm of law, is there somewhere im supposed to set settings?

Gun Geek
08-25-2009, 08:56 PM
Just updated to 3.8.4.2 Still showing All activity in member profile.

SEW810
08-26-2009, 01:22 AM
I have unstall arm of law, is there somewhere im supposed to set settings?
Nope, Arm of law is just an add-on.

This add-on gives points for infraction executioners.
You can add an award (via manage: awards cp) if you want to.
The most infraction executioner will win it.

matthewhotdude
08-26-2009, 12:18 PM
well I did want to give an award to the person with the most infractions, That wouldnt work :( And I set one up for most referrals and the award changes person everyday, and not always to the person with the most infractions!


P.S So has anyone got any shop items (pics) they would like to share

SEW810
08-26-2009, 02:26 PM
well I did want to give an award to the person with the most infractions, That wouldnt work :( And I set one up for most referrals and the award changes person everyday, and not always to the person with the most infractions!


P.S So has anyone got any shop items (pics) they would like to share

Thats rare.
I may help you, why don't you PM your url so I can take a look.

Maybe your awards settings are wrong.

There are 2 diferent things:

-An award to whom has a lot of infraction points and
-An award to whom has given more infraction points than other moderators

I'm telling this to you because your 1st post talking about this problem was that "arm of law" weren't working in your forum and "arm of law" is for giving an award to whom has given more infraction points to other users that the rest of your moderators

matthewhotdude
08-26-2009, 02:34 PM
My url is in my sig

SEW810
08-26-2009, 03:51 PM
My url is in my sig
Duh !!, What a absent-minded I am
I'll check it out

Gun Geek
08-27-2009, 02:16 PM
Just updated to 3.8.4.2 Still showing All activity in member profile.

Any help on this?

Phalynx
08-27-2009, 02:23 PM
No, as I cannot confirm this on my boards.

SEW810
08-27-2009, 08:13 PM
Originally Posted by Gun Geek
Just updated to 3.8.4.2 Still showing All activity in member profile.
Any help on this?

What do you mean dude?.

If you mean vbexperience 3.8.4.2 showes last activity at member profile yes, i can see all mamebr's activity at any profile.
It would be great if experience only showes our own last activity.

smirkley
08-27-2009, 10:04 PM
Originally Posted by Gun Geek
Just updated to 3.8.4.2 Still showing All activity in member profile.


What do you mean dude?.

If you mean vbexperience 3.8.4.2 showes last activity at member profile yes, i can see all mamebr's activity at any profile.
It would be great if experience only showes our own last activity.

Yes, I get this too. I did send a link to Phalynx to see how it shows up on my forums, I think he suggested that it isnt showing up this way on his forums, but I think he is looking into it.

Nadeemjp
08-28-2009, 12:48 AM
If you don't enabled xperience promotions than this part is not doing anything. Maybe your vBulletin promotions are not correct.

hello phalynx, i have deleted all the promotions and still i am having this problem.
based on activity all my inactive members are being transferred into the COPPA moderation awaiting cat and doesnt even appear in primary or additional user list.

now that i remember, this all started happening ever since i upgraded to the latest version.
do you think this has to do with that?

can you please look into the matter cause i have tried everything and cant seem to fix it.

In edition:
I had data provider installed but it was not working so i uninstalled it.
before that i had disabled thread necromancer as well. now i try to uninstall the thread necromancer, but it gives error of the following type:


Database error in vBulletin 3.8.4:

Invalid SQL:
ALTER TABLE xperience_stats DROP points_thread_tnc BIGINT DEFAULT '0';

MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'BIGINT DEFAULT '0'' at line 1
Error Number : 1064
Request Date : Thursday, August 27th 2009 @ 08:51:54 PM
Error Date : Thursday, August 27th 2009 @ 08:51:54 PM
Script : http://www.familybunker.com/forums/admincp/plugin.php?do=productkill
Referrer : http://www.familybunker.com/forums/admincp/plugin.php?do=productdelete&productid=xpnecro&s=
Classname : vB_Database_MySQLi
MySQL Version : 5.1.30

Nadeemjp
08-28-2009, 03:07 AM
please help regarding the error .... whenever i try to delete thread necromancer this error occurs:


Database error in vBulletin 3.8.4:

Invalid SQL:
ALTER TABLE xperience_stats DROP points_thread_tnc BIGINT DEFAULT '0';

MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'BIGINT DEFAULT '0'' at line 1
Error Number : 1064
Request Date : Thursday, August 27th 2009 @ 08:51:54 PM
Error Date : Thursday, August 27th 2009 @ 08:51:54 PM
Script : http://www.familybunker.com/forums/admincp/plugin.php?do=productkill
Referrer : http://www.familybunker.com/forums/admincp/plugin.php?do=productdelete&productid=xpnecro&s=
Classname : vB_Database_MySQLi
MySQL Version : 5.1.30

Phalynx
08-28-2009, 06:31 AM
Yes, I get this too. I did send a link to Phalynx to see how it shows up on my forums, I think he suggested that it isnt showing up this way on his forums, but I think he is looking into it.
I'm still on it, but cannot confirm this on my boards.

hello phalynx, i have deleted all the promotions and still i am having this problem.
based on activity all my inactive members are being transferred into the COPPA moderation awaiting cat and doesnt even appear in primary or additional user list.

now that i remember, this all started happening ever since i upgraded to the latest version.
do you think this has to do with that?

can you please look into the matter cause i have tried everything and cant seem to fix it.
Please PM me a temporary admin account on you board so I can take a look.



In edition:
I had data provider installed but it was not working so i uninstalled it.
before that i had disabled thread necromancer as well. now i try to uninstall the thread necromancer, but it gives error of the following type:


Database error in vBulletin 3.8.4:

Invalid SQL:
ALTER TABLE xperience_stats DROP points_thread_tnc BIGINT DEFAULT '0';

MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'BIGINT DEFAULT '0'' at line 1
Error Number : 1064
Request Date : Thursday, August 27th 2009 @ 08:51:54 PM
Error Date : Thursday, August 27th 2009 @ 08:51:54 PM
Script : http://www.familybunker.com/forums/admincp/plugin.php?do=productkill
Referrer : http://www.familybunker.com/forums/admincp/plugin.php?do=productdelete&productid=xpnecro&s=
Classname : vB_Database_MySQLi
MySQL Version : 5.1.30


The uninstall code is bugged. Please install first the fixed version that comes with vBExperience 3.8.4, after that you can uninstall it.

Nadeemjp
08-28-2009, 11:56 AM
thanx phalynx the necromancerp roblem is solved.
and i am a bit embarassed.
actually at some point i had installed inactive user move to another usergroup from paul. i had completely forgotten about that. i just found out when i was installing necromance and uninstalling it and the problem is solved.

i am so sorry to have bothered you

thanx

Phalynx
08-28-2009, 12:09 PM
Nice to hear it works now.

Phalynx
08-28-2009, 12:26 PM
It's here! vBExperience 3.8.5 Beta 1 has arrived. It features promotions based on a xperience value that YOU can define. Experience, Tags, Posts, Friends - all can be used for a promotion to a higher usergroup.
Achievements are working the same way: Define the points that are needed to achieve them! Achievements are completing the idea behind the Awards.

vBExperience 3.8.5 Beta 1:
- Achievements!
- Promotions!
- Notification on Awards/Promotions
- GAP: Empty pointfields will not be displayed anymore
- Activity: Showing percent values with a decimal
- Activities now also for users
- Awards below Avatar
- Default Awards are now also creating new category
- Shop: Fixed issue in not returning cash on sells
- Reworked Edit Shop Items

Nadeemjp
08-28-2009, 01:44 PM
hi phalynx sorry to bother you again
but i have recieved some 20 messages in just 10 minutes complaining about this followin error:


Database error in vBulletin 3.8.4:

Invalid SQL:
SELECT
u.userid,
points_user_activity+points_user_albumpictures+poi nts_misc_ibparcadechamps+points_user_law+points_po st_attachment+points_post_attachment_views+points_ misc_custom+points_misc_cdp+points_misc_dla+points _post_den+points_misc_ds_vbexp+points_misc_dl2+poi nts_xperience+points_user_profile+points_user_frie nds+points_post_thanks_got_total+points_post_thank s_got_post+points_user_infractions+points_misc_ldm +points_misc_ppd+points_user_online+points_misc+po ints_post+points_user+points_thread+points_posts+p oints_user_referrals+points_thread_replycount+poin ts_user_reputation+points_threads_sg+points_posts_ sg+points_user_socialgroup+points_thread_stickies+ points_thread_tags+points_thread_tnc+points_thread s+points_user_reputation_use+points_post_thanks_us e+points_post_thanks_used+points_thread_views+poin ts_user_visitormessages+points_thread_votes+points _misc_ppg+points_post_group_discussion+points_thre ad_group_discussion+points_misc_vbblog+points_post _thanks
AS get_count
FROM xperience_stats as s
INNER JOIN user as u ON u.userid = s.userid
WHERE 1 = 1 AND NOT (1=2 )
ORDER BY get_count DESC, points_xperience DESC
LIMIT 0,1;

MySQL Error : Unknown column 'points_thread_tnc' in 'field list'
Error Number : 1054
Request Date : Friday, August 28th 2009 @ 09:40:27 AM
Error Date : Friday, August 28th 2009 @ 09:40:27 AM
Script : http://www.familybunker.com/forums/cron.php?rand=1251470409
Referrer : http://www.familybunker.com/forums/world-sentiments/9335-xeon-aka-saith-panna-lal.html
Username : Unregistered
Classname : vB_Database_MySQLi
MySQL Version :


any idea why i am getting this error?

Nadeemjp
08-28-2009, 02:14 PM
also when i tried to recount the PPD, the following error occurred:

Database error in vBulletin 3.8.4:

Invalid SQL:
SELECT
u.userid,
points_user_activity+points_user_albumpictures+poi nts_misc_ibparcadechamps+points_user_law+points_po st_attachment+points_post_attachment_views+points_ misc_custom+points_misc_cdp+points_misc_dla+points _post_den+points_misc_ds_vbexp+points_misc_dl2+poi nts_xperience+points_user_profile+points_user_frie nds+points_post_thanks_got_total+points_post_thank s_got_post+points_user_infractions+points_misc_ldm +points_misc_ppd+points_user_online+points_misc+po ints_post+points_user+points_thread+points_posts+p oints_user_referrals+points_thread_replycount+poin ts_user_reputation+points_threads_sg+points_posts_ sg+points_user_socialgroup+points_thread_stickies+ points_thread_tags+points_thread_tnc+points_thread s+points_user_reputation_use+points_post_thanks_us e+points_post_thanks_used+points_thread_views+poin ts_user_visitormessages+points_thread_votes+points _misc_ppg+points_post_group_discussion+points_thre ad_group_discussion+points_misc_vbblog+points_post _thanks
AS get_count
FROM xperience_stats as s
INNER JOIN user as u ON u.userid = s.userid
WHERE 1 = 1 AND NOT (1=2 )
ORDER BY get_count DESC, points_xperience DESC
LIMIT 0,1;

MySQL Error : Unknown column 'points_thread_tnc' in 'field list'
Error Number : 1054
Request Date : Friday, August 28th 2009 @ 10:13:03 AM
Error Date : Friday, August 28th 2009 @ 10:13:04 AM
Script : http://www.familybunker.com/forums/admincp/xperience_admin.php?do=xperience_admin_recount_ppd&avgppd=1&startat=1251&pp=250
Referrer : http://www.familybunker.com/forums/admincp/index.php?loc=plugin.php%3Fdo%3Dproduct

Classname : vB_Database_MySQLi
MySQL Version : 5.1.30

Nadeemjp
08-28-2009, 02:28 PM
i upgraded to 3.8.5 and the following error occurs when try to recount:


Invalid SQL:
UPDATE user SET xperience_promotioncount=0 WHERE userid=0;

MySQL Error : Unknown column 'xperience_promotioncount' in 'field list'
Error Number : 1054
Request Date : Friday, August 28th 2009 @ 10:19:42 AM
Error Date : Friday, August 28th 2009 @ 10:19:42 AM
Script : http://www.familybunker.com/
Referrer :
IP Address : 119.153.9.44
Username : Unregistered
Classname : vB_Database_MySQLi
MySQL Version :

Phalynx
08-28-2009, 03:22 PM
also when i tried to recount the PPD, the following error occurred:
You have an award that is still using thread necromancer as a source. Edit the Award and save it.


i upgraded to 3.8.5 and the following error occurs when try to recount:


Invalid SQL:
UPDATE user SET xperience_promotioncount=0 WHERE userid=0;

MySQL Error : Unknown column 'xperience_promotioncount' in 'field list'
Error Number : 1054
Request Date : Friday, August 28th 2009 @ 10:19:42 AM
Error Date : Friday, August 28th 2009 @ 10:19:42 AM
Script : http://www.familybunker.com/
Referrer :
IP Address : 119.153.9.44
Username : Unregistered
Classname : vB_Database_MySQLi
MySQL Version :

Did you copied the files and after that imported the product? Otherwise you will get such errors...

Nadeemjp
08-28-2009, 03:31 PM
i am having YAAS running and i have not used activity award yet.
should i delete the awards? i mean i dont know which award is using the thread necromancer:(

secondly when i upgraded, i first copied the files via ftp and then imported xmls of all the addons and the product itself.

did i do something wrong?

Nadeemjp
08-28-2009, 03:40 PM
and now this error when i tried to create category in experience awards

Invalid SQL:
SELECT
u.userid,
points_user_activity+points_user_albumpictures+poi nts_misc_ibparcadechamps+points_user_law+points_po st_attachment+points_post_attachment_views+points_ misc_custom+points_misc_cdp+points_misc_dla+points _post_den+points_misc_ds_vbexp+points_misc_dl2+poi nts_xperience+points_user_profile+points_user_frie nds+points_post_thanks_got_total+points_post_thank s_got_post+points_user_infractions+points_misc_ldm +points_misc_ppd+points_user_online+points_misc+po ints_post+points_user+points_thread+points_posts+p oints_user_referrals+points_thread_replycount+poin ts_user_reputation+points_threads_sg+points_posts_ sg+points_user_socialgroup+points_thread_stickies+ points_thread_tags+points_thread_tnc+points_thread s+points_user_reputation_use+points_post_thanks_us e+points_post_thanks_used+points_thread_views+poin ts_user_visitormessages+points_thread_votes+points _misc_ppg+points_post_group_discussion+points_thre ad_group_discussion+points_misc_vbblog+points_post _thanks
AS get_count
FROM xperience_stats as s
INNER JOIN user as u ON u.userid = s.userid
WHERE 1 = 1 AND NOT (1=2 )
ORDER BY get_count DESC, points_xperience DESC
LIMIT 0,1;

MySQL Error : Unknown column 'points_thread_tnc' in 'field list'
Error Number : 1054
Request Date : Friday, August 28th 2009 @ 11:35:46 AM
Error Date : Friday, August 28th 2009 @ 11:35:46 AM
Script : http://www.familybunker.com/forums/admincp/xperience_admin.php?do=saveaawardcat
Referrer : http://www.familybunker.com/forums/admincp/xperience_admin.php?do=editawardcat&id=2
Classname : vB_Database_MySQLi
MySQL Version : 5.1.30

original'as
08-28-2009, 03:53 PM
Great plugin. excatly what I was looking for (https://vborg.vbsupport.ru/showthread.php?p=1851715). It would be even more cool to have some goals. For example: write 5 posts to unlock "first five" achievement or something like that. There could be a lot of achievements for adding friends, get you thread sticked and all other similar stuff.. :)


Made a little design tweak, I think it's a bit better:

Just open
Styles & Templates > Search in Templates > enter xperience_gfx > and replace all code with
<div align="left">

<if condition="$vboptions[xperience_bardescriptions]">
<table width="$vboptions[xperience_bar_width]" cellpadding="0" cellspacing="0">
<tr>
<td colspan="3"><div class="smallfont"><a href="xperience.php?go=earn">$vbphrase[xperience_points]</a>: $xperience[points], $vbphrase[xperience_level]: $xperience[level]</div></td>
</tr>
</table>
</if>

<if condition="!$vboptions[xperience_hidepostbitgfx]">
<table width="$vboptions[xperience_bar_width]" cellpadding="0" cellspacing="0">
<tr style="background-image:url($vboptions[bburl]/xperience/images/grey_faded.png)">
<td width="5" height="11"><img alt="$vbphrase[xperience_level_up]: $xperience[level_up]%, $vbphrase[xperience_points_needed]: $xperience[level_up_points]" src="$vboptions[bburl]/xperience/images/grey_left.png" height="11" /></td>
<td width="100%" height="11"><img alt="$vbphrase[xperience_level_up]: $xperience[level_up]%, $vbphrase[xperience_points_needed]: $xperience[level_up_points]" src="$vboptions[bburl]/xperience/images/grey.png" width="$xperience[level_up]%" height="11" /></td>
<td width="1" height="11"><img alt="$vbphrase[xperience_level_up]: $xperience[level_up]%, $vbphrase[xperience_points_needed]: $xperience[level_up_points]" src="$vboptions[bburl]/xperience/images/grey_right.png" height="11" /></td>
</tr>
</table>
</if>

</div>


Result:

Phalynx
08-28-2009, 05:07 PM
i am having YAAS running and i have not used activity award yet.
should i delete the awards? i mean i dont know which award is using the thread necromancer:(

secondly when i upgraded, i first copied the files via ftp and then imported xmls of all the addons and the product itself.

did i do something wrong?
YAAS has nothing to do with vBExperience. Go to AdminCP, Experience, Manage Awards - and edit the award that has the Thread Necromancer.


and now this error when i tried to create category in experience awards

Same error due to thread necromancer.


Great plugin. excatly what I was looking for (https://vborg.vbsupport.ru/showthread.php?p=1851715). It would be even more cool to have some goals. For example: write 5 posts to unlock "first five" achievement or something like that. There could be a lot of achievements for adding friends, get you thread sticked and all other similar stuff.. :)

Achievements are included in vBExperience 3.8.5 - you can download the beta 1 from few posts above and test it.


Made a little design tweak, I think it's a bit better:

Just open
Styles & Templates > Search in Templates > enter xperience_gfx > and replace all code with
<div align="left">

<if condition="$vboptions[xperience_bardescriptions]">
<table width="$vboptions[xperience_bar_width]" cellpadding="0" cellspacing="0">
<tr>
<td colspan="3"><div class="smallfont"><a href="xperience.php?go=earn">$vbphrase[xperience_points]</a>: $xperience[points], $vbphrase[xperience_level]: $xperience[level]</div></td>
</tr>
</table>
</if>

<if condition="!$vboptions[xperience_hidepostbitgfx]">
<table width="$vboptions[xperience_bar_width]" cellpadding="0" cellspacing="0">
<tr style="background-image:url($vboptions[bburl]/xperience/images/grey_faded.png)">
<td width="5" height="11"><img alt="$vbphrase[xperience_level_up]: $xperience[level_up]%, $vbphrase[xperience_points_needed]: $xperience[level_up_points]" src="$vboptions[bburl]/xperience/images/grey_left.png" height="11" /></td>
<td width="100%" height="11"><img alt="$vbphrase[xperience_level_up]: $xperience[level_up]%, $vbphrase[xperience_points_needed]: $xperience[level_up_points]" src="$vboptions[bburl]/xperience/images/grey.png" width="$xperience[level_up]%" height="11" /></td>
<td width="1" height="11"><img alt="$vbphrase[xperience_level_up]: $xperience[level_up]%, $vbphrase[xperience_points_needed]: $xperience[level_up_points]" src="$vboptions[bburl]/xperience/images/grey_right.png" height="11" /></td>
</tr>
</table>
</if>

</div>


Result:
It seems this is a reduced version. I like it and will include it as an alternative. Thanks!

Nadeemjp
08-28-2009, 05:14 PM
oh, phalynx i have deleted a couple of awards that were displaying links in them:o
did i make a istake?

is there any other way to cure these errors?

SEW810
08-28-2009, 06:20 PM
Installing 3.8.5 BETA 1.

:( Phalynx, I think you forgot to update post :)
I didn't know that 3.8.5 BETA is available :p

************** EDITED *****************
Admin CP options such as "Settings: Shop, Settings: General, etc are missed :(

You can access to those options only through "vbulletin options" menu

**************** SECOND ISSUE *************
At xperience.php screen, tables are screwed (see attach)
Table is not divided correctly.

original'as
08-28-2009, 06:27 PM
Achievements are included in vBExperience 3.8.5 - you can download the beta 1 from few posts above and test it.

It worked, but after completing Recount I get a blank page http://www.topzone.lt/forumas/xperience.php?go=achievements


And I got another idea. It could show totol achievements in postbit with the link to the users profile page, there it would be possible to see all achievements, date earned and button to compare with yours.

https://vborg.vbsupport.ru/external/2009/08/2.gif

SEW810
08-28-2009, 07:24 PM
Just love achievements stuff!!.

Suggest: At awards wrap.
It showes a small image (16x16), no matters if my image at FTP server is 3000 x 30000 pixeles.It always showes 16 x 16 !!!

My suggest: Is there any way to show image just as adjusted size at "Awards manager" option?.
Regards !!!!!!

See attached pics.
Same image, same path, same everything but... different size ????

--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Oh God no maaaaan!!!!!!!, c'mon, you must be kidding me.
all my members 100% activity once again?,

Phalynx , did you include class_xperience.php fixed in 3.8.5?????

Phalynx
08-28-2009, 08:03 PM
Installing 3.8.5 BETA 1.

:( Phalynx, I think you forgot to update post :)
I didn't know that 3.8.5 BETA is available :p
Yes, I know. That's because Beta 1 is not really stable.

************** EDITED *****************
Admin CP options such as "Settings: Shop, Settings: General, etc are missed :(

You can access to those options only through "vbulletin options" menu
That's the intention. As the options are growing, the menu was cluttered and reserved half of the screen.


**************** SECOND ISSUE *************
At xperience.php screen, tables are screwed (see attach)
Table is not divided correctly.
Could be a problem, as I don't know how to solve this :( I need a new menue.
Idea 1:
Drop down menues

Idea 2:
Left or right aligned menue (not top like now)

Idea 3:
?

It worked, but after completing Recount I get a blank page http://www.topzone.lt/forumas/xperience.php?go=achievements
You are getting a HTTP 500 Internal Server Error. Something get wrong. Can you please check your php error logs what happened?


And I got another idea. It could show totol achievements in postbit with the link to the users profile page, there it would be possible to see all achievements, date earned and button to compare with yours.

https://vborg.vbsupport.ru/external/2009/08/2.gif
Great idea.

Just love achievements stuff!!.

Suggest: At awards wrap.
It showes a small image (16x16), no matters if my image at FTP server is 3000 x 30000 pixeles.It always showes 16 x 16 !!!

My suggest: Is there any way to show image just as adjusted size at "Awards manager" option?.
Regards !!!!!!

See attached pics.
Same image, same path, same everything but... different size ????
In postbit it is showing *always* a 16x16 pic because of the postbit. The postbit is not a picture gallery with 48 sized pictures. The descriptions says it already - max 16x16.

SEW810
08-28-2009, 08:15 PM
lol, that's right !!!! lol
I agree with you, about "The postbit is not a picture gallery with 48 sized pictures" ;)

But what about:

Oh God no maaaaan!!!!!!!, c'mon, you must be kidding me.
all my members 100% activity once again?,

Phalynx , did you include class_xperience.php fixed in 3.8.5 BETA 1?????

Well, back to vbexp 3.8.4.2 ;)

Regards

Phalynx
08-28-2009, 08:29 PM
But what about:



Well, back to vbexp 3.8.4.2 ;)

Regards

That is also a behaviour in 3.8.4 - if the recount is not finished, many people have 100%. The harmonization about 99.9, 99.8 is done after that process ends.

Also, a first beta is never bug free :)

SEW810
08-28-2009, 08:37 PM
Yeah, I know.
Ok man, I'll keep reporting any issue.

Thanks for your quick support. ;)

3.8.4.2 working pretty good. I'll wait for 3.8.5 Release

Regards


Could be a problem, as I don't know how to solve this I need a new menue.
Idea 1:
Drop down menues

Idea 2:
Left or right aligned menue (not top like now)

Idea 3:
?

hummm, Idea 3: Tabbed !!!

sounds dificult, they are just details pal, any choise you make will be Ok for me. :)
You have already made a lot for us giving this great mod to all the ppl.

Bleed0ut
08-28-2009, 08:53 PM
Origional'as care to share the code for your postbit? Just that part... Its a nifty idea..

Bleed0ut
08-28-2009, 09:10 PM
The achievements are nice (3.8.5) but theres no way to really show them off. They aren't listed in your profile even.

Fil*
08-28-2009, 10:07 PM
Hi, this is a great mod :) o

One thing that I need to now is how can I customize the placement of the "experience" tab in member profile. I have modified the memberinfo page to look more like myspace style, I don't have stuff like about me, friends, experience etc. tabbed anymore (it's expanded and standalone). The experience window is now on the right side of the page (main column, expanded), but I need to move it to the left side and collapse it. Another way is to remove the experience window entirely and to place it on a separate page, leaving only a link to that page in the profile. Would it be possible ? Where can I find the code for the memberinfo block placement ? (it's not in the memberinfo, co maybe I'm missing something).
It would be nice also to have activity and level bars below user profile picture in member profile, can you please suggest how can I place them there ?

Thanks and good luck, happy coding :).

original'as
08-29-2009, 06:16 AM
You are getting a HTTP 500 Internal Server Error. Something get wrong. Can you please check your php error logs what happened?[Sat Aug 29 07:45:49 2009] [warn] mod_fcgid: stderr: PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 8383987 bytes) in /var/www/vhosts/topzone.lt/httpdocs/forumas/xperience.php(1501) : eval()'d code on line 36

shaqoneal
08-29-2009, 06:55 AM
How do I alter the settings for the vBExperience promotions? I can see how to turn it on, but unlike the normal vB promotions where there is a menu to add promotions, in vBExperience I don't see it. Please help!

Phalynx
08-29-2009, 08:41 AM
Yeah, I know.
Ok man, I'll keep reporting any issue.

Thanks for your quick support. ;)

3.8.4.2 working pretty good. I'll wait for 3.8.5 Release

Regards




hummm, Idea 3: Tabbed !!!

sounds dificult, they are just details pal, any choise you make will be Ok for me. :)
You have already made a lot for us giving this great mod to all the ppl.
Tabbed sounds great, will try it.

The achievements are nice (3.8.5) but theres no way to really show them off. They aren't listed in your profile even.
Yes I know. The first Beta is just a first try to implement them. Take a look at the awards, it's the same story in developing.


Hi, this is a great mod :) o

One thing that I need to now is how can I customize the placement of the "experience" tab in member profile. I have modified the memberinfo page to look more like myspace style, I don't have stuff like about me, friends, experience etc. tabbed anymore (it's expanded and standalone). The experience window is now on the right side of the page (main column, expanded), but I need to move it to the left side and collapse it. Another way is to remove the experience window entirely and to place it on a separate page, leaving only a link to that page in the profile. Would it be possible ? Where can I find the code for the memberinfo block placement ? (it's not in the memberinfo, co maybe I'm missing something).
It would be nice also to have activity and level bars below user profile picture in member profile, can you please suggest how can I place them there ?

Thanks and good luck, happy coding :).
You should check the code that is hooking in memberinfo complete

[Sat Aug 29 07:45:49 2009] [warn] mod_fcgid: stderr: PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 8383987 bytes) in /var/www/vhosts/topzone.lt/httpdocs/forumas/xperience.php(1501) : eval()'d code on line 36
Thanks, will fix it for Beta 2

How do I alter the settings for the vBExperience promotions? I can see how to turn it on, but unlike the normal vB promotions where there is a menu to add promotions, in vBExperience I don't see it. Please help!
AdminCP, Experience, Manage Promotions...

shaqoneal
08-29-2009, 09:08 AM
I also wanted to know if it was possible to move the awards from next to username to somewhere else in postbit, like under the post count in "Yet Another Award System (https://vborg.vbsupport.ru/showthread.php?t=196244&highlight=awards)"
http://img132.imageshack.us/img132/363/yaasforumpostdisplay.jpg




How do I alter the settings for the vBExperience promotions? I can see how to turn it on, but unlike the normal vB promotions where there is a menu to add promotions, in vBExperience I don't see it. Please help!



AdminCP, Experience, Manage Promotions...

Thanks for your speedy response Phalynx. That option isn't actually in my AdminCP:
http://img20.imageshack.us/img20/9388/experiencew.jpg

I did re-read your readme and found that it can be done through the levels XML file, but again, I don't see such an option in the admincp (I'm using vBulletin 3.8.1 with the latest version of vBExperience, 3.8.4.2)

chick
08-29-2009, 02:57 PM
This is really odd. I have the latest of both vb and experience and the levels show in the postbit legacy of my custom skin but refuse to show in my unmolested stock theme and both postbits have the same code (same template)

If you right click on the stock vb level area in the postbit you see....... /images/misc/level/grey
with no .png at the end. It is not pointing to the correct directory.

but in the custom working postbits you see....... /xperience/images/grey.png

How can I fix this this. Both the original stock vbtheme and the custom theme have the same postbit template, yet the original vb theme shows incorrectly.

Both have the $template_hook[postbit_userinfo_left] is in all postbit templates. As a fatter of fact all $template_hook_ are present.

What should I try?

SEW810
08-29-2009, 04:36 PM
I also wanted to know if it was possible to move the awards from next to username to somewhere else in postbit, like under the post count in "Yet Another Award System (https://vborg.vbsupport.ru/showthread.php?t=196244&highlight=awards)"
http://img132.imageshack.us/img132/363/yaasforumpostdisplay.jpg

Thanks for your speedy response Phalynx. That option isn't actually in my AdminCP:
http://img20.imageshack.us/img20/9388/experiencew.jpg

I did re-read your readme and found that it can be done through the levels XML file, but again, I don't see such an option in the admincp (I'm using vBulletin 3.8.1 with the latest version of vBExperience, 3.8.4.2)

That will be possible in vBExperience 3.8.5 . Awards will be showed at postbit (configurable)

And yeah, I've never used Experience promotions but you are right, that option is not present in 3.8.4.2 but it is present in 3.8.5 Beta 1

rlneutral
08-30-2009, 05:48 AM
Anyone has a Russian translation for 3.8.4.2?

Bleed0ut
08-30-2009, 06:17 AM
Can Anyone explain to me exactly what 'Per Day' means? Is that every day you've logged into the forums or is it just how many days since you registered...?

SEW810
08-30-2009, 06:48 AM
It's the average posts per day, depends on PPD factor at vbexperience settings.
I guess that "factor" is something like a period, Phalynx can explain it to us better than me.

For example:
Factor = 30

VBexperience calculates the average PPD written by all users within the last 30 days in your forum.

If all your users posted 180 along of 30 days... well, the PPD will be 6

shaqoneal
08-30-2009, 08:55 AM
the vbexperience promotion system is not working for me and it's driving me nuts!! can anybody please tell me what i did wrong? i have the xml file attached.

for some reason it keeps kicking my users to usergroup 2, even though i want it to put them in different usergroups like 16, 17, and 18. all of the levels and experince points and being read correctly, but it's ignoring the promotions (or usergroup i want certain users to change to)!

btw, i do not have any vbulletin promotions. i only have turned on vbexperience promotions.

thanks in advance for any help.

BostWick-x
08-30-2009, 09:47 PM
Is there any way that you could add an awards showcase similar to that of the Yet Another Awards System?

https://vborg.vbsupport.ru/attachment.php?attachmentid=89359&d=1226657593

I'm not a fan of having them by the username, but I want them to be displayed in the postbit.

matthewhotdude
08-31-2009, 05:49 AM
please someone must have a zip of images for the shop, all sizes

Phalynx
08-31-2009, 07:23 AM
I also wanted to know if it was possible to move the awards from next to username to somewhere else in postbit, like under the post count in "Yet Another Award System (https://vborg.vbsupport.ru/showthread.php?t=196244&highlight=awards)"
Implemented in vBExperience 3.8.5 (Beta 1 is currently released, Beta 2 will follow today)


Thanks for your speedy response Phalynx. That option isn't actually in my AdminCP:
I did re-read your readme and found that it can be done through the levels XML file, but again, I don't see such an option in the admincp (I'm using vBulletin 3.8.1 with the latest version of vBExperience, 3.8.4.2)
GUI for Promotions are in 3.8.5, not 3.8.4.x - there you must handle it in xml files.


This is really odd. I have the latest of both vb and experience and the levels show in the postbit legacy of my custom skin but refuse to show in my unmolested stock theme and both postbits have the same code (same template)

If you right click on the stock vb level area in the postbit you see....... /images/misc/level/grey
with no .png at the end. It is not pointing to the correct directory.

but in the custom working postbits you see....... /xperience/images/grey.png

How can I fix this this. Both the original stock vbtheme and the custom theme have the same postbit template, yet the original vb theme shows incorrectly.

Both have the $template_hook[postbit_userinfo_left] is in all postbit templates. As a fatter of fact all $template_hook_ are present.

What should I try?
Copy images to your style/misc folder or just upgrade to 3.8.4 - it's using a path that is not bound to a style.


the vbexperience promotion system is not working for me and it's driving me nuts!! can anybody please tell me what i did wrong? i have the xml file attached.

for some reason it keeps kicking my users to usergroup 2, even though i want it to put them in different usergroups like 16, 17, and 18. all of the levels and experince points and being read correctly, but it's ignoring the promotions (or usergroup i want certain users to change to)!

btw, i do not have any vbulletin promotions. i only have turned on vbexperience promotions.

thanks in advance for any help.
Ugrade now to vBExperience 3.8.5 (Beta 1 is currently released, Beta 2 will follow today), as it features a GUI for promotions.


Is there any way that you could add an awards showcase similar to that of the Yet Another Awards System?

https://vborg.vbsupport.ru/attachment.php?attachmentid=89359&d=1226657593

I'm not a fan of having them by the username, but I want them to be displayed in the postbit.

Implemented in vBExperience 3.8.5 (Beta 1 is currently released, Beta 2 will follow today)

Hagalepues
08-31-2009, 10:03 AM
Thanks =D!

Megatr0n
08-31-2009, 10:12 AM
Marius, when a user is deleted does that mean all the information associated with that user is deleted or would we have to remove that information manually from the database?

If not what would the query be to remobve data from the tables of a user who is now deleted.

Phalynx
08-31-2009, 10:41 AM
Marius, when a user is deleted does that mean all the information associated with that user is deleted or would we have to remove that information manually from the database?

If not what would the query be to remobve data from the tables of a user who is now deleted.

Only informations in the user table are deleted. All others, like shop are not deleted.

chick
08-31-2009, 11:18 AM
I figured it out, I had to revert the stock theme template (gfx full) but i will update to the next latest version. Thank you.

realmr
08-31-2009, 12:10 PM
will this integrate with kbank, or can the kbank points be converted for this one ?

Phalynx
08-31-2009, 12:38 PM
will this integrate with kbank, or can the kbank points be converted for this one ?

It can be converted into vbExperience custom points with a custom query.

Bleed0ut
08-31-2009, 06:56 PM
Bug: Beta1

Experience:Activity
Set Include User's Posts: No

Recount: Update Activity PPD

Get this DB Error:

Database error in vBulletin 3.8.3:

Invalid SQL:
UPDATE setting SET value= WHERE varname='xperience_avgppd';

MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE varname='xperience_avgppd'' at line 1
Error Number : 1064
Request Date : Monday, August 31st 2009 @ 02:55:04 PM
Error Date : Monday, August 31st 2009 @ 02:55:04 PM
Script : http://www.sandboxgamers.net/forum/admincp/xperience_admin.php?do=xperience_admin_recount_ppd
Referrer : http://www.sandboxgamers.net/forum/admincp/xperience_admin.php?do=recount
IP Address : 65.115.209.2
Username : Bleed0ut
Classname : vB_Database
MySQL Version : 5.0.81-community

Phalynx
08-31-2009, 07:06 PM
What is your PPD Timeframe?

Bleed0ut
08-31-2009, 07:10 PM
Heres my full settings:

Average Posts Per Day: 0 (Set automaticly, not by me)
Timeframe for activity: 10
Include User's Posts: No
Include Users Blog: No
Include Users Visitor Mess: No
Include Users Social Group: No
Include Users Last Activity Date: Yes (Which doesn't seem to be working, but I'm not sure)

Phalynx
08-31-2009, 07:34 PM
That's the fault. Last Activity Date does not increase the PPD, it's decreasing it. For every day the user is not online (in the timeframe), it's decrease in 0.1 steps.
As you disabled all calculations, the PPD is 0.

This cannot work.

Bleed0ut
08-31-2009, 07:51 PM
Ah so your saying I have to have at least one thing active. Ok, so if I set Include User's Posts: Yes and recount I still have PPD of 0 is that normal?

Phalynx
08-31-2009, 08:33 PM
No, it's not normal. Do you have any forums/users on exception list?

BostWick-x
08-31-2009, 09:15 PM
Is there any way that I can limit what types of points that my users give to each other? I only want them to be able to give custom points to each other.

The reason being is that I want the points for posts, etc. to be the way of measuring their experience, but I want the custom points to be their spendable money, as it's the only currency that's accepted in the shop.

Thanks, and great mod. My members absolutely love it. :)

Bleed0ut
08-31-2009, 09:22 PM
Phalynx. I have one or 2 users on exception list (Due to them being RSS Bots) and no forums are on it. Do I need to take them off? I think I have ignore inactive users set to if that makes a difference.

Bleed0ut
08-31-2009, 09:24 PM
Just to verify I have one user disabled (Due to being a Bot) and Only Active Users set to Yes.
Thanks for any help.

Phalynx
09-01-2009, 07:35 AM
Is there any way that I can limit what types of points that my users give to each other? I only want them to be able to give custom points to each other.

The reason being is that I want the points for posts, etc. to be the way of measuring their experience, but I want the custom points to be their spendable money, as it's the only currency that's accepted in the shop.

Thanks, and great mod. My members absolutely love it. :)
Currently you need to edit the source. There is an internal exception list for that. Maybe I extend that so it is editable.

Phalynx. I have one or 2 users on exception list (Due to them being RSS Bots) and no forums are on it. Do I need to take them off? I think I have ignore inactive users set to if that makes a difference.
Very strange. Please provide me a temporary admin on your forum so I can take a further look.

Bleed0ut
09-01-2009, 04:18 PM
BTW, PM sent with temp admin info.

luan7749
09-01-2009, 07:15 PM
SO, I want to display what my members buy in shop on their Signature ? How can I Do that ?

intruder
09-01-2009, 07:26 PM
Is it possible to have a setting that gives different points for threads opened in certain sub-forums and for the whole activity of users in those sections?

For example, if I have a sub-forum called IT&Gadgets and certain users are always active there by writing reviews or getting involved into discussions, those users to receive higher points for their threads/reply given in that sub-forum than users active in others sub-forums like lets say "Funny things". What I want is a difference between the quality of threads/posts based on what subjects I want to be developed on the forum.

Also It would be pretty nice to have a button available for the staff directly on the forum and could be used just like giving infraction points, with the difference it will add experience points to the user for a certain thread/post.

Thank You,

Bleed0ut
09-01-2009, 09:22 PM
Just for more info on my bug (PPD of 0), If I set YES to Include Visitor posts (There is very very few on the whole site), I get a PPD of .5. If I also set YES to Include Social Group messages (Once again only just a handful on the whole site) I get a PPD of .6666666667. What I'm getting for this is the option for Include Posts isn't actually including any posts at all... So all its including is when i have Visitor and Social Group messages turned to YES. Otherwise I get a PPD of 0 because all I'm asking it to count is Posts, which for some reason it isn't.

BostWick-x
09-01-2009, 10:15 PM
Currently you need to edit the source. There is an internal exception list for that. Maybe I extend that so it is editable.


Please do. :)

How would I go about editing it manually though?

SEW810
09-02-2009, 01:53 AM
Originally Posted by Bleed0ut
Phalynx. I have one or 2 users on exception list (Due to them being RSS Bots) and no forums are on it. Do I need to take them off? I think I have ignore inactive users set to if that makes a difference.
Very strange. Please provide me a temporary admin on your forum so I can take a further look


Currently you need to edit the source. There is an internal exception list for that. Maybe I extend that so it is editable.


Very strange. Please provide me a temporary admin on your forum so I can take a further look.

Yeah pretty strange. I have, usergroups, users ID and forums ID on exception list an everything is working good :erm:

Phalynx
09-02-2009, 06:36 AM
SO, I want to display what my members buy in shop on their Signature ? How can I Do that ?
Yes, with settings in Experience: Shop you can set so items will be displayed in different places in postbit.

Is it possible to have a setting that gives different points for threads opened in certain sub-forums and for the whole activity of users in those sections?

For example, if I have a sub-forum called IT&Gadgets and certain users are always active there by writing reviews or getting involved into discussions, those users to receive higher points for their threads/reply given in that sub-forum than users active in others sub-forums like lets say "Funny things". What I want is a difference between the quality of threads/posts based on what subjects I want to be developed on the forum.
There is a plugin called Advanced Forums. With it you can set some settings depending of the forum.

Also It would be pretty nice to have a button available for the staff directly on the forum and could be used just like giving infraction points, with the difference it will add experience points to the user for a certain thread/post.

Thank You,
There is a button in the AdminCP, Experience, Manage Custom Points. Will think about addition to the user profile.


Just for more info on my bug (PPD of 0), If I set YES to Include Visitor posts (There is very very few on the whole site), I get a PPD of .5. If I also set YES to Include Social Group messages (Once again only just a handful on the whole site) I get a PPD of .6666666667. What I'm getting for this is the option for Include Posts isn't actually including any posts at all... So all its including is when i have Visitor and Social Group messages turned to YES. Otherwise I get a PPD of 0 because all I'm asking it to count is Posts, which for some reason it isn't.

Very strange. There was a bug in 3.8.4 Beta which has not counted users posts. But it has been fixed then.

Please do. :)

How would I go about editing it manually though?
Edit xperience.php, edit the line that begins with $gap_notallowed (it's at the top!)
Extend it with the column names that you don't want. The names you can find in the table xperience_stats.


Yeah pretty strange. I have, usergroups, users ID and forums ID on exception list an everything is working good :erm:

Thanks for helping me out :)

rugby
09-02-2009, 09:22 AM
is it possible to add activity codes in usercp and forumhome template? i tried to add, but it didnt worked.

Phalynx
09-02-2009, 09:58 AM
Please specify "activity codes".

Phalynx
09-02-2009, 10:44 AM
It's here! vBExperience 3.8.5 Beta 2 has arrived. It features promotions based on a xperience value that YOU can define. Experience, Tags, Posts, Friends - all can be used for a promotion to a higher usergroup.
Achievements are working the same way: Define the points that are needed to achieve them! Achievements are completing the idea behind the Awards.
A new tabbed interface will make it easy to navigate between the grown featureset.

Upgrade Instructions
1. Copy ALL (I mean ALL - That is a common error!) files from upload_via_ftp/ to the server.
2. ReImport product_vbexperience385.xml, allow overwrite
3. If you modified any of the vBExperience templates, revert them
4. Check all Awards, correct their URL to the new path /xperience/icons/. If you don't have custom awards, use the "clear award"-command to clear and re-create them.
5. Run AdminCP/Experience/Recount

History
3.8.5 Beta 2, 02nd September 2009
- Just a short note: Condition in Achievements and Promotions are calculated in POINTS, not in counts of items.
If you choose 10 Day, you must enter the points needed for this.
For example: You have an achievement for 10 days. You have set 2 points for every day since registering. Calculation: 10*2 = 20
You will have to set 20 as the condition.
- New tabbed interface. If you want to change the style, edit the template xperience_navbar_css
- Promotions now showing usergroups and conditions for a promotion to the next group
- You can import old vBExperience Legacy promotions (that were created within level.xml)
- Achievements in Profile
- Achievements below Avatar
- Several Beta 1 fixes

3.8.5 Beta 1, 28th August 2009
- Achievements!
- Promotions!
- Notification on Awards, Promotions and Achievements
- GAP: Empty pointfields will not be displayed anymore
- Activity: Showing percent values with a decimal
- Activities now also for users
- Awards below Avatar
- Default Awards are now also creating new category
- Shop: Fixed issue in not returning cash on sells
- Reworked Edit Shop Items

Todo for Beta 3:
- Download files with vBExperience as a credit system ("LDM Links and Downloads Manager", "DownloadsII")
- Activity eraser
- AdminCP Permissions
- Advanced User Permissions

gamerfu
09-02-2009, 10:53 AM
You are implementing (in BETA3) points for temp downloads?! :eek:

Oh yeah! :cool:

Do we have to use DownloadsII or LDM to use this feature or can we use the default vB download or does it incorporate all?

Phalynx
09-02-2009, 10:57 AM
It's almost done. The plugin for LDM/DLII is finished, the database can handle it - but it's missing an input field in the shop properties. It will follow then in Beta 3.

Beta 3 will be released in around 2 Weeks, because I'm on holidays next week.

matthewhotdude
09-02-2009, 12:51 PM
Do I Have to upgrade to the new beta to do this

Promotion system
To motivate users to do more on your forum I created the promotion system. By reaching defined xperience points the user will be moved to another usergroup - where you can set graphics, shadows, highlighting, etc... What is interesting in combination with this: you can give the user more possibilities f.e. larger avatars or bigger PM box. A log of the promotions is available.

I can't work out how to set this up

Phalynx
09-02-2009, 12:55 PM
If you can't work out, you need to upgrade to the Beta 2. Older versions are much more complicated (editing XML files). With 3.8.5 there is a GUI for that.

matthewhotdude
09-02-2009, 12:59 PM
Will upgrade now, As last t ime I tried the promotion it ended up pomoting all my banned users lol

Phalynx
09-02-2009, 01:14 PM
This will not happen with 3.8.5, as you define the group from which the user can promote to another.

Phalynx
09-02-2009, 02:13 PM
vBExperience won already "Mod Of The Month"-Award in March 2008.
Great News: vBExperience has been nominated for the Mod Of The Month September 2009!

It would be great to have your vote here:
https://vborg.vbsupport.ru/showthread.php?t=222194

mitch84
09-02-2009, 02:45 PM
voted!

RvG2
09-02-2009, 02:51 PM
vBEx deserved my vote. :)