Ultimate Points Extension
-
- Admin
- Posts: 5105
- Joined: 06 Apr 2014, 16:12
Re: Ultimate Points Extension
Issues have been noted and in general get fixed in next releases to sit and answer every one's issue one to one would be a full time job.
What works for one may not work for another all exts work when tested but we all dont have the same set up's hence some have issues and some not.
What works for one may not work for another all exts work when tested but we all dont have the same set up's hence some have issues and some not.

-
- Users
- Posts: 116
- Joined: 04 Feb 2021, 23:54
Re: Ultimate Points Extension
martin wrote: 13 May 2021, 05:08 Issues have been noted and in general get fixed in next releases to sit and answer every one's issue one to one would be a full time job.
What works for one may not work for another all exts work when tested but we all dont have the same set up's hence some have issues and some not.

-
- Users
- Posts: 5
- Joined: 08 May 2021, 00:09
Re: Ultimate Points Extension
I found a small cosmetic bug.
The message after a donation is not sent with the executed bb-code.
Example:
Congratulations
The recipient receives:
php: 7.2.34
phpBB: 3.3.4
Server: Apache
The message after a donation is not sent with the executed bb-code.
Example:
Congratulations
The recipient receives:
Code: Select all
[i]Congratulations[/i]
phpBB: 3.3.4
Server: Apache
-
- Users
- Posts: 5
- Joined: 08 May 2021, 00:09
Re: Ultimate Points Extension
I found a css conflict between Ultimate Points Extension and membertimecounter.
membertimecounter overwrite the css class ".column1" and ".column2" for UPE The tables with names and points are not displayed correctly this way. can someyone help me please?
----
To solve the problem in the UPE, I marked the CSS class with "!Important" and set .column2 to width: 40%.
UPE thus gets the correct width to display the names and membertimecounter also benefits from it
it works for me but I think there will be a better solution
membertimecounter overwrite the css class ".column1" and ".column2" for UPE The tables with names and points are not displayed correctly this way. can someyone help me please?
----
To solve the problem in the UPE, I marked the CSS class with "!Important" and set .column2 to width: 40%.
UPE thus gets the correct width to display the names and membertimecounter also benefits from it
it works for me but I think there will be a better solution
You do not have the required permissions to view the files attached to this post.
Last edited by xMaveeeX on 02 Jun 2021, 18:35, edited 1 time in total.
-
- Users
- Posts: 13
- Joined: 24 May 2020, 21:00
Re: Ultimate Points Extension
I was wondering if this extension will ever get a shop feature at some point, because I don't want to switch to Advanced Point System! I want to stay with Ultimate Points! 
-
- Users
- Posts: 5
- Joined: 08 May 2021, 00:09
Re: Ultimate Points Extension
I don't want to switch either, this extension is so much better of the possibilities.Tiger21820 wrote: 04 Jun 2021, 14:27 I was wondering if this extension will ever get a shop feature at some point, because I don't want to switch to Advanced Point System! I want to stay with Ultimate Points!![]()
I read that the shop should come one day, but that it is not high in the priority of development.
Makes me a little sad, I'm really waiting for it.
-
- Users
- Posts: 5
- Joined: 08 May 2021, 00:09
Re: Ultimate Points Extension
Possible improvement?
Wouldn't it make more sense, if you could see on the robbery page, how many points the stolen one has?
At the moment the page shows how many points you have, but I think that's less interesting
Wouldn't it make more sense, if you could see on the robbery page, how many points the stolen one has?
At the moment the page shows how many points you have, but I think that's less interesting
-
- Users
- Posts: 71
- Joined: 22 Jan 2017, 15:39
Re: Ultimate Points Extension
I did those above changes and it seemed to work. But I reseted everything and started this ext new.
The Jackpot holds 50 cash inside even if it should be empty and set to 0
If I do 7 days I still got display as time -> array-
And the worst thing I try to open new bank accounts all I got i an ! and no bank account open, no matter what kind of settings I try to do. But I will be stay on this and testing too at our testboard.
The Jackpot holds 50 cash inside even if it should be empty and set to 0
If I do 7 days I still got display as time -> array-
And the worst thing I try to open new bank accounts all I got i an ! and no bank account open, no matter what kind of settings I try to do. But I will be stay on this and testing too at our testboard.
-
- Users
- Posts: 71
- Joined: 22 Jan 2017, 15:39
Re: Ultimate Points Extension
Those 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.
-
- Founder
- Posts: 6429
- Joined: 13 Jan 2014, 21:45
Re: Ultimate Points Extension
First post updated.
-
- Users
- Posts: 141
- Joined: 11 Jul 2015, 11:08
-
- Users
- Posts: 6
- Joined: 16 Nov 2019, 18:40
Re: Ultimate Points Extension
Here I do not display it correctly.
Merlino
This variable is not read correctly.

You do not have the required permissions to view the files attached to this post.
Last edited by Merlino on 04 Oct 2021, 22:57, edited 1 time in total.
-
- Users
- Posts: 6
- Joined: 16 Nov 2019, 18:40
Re: Ultimate Points Extension
Should read this amount:
Merlino
You do not have the required permissions to view the files attached to this post.
-
- Users
- Posts: 5
- Joined: 16 Apr 2020, 09:43
Re: Ultimate Points Extension
I have a question. For members with a lot of points, how to I shorten it to K, M, B etc?
-
- Users
- Posts: 32
- Joined: 01 May 2016, 09:48
Re: Ultimate Points Extension
Hello
I love your extension.
I use it on ma role game forum and i have que question.
Can you tel me if a shop link to ultimate points Extension will be created?
Thank you
I love your extension.
I use it on ma role game forum and i have que question.
Can you tel me if a shop link to ultimate points Extension will be created?
Thank you