Ultimate Points Extension

<span class="qte-attr qte_32_33-qte">3.2.x & 3.3.x</span>
Post Reply
User avatar

martin
Admin
Admin
Posts: 5105
Joined: 06 Apr 2014, 16:12

Re: Ultimate Points Extension

Post by martin »

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

User avatar

SpIdErPiGgY
Users
Users
Posts: 116
Joined: 04 Feb 2021, 23:54

Re: Ultimate Points Extension

Post by SpIdErPiGgY »

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.
:tumbsyes: Then I wait for new release
Image

User avatar

xMaveeeX
Users
Users
Posts: 5
Joined: 08 May 2021, 00:09

Re: Ultimate Points Extension

Post by xMaveeeX »

I found a small cosmetic bug.
The message after a donation is not sent with the executed bb-code.

Example:
Congratulations

The recipient receives:

Code: Select all

[i]Congratulations[/i]
php: 7.2.34
phpBB: 3.3.4
Server: Apache

User avatar

xMaveeeX
Users
Users
Posts: 5
Joined: 08 May 2021, 00:09

Re: Ultimate Points Extension

Post by xMaveeeX »

I found a css conflict between Ultimate Points Extension and membertimecounter.

membertimecounter overwrite the css class ".column1" and ".column2" for UPE
Bild_2021-06-02_180315.png
The tables with names and points are not displayed correctly this way.
Bild_2021-06-02_180221.png
can someyone help me please? :cry:
----

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.

User avatar

Tiger21820
Users
Users
Posts: 13
Joined: 24 May 2020, 21:00

Re: Ultimate Points Extension

Post by Tiger21820 »

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

User avatar

xMaveeeX
Users
Users
Posts: 5
Joined: 08 May 2021, 00:09

Re: Ultimate Points Extension

Post by xMaveeeX »

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! :D
I don't want to switch either, this extension is so much better of the possibilities.
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.

User avatar

xMaveeeX
Users
Users
Posts: 5
Joined: 08 May 2021, 00:09

Re: Ultimate Points Extension

Post by xMaveeeX »

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

User avatar

miri4ever
Users
Users
Posts: 71
Joined: 22 Jan 2017, 15:39

Re: Ultimate Points Extension

Post by miri4ever »

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.

User avatar

miri4ever
Users
Users
Posts: 71
Joined: 22 Jan 2017, 15:39

Re: Ultimate Points Extension

Post by miri4ever »

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)

Code: Select all

$fees = (is_array($row) && $row['fees']);
$holding = (is_array($row) && $row['holding']);
Fixed by replacing with

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)

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;

/core/points_main.php (Lines 167)

Code: 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']),
Fixed by replacing with

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']),
:beers: :tumbsyes:
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.

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.

User avatar

Topic Author
dmzx
Founder
Founder
Posts: 6429
Joined: 13 Jan 2014, 21:45

Re: Ultimate Points Extension

Post by dmzx »

First post updated.


User avatar

Merlino
Users
Users
Posts: 6
Joined: 16 Nov 2019, 18:40

Re: Ultimate Points Extension

Post by Merlino »

Here I do not display it correctly.
Immagine 2021-09-26 220747.png
02.PNG
This variable is not read correctly.
Immagine 2021-10-04 223929.png
:thankyou:Merlino
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.

User avatar

Merlino
Users
Users
Posts: 6
Joined: 16 Nov 2019, 18:40

Re: Ultimate Points Extension

Post by Merlino »

Should read this amount:
Immagine 2021-10-04 224115.png
:roll:Merlino
You do not have the required permissions to view the files attached to this post.

User avatar

SalyaDarken
Users
Users
Posts: 5
Joined: 16 Apr 2020, 09:43

Re: Ultimate Points Extension

Post by SalyaDarken »

I have a question. For members with a lot of points, how to I shorten it to K, M, B etc?

User avatar

ninouee
Users
Users
Posts: 32
Joined: 01 May 2016, 09:48

Re: Ultimate Points Extension

Post by ninouee »

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

Post Reply