Ultimate Points Extension

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

Hitomi
Users
Users
Posts: 18
Joined: 13 Mar 2020, 17:53

Re: Ultimate Points Extension

Post by Hitomi »

Is there a way to show user lifetime total points?

User avatar

nncuong
New user
New user
Posts: 1
Joined: 14 Nov 2024, 07:09

Re: Ultimate Points Extension

Post by nncuong »

Awesome, I used unimate point with phpBB 3.0. I had to give it up when upgrading to 3.1. I just found this upgrade extension again now

User avatar

eunaumtenhoid
Users
Users
Posts: 65
Joined: 14 Oct 2016, 05:10

Re: Ultimate Points Extension

Post by eunaumtenhoid »

It would be really cool for ultimate points to be compatible with thanks for posts, so the user who made the post gains x points for each thank you received

An ultimate shop would also be welcome, which could have digital items that would provide new options on the forum, such as access to the group, remove warnings, number of raffles, change username, among others. each of these features could be sold separately

User avatar

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

Re: Ultimate Points Extension

Post by ninouee »

Forum game forums, the point and shop can be very interesting.
I can pay for it. 😀

User avatar

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

Re: Ultimate Points Extension

Post by Tiger21820 »

Hitomi wrote: 05 Nov 2024, 09:08 Is there a way to show user lifetime total points?
The extension does keep track of the total points that a user has deposited and withdrawn from their bank account in the SQL database (phpbb_points_bank: totalwithdrew & totaldeposit), but the extension doesn't display it, unfortunately! You'd have to make modifications to the extension to display those specific columns!

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

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

Re: Ultimate Points Extension

Post by SpIdErPiGgY »

dmzx wrote: 16 Jan 2025, 08:27First post updated.
There is still an issue. Please look at: viewtopic.php?p=32087#p32087

And in: ultimatepoints.css

Code: Select all

#cp-menu {
    float: left;
    width: 19%;
    margin-top: 1em;
    margin-bottom: 5px;
}

#cp-main {
    float: left;
    width: 81%;
}
Is messing up layout in mobile view (PM)

Screenshot_20250116_203457_Firefox Beta.jpg

When I remove that css code, it look normal.

Screenshot_20250116_203507_Firefox Beta.jpg
You do not have the required permissions to view the files attached to this post.
Image

User avatar

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

Re: Ultimate Points Extension

Post by xMaveeeX »

Thank you so much for making this former modification available as an extension.
This is an amazing piece of work, and I even shed a tear when I saw it.

I noticed that in phpBB 3.3, there is no longer a page confirming that a post has been saved. This was also the page where you could see how many points you earned for a post.

If I may make a suggestion — would it be possible to add the earned points as a log/record under /ucp.php?i=-dmzx-ultimatepoints-ucp-ucp_ultimatepoints_module? That way, there would at least be some form of traceability.

I would be really happy if this could be implemented.

Wishing everyone a great weekend! :)

User avatar

Sniper_E
VIP
VIP
Posts: 1157
Joined: 14 Oct 2014, 19:01

Re: Ultimate Points Extension

Post by Sniper_E »

SpIdErPiGgY wrote: 16 Jan 2025, 20:38In the ultimatepoints.css

Code: Select all

#cp-menu {
    float: left;
    width: 19%;
    margin-top: 1em;
    margin-bottom: 5px;
}

#cp-main {
    float: left;
    width: 81%;
}
Is messing up layout in mobile view (PM). When I remove that css code, it look normal.
I looked in prosilver/theme/cp.css and saw the identical varibles in the .cp-menu class and in the .cp-main class.
Of course I'm guessing dm is using a #id instead of a .class in a template somewhere for those. I don't have this ext so I don't know.

I would say remove that css from the ultimatepoints.css file if it doesn't mess anything elsewhere up,
Or wrap them with this @media below.

Code: Select all

@media (min-width: 701px) {
	#cp-menu {
		float: left;
		width: 19%;
		margin-top: 1em;
		margin-bottom: 5px;
	}
	
	#cp-main {
		float: left;
		width: 81%;
	}
}
Image
No is NEVER an Option and NEVER is the only Option when it comes to Giving Up!™

User avatar

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

Re: Ultimate Points Extension

Post by SpIdErPiGgY »

I just removed the code from ultimatue points css file, and it's okay like that. No problemo 😁
Image

User avatar

Ketchup
Users
Users
Posts: 21
Joined: 16 Jan 2016, 09:13

Re: Ultimate Points Extension

Post by Ketchup »

Does this have the ability to use a BBCode to hide content and they have to pay for it?

I didn't see it in the main post, sorry if this is has been asked before.

User avatar

Interesting
Users
Users
Posts: 6
Joined: 13 Jun 2025, 17:33

Re: Ultimate Points Extension

Post by Interesting »

When I go to install Ultimate Points, there is not Ultimate Points folder.

User avatar

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

Re: Ultimate Points Extension

Post by martin »

Look for /ext/dmzx/ultimatepoints
Image

User avatar

Interesting
Users
Users
Posts: 6
Joined: 13 Jun 2025, 17:33

Re: Ultimate Points Extension

Post by Interesting »

martin wrote: 13 Jun 2025, 17:58 Look for /ext/dmzx/ultimatepoints


That’s not in the folder when I download it.

User avatar

Interesting
Users
Users
Posts: 6
Joined: 13 Jun 2025, 17:33

Re: Ultimate Points Extension

Post by Interesting »

I also looked on the GitHub link that I had found regarding this, I could not find an ultimatepoints folder.

Post Reply