3.2 & 3.3 Extensions Database 3.2 / 3.3 ⇒ Ultimate Points Extension
-
Hareon
- New user

- Posts: 4
- Joined: 13 Dec 2023, 03:48
Re: Ultimate Points Extension
This is an awesome feature. I'll try to translate this extension to brazilian portuguese.
I I also gave some ideas for the shop on the extension's github. I would love to see this extension evolve more and more. It's the feature I always wanted in a forum. I hope you continue to develop, I would really appreciate it!
Edit: Will be nice an integration with Profile Flair. So, at shop, we would buy some flairs as Items too.
PS.: I already translated UPE to pt_BR, but I don't know where can I post it.
I I also gave some ideas for the shop on the extension's github. I would love to see this extension evolve more and more. It's the feature I always wanted in a forum. I hope you continue to develop, I would really appreciate it!
Edit: Will be nice an integration with Profile Flair. So, at shop, we would buy some flairs as Items too.
PS.: I already translated UPE to pt_BR, but I don't know where can I post it.
Last edited by Hareon on 20 Dec 2023, 05:18, edited 1 time in total.
-
Sniper_E
- VIP

- Posts: 1161
- Joined: 14 Oct 2014, 19:01
Re: Ultimate Points Extension
You post your translation in this topic like this guy did.
Ultimate Points Extension
-
Lonson
- New user

- Posts: 1
- Joined: 21 Dec 2023, 21:42
Re: Ultimate Points Extension
Good afternoon.
Version 1.2.7 on phpbb 3.3.8
My conference requires points to be awarded (for creating a topic and for creating a message) in all topics except one. In it they should be taken away (for creating a topic and for creating a message).
Points are successfully added according to the settings, but are not subtracted according to the same settings.
Can you help me fix it?
Later:
The issue was resolved through the settings in the forum group rights
Version 1.2.7 on phpbb 3.3.8
My conference requires points to be awarded (for creating a topic and for creating a message) in all topics except one. In it they should be taken away (for creating a topic and for creating a message).
Points are successfully added according to the settings, but are not subtracted according to the same settings.
Can you help me fix it?
Later:
The issue was resolved through the settings in the forum group rights
Last edited by Lonson on 22 Dec 2023, 03:48, edited 1 time in total.
-
Hareon
- New user

- Posts: 4
- Joined: 13 Dec 2023, 03:48
Re: Ultimate Points Extension
Brazilian Portuguese for the lastest version 1.2.7
When the extension updates, I'll update the translation too.
When the extension updates, I'll update the translation too.
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.
Last edited by Hareon on 22 Dec 2023, 23:30, edited 1 time in total.
-
fastgil.com
- Users

- Posts: 20
- Joined: 17 Sep 2019, 19:10
Re: Ultimate Points Extension
Good morning,
I have the points that are taken away from all forum administrators instead of giving them.
For members it works correctly.
But in my ACP even if I have the Fr language file, it appears like this, see below
edit
I corrected the bug of the points which are withdrawn from the administrators, it was a bad configuration because of the misunderstanding of the forum ACP file
Paramètres généraux du forum
FORUM_POINT_SETTINGS
FORUM_POINT_SETTINGS_EXPLAIN
FORUM_PERTOPIC :
FORUM_PERTOPIC_EXPLAIN
FORUM_PERPOST :
FORUM_PERPOST_EXPLAIN
FORUM_PEREDIT :
FORUM_PEREDIT_EXPLAIN
FORUM_COST :
FORUM_COST_EXPLAIN
FORUM_COST_TOPIC :
FORUM_COST_TOPIC_EXPLAIN
FORUM_COST_POST :
FORUM_COST_POST_EXPLAIN
Thank you for your help
forum phpbb 3.3.11
extension 1.2.7
I have the points that are taken away from all forum administrators instead of giving them.
For members it works correctly.
But in my ACP even if I have the Fr language file, it appears like this, see below
edit
I corrected the bug of the points which are withdrawn from the administrators, it was a bad configuration because of the misunderstanding of the forum ACP file
Paramètres généraux du forum
FORUM_POINT_SETTINGS
FORUM_POINT_SETTINGS_EXPLAIN
FORUM_PERTOPIC :
FORUM_PERTOPIC_EXPLAIN
FORUM_PERPOST :
FORUM_PERPOST_EXPLAIN
FORUM_PEREDIT :
FORUM_PEREDIT_EXPLAIN
FORUM_COST :
FORUM_COST_EXPLAIN
FORUM_COST_TOPIC :
FORUM_COST_TOPIC_EXPLAIN
FORUM_COST_POST :
FORUM_COST_POST_EXPLAIN
Thank you for your help
forum phpbb 3.3.11
extension 1.2.7
-
exemplary
- Users

- Posts: 4
- Joined: 03 Mar 2024, 11:09
Re: Ultimate Points Extension
Great extension. Right now trying out on localhost and works perfectly on version 3.3.11.
I have a question : How do I hide THE RICHEST BANKER in user's Points control panel under Bank Name option ?
I have a question : How do I hide THE RICHEST BANKER in user's Points control panel under Bank Name option ?
-
exemplary
- Users

- Posts: 4
- Joined: 03 Mar 2024, 11:09
Re: Ultimate Points Extension
Another question : how do you hide bank name balance on user profile shown on forum topics ?
-
schupacek
- New user

- Posts: 1
- Joined: 27 Mar 2024, 11:10
Re: Ultimate Points Extension
Is it possible for a user to pay (points) to join a group? autogroup accept the user automatically when you reach a certain number of points, but the points will remain, I would like users to be able to pay for a group .. so that I can set which groups and which points in acp
I hope you understand what I mean, sorry for my english
I hope you understand what I mean, sorry for my english
-
Azaman
- Users

- Posts: 4
- Joined: 15 Apr 2023, 20:22
Re: Ultimate Points Extension
Dear users, in case you desire to have the GLOBAL TOTAL NUMBER OF POINTS IN HAND HELD BY your members, use the following code:
Open: .../points_main.php
Find: // Generate richest users
Add Before:
Find: 'POINTS_MOST_RICH_USERS' => sprintf($this->user->lang['POINTS_MOST_RICH_USERS'], $points_values['number_show_top_points']),
Add After (New line):
And finally, in your html template, you can insert {{ TOTAL_USERS_POINTS }} anywhere to display the global total points in hand.
Cheers.
Open: .../points_main.php
Find: // Generate richest users
Add Before:
Code: Select all
// Generate total users points - CUSTOM
$sql_array = [
'SELECT' => 'SUM(user_points) AS total_users_points',
'FROM' => [
USERS_TABLE => 'u',
],
'WHERE' => 'user_points > 0',
];
$sql = $this->db->sql_build_query('SELECT', $sql_array);
$result = $this->db->sql_query_limit($sql, $limit);
$total_users_points = (int) $this->db->sql_fetchfield('total_users_points');
$this->db->sql_freeresult($result);Find: 'POINTS_MOST_RICH_USERS' => sprintf($this->user->lang['POINTS_MOST_RICH_USERS'], $points_values['number_show_top_points']),
Add After (New line):
Code: Select all
'TOTAL_USERS_POINTS' => sprintf($this->functions_points->number_format_points($total_users_points)),Cheers.
-
Azaman
- Users

- Posts: 4
- Joined: 15 Apr 2023, 20:22
Re: Ultimate Points Extension
SOLVED"miri4ever wrote: 18 Jul 2021, 23:12Those changes seems first to be working fine and all the display was correct and working. But now we reset everything and needed to open new bank accounts. And with the orginal 1.26 Version all is fine if we overlook this wrong display of money inside the bank. But if those modifications inside it's not possbiel to open new Bank Accounts.picaron wrote: 22 Apr 2021, 03:11 Hello, there are several errors that prevent users from viewing the bank balance.
/core/points_bank.php (Lines 211 and 212)Fixed by replacing withCode: Select all
$fees = (is_array($row) && $row['fees']); $holding = (is_array($row) && $row['holding']);Code: Select all
$fees = (is_array($row) && $row['fees']) ? $row['fees'] : 0; $holding = (is_array($row) && $row['holding']) ? $row['holding'] : 0;
/core/points_bank.php (Lines 274)Fixed by replacing withCode: Select all
$holding = (is_array($row) && $row['holding']);Code: Select all
$holding = (is_array($row) && $row['holding']) ? $row['holding'] : 0;
/core/points_main.php (Lines 167)Fixed by replacing withCode: Select all
'L_MAIN_BANK_HAVE' => sprintf($this->user->lang['MAIN_BANK_HAVE'], $this->functions_points->number_format_points(is_array($row) && $row['holding']), $this->config['points_name']),Code: Select all
'L_MAIN_BANK_HAVE' => sprintf($this->user->lang['MAIN_BANK_HAVE'], $this->functions_points->number_format_points($row['holding']), $this->config['points_name']),![]()
![]()
I just got a ! display if wanted to open new accountsa and nothing is done. I could reproduce this error on two boards and with the original files all was working normal.
Do not do the edit for line 274. Not necessary. It is whats blocking account creation.
Ignore or undo this edit:
You will be able to create new bank accounts while still displaying bank balances./core/points_bank.php (Lines 274)
CODE: SELECT ALL
$holding = (is_array($row) && $row['holding']);
Fixed by replacing with
CODE: SELECT ALL
$holding = (is_array($row) && $row['holding']) ? $row['holding'] : 0;
Cheers
-
fastgil.com
- Users

- Posts: 20
- Joined: 17 Sep 2019, 19:10
Re: Ultimate Points Extension
I'm updating this message a little, and I'm taking advantage of it because I have another problem and it may be related to permissions, administrators lose points when they post in all the forums, but not membersfastgil.com wrote: 01 Mar 2024, 16:16 Good morning,
I have the points that are taken away from all forum administrators instead of giving them.
For members it works correctly.
But in my ACP even if I have the Fr language file, it appears like this, see below
edit
I corrected the bug of the points which are withdrawn from the administrators, it was a bad configuration because of the misunderstanding of the forum ACP file
Paramètres généraux du forum
FORUM_POINT_SETTINGS
FORUM_POINT_SETTINGS_EXPLAIN
FORUM_PERTOPIC :
FORUM_PERTOPIC_EXPLAIN
FORUM_PERPOST :
FORUM_PERPOST_EXPLAIN
FORUM_PEREDIT :
FORUM_PEREDIT_EXPLAIN
FORUM_COST :
FORUM_COST_EXPLAIN
FORUM_COST_TOPIC :
FORUM_COST_TOPIC_EXPLAIN
FORUM_COST_POST :
FORUM_COST_POST_EXPLAIN
Thank you for your help
forum phpbb 3.3.11
extension 1.2.7
Thanks for your help
-
fastgil.com
- Users

- Posts: 20
- Joined: 17 Sep 2019, 19:10
Re: Ultimate Points Extension
Thank you so much
if you can also tell me, why do administrators lose points when they post a message?
Thanks again to you
-
Midway
- Translators

- Posts: 115
- Joined: 08 Dec 2014, 10:27
Re: Ultimate Points Extension
It depends on your configration in the acp
-
SpIdErPiGgY
- Users

- Posts: 123
- Joined: 04 Feb 2021, 23:54
Re: Ultimate Points Extension
NL translation: https://www.myarea51secrets.com/viewtop ... p=106#p106
✦ 🌐 phpBB Extensions in Dutch
✦ Free translations, updates, support and practical tutorials for phpBB.
✦ 💚 Support this project on Ko-fi
✦ Free translations, updates, support and practical tutorials for phpBB.
✦ 💚 Support this project on Ko-fi
