3.2 & 3.3 Extensions Database 3.2 / 3.3Ultimate Points Extension

<span class="qte-attr qte_32_33-qte">3.2.x & 3.3.x</span>
Previous topicNext topic
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

Hitomi
Users
Users
Status: Offline
User theme: Dark
Posts: 18
Joined: Mar 13th, '20, 16:53
    Windows 10 Chrome

Re: Ultimate Points Extension

Post by Hitomi »

Is there a way to show user lifetime total points?

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

nncuong
New user
New user
Status: Offline
User theme: Dark
Posts: 1
Joined: Nov 14th, '24, 06:09
    Windows 10 Chrome

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

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

eunaumtenhoid
Users
Users
Status: Offline
User theme: Dark
Posts: 67
Joined: Oct 14th, '16, 03:10
    Windows 10 Chrome

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

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

ninouee
Donator
Donator
Status: Offline
User theme: Dark
Posts: 32
Joined: May 1st, '16, 07:48
    Android Chrome

Re: Ultimate Points Extension

Post by ninouee »

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

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

Tiger21820
Users
Users
Status: Offline
User theme: Dark
Posts: 13
Joined: May 24th, '20, 19:00
    Windows 10 Firefox

Re: Ultimate Points Extension

Post by Tiger21820 »

Hitomi wrote: Nov 5th, '24, 08: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!

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

Topic Author
dmzx
Founder
Founder
Status: Offline
User theme: Dark
Posts: 6486
Joined: Jan 13th, '14, 20:45
    Windows 10 Chrome

Re: Ultimate Points Extension

Post by dmzx »

First post updated.

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

SpIdErPiGgY
Users
Users
Status: Offline
User theme: Dark
Posts: 121
Joined: Feb 4th, '21, 22:54
    Windows 10 Firefox

Re: Ultimate Points Extension

Post by SpIdErPiGgY »

dmzx wrote: Jan 16th, '25, 07:27First post updated.
There is still an issue. Please look at: Ultimate Points Extension

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! Maybe your post count is too low.
🌐 phpBB Extensions in Dutch
✦ Free translations, updates, support and practical tutorials for phpBB.
💚 Support this project on Ko-fi

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

xMaveeeX
Users
Users
Status: Offline
User theme: Dark
Posts: 5
Joined: May 7th, '21, 22:09
    Windows 10 Opera

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

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

Sniper_E
VIP
VIP
Status: Offline
User theme: Dark
Posts: 1160
Joined: Oct 14th, '14, 17:01
    Windows 10 Chrome

Re: Ultimate Points Extension

Post by Sniper_E »

SpIdErPiGgY wrote: Jan 16th, '25, 19: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!™

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

SpIdErPiGgY
Users
Users
Status: Offline
User theme: Dark
Posts: 121
Joined: Feb 4th, '21, 22:54
    Android Firefox

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 😁

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

Ketchup
Users
Users
Status: Offline
User theme: Dark
Posts: 21
Joined: Jan 16th, '16, 08:13
    Windows 10 Firefox

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.

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

Interesting
Users
Users
Status: Offline
User theme: Dark
Posts: 6
Joined: Jun 13th, '25, 15:33
    Windows 10 Chrome

Re: Ultimate Points Extension

Post by Interesting »

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

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

martin
Admin
Admin
Status: Offline
User theme: Dark
Posts: 5132
Joined: Apr 6th, '14, 14:12
    Windows 10 Chrome

Re: Ultimate Points Extension

Post by martin »

Look for /ext/dmzx/ultimatepoints
Image

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

Interesting
Users
Users
Status: Offline
User theme: Dark
Posts: 6
Joined: Jun 13th, '25, 15:33
    Mac OS X iPhone

Re: Ultimate Points Extension

Post by Interesting »

martin wrote: Jun 13th, '25, 15:58 Look for /ext/dmzx/ultimatepoints


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

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

Interesting
Users
Users
Status: Offline
User theme: Dark
Posts: 6
Joined: Jun 13th, '25, 15:33
    Windows 10 Chrome

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.

Previous topicNext topic

Subscribers

User avatar
AlvoErrado2
User avatar
Anders
User avatar
artplat17
User avatar
Azaman
User avatar
benchess
User avatar
Bingo
User avatar
Brunchs
User avatar
capalex65
User avatar
cemorhon
User avatar
cgartfactory
User avatar
CharLee
User avatar
chrisc93
User avatar
Coryu
User avatar
Crajkaro
User avatar
cyberpaul
User avatar
dani50
User avatar
darkz
User avatar
dathwerth
User avatar
Dead Man
User avatar
ditch
User avatar
dmzx
User avatar
Dopply
User avatar
EaglesTruth
User avatar
Emmer
User avatar
Encule
User avatar
eunaumtenhoid
User avatar
exemplary
User avatar
faroud
User avatar
fastgil.com
User avatar
Fredisland
User avatar
g0lang
User avatar
gamestnforum
User avatar
Ghost
User avatar
Gratiano
User avatar
Hareon
User avatar
Herman
User avatar
heyokajan
User avatar
hiriu
User avatar
Hitomi
User avatar
hungnhhn
User avatar
Interesting
User avatar
iosis7613
User avatar
ironside
User avatar
ivailo95
User avatar
jan_2017
User avatar
Joost
User avatar
Josephpo
User avatar
JustAlpha
User avatar
Kakagawa
User avatar
Kami-sama
User avatar
kangeroe
User avatar
kaspir
User avatar
kel
User avatar
Ketchup
User avatar
kikuya
User avatar
killfrenzy
User avatar
LegendPH
User avatar
lenz
User avatar
lgmf
User avatar
lichang422
User avatar
limp8976
User avatar
little
User avatar
Lonson
User avatar
luca17000
User avatar
Maclobster
User avatar
martin
User avatar
mati4458
User avatar
Merlino
User avatar
Micha
User avatar
Midway
User avatar
Mike.RO
User avatar
miri4ever
User avatar
mortalites
User avatar
mulano77
User avatar
muzair
User avatar
Naija
User avatar
NAPWR
User avatar
ninouee
User avatar
nncuong
User avatar
odpro
User avatar
oronzocanà
User avatar
Patitoloko
User avatar
petejb
User avatar
picaron
User avatar
ramboagent
User avatar
ramp
User avatar
Red777
User avatar
redragon
User avatar
Restless Rancor
User avatar
riofriz
User avatar
Robbie626
User avatar
roiebh
User avatar
Rootzilla
User avatar
RTI kartname
User avatar
SalyaDarken
User avatar
schupacek
User avatar
scriptman
User avatar
seacoast
User avatar
Shyuan
User avatar
simplejiro
User avatar
skuadsco
User avatar
Sniper_E
User avatar
SpIdErPiGgY
User avatar
spiritatbay
User avatar
Stellarfriend
User avatar
Stine
User avatar
SupplyNDemand
User avatar
Tarantino
User avatar
theia
User avatar
tiboo55
User avatar
tnt
User avatar
umi
User avatar
v1rtu0so
User avatar
Venatus Vinco
User avatar
Vito875
User avatar
Voice4Vision
User avatar
weblord
User avatar
WildestDrake
User avatar
WISHEXEC
User avatar
xMaveeeX
User avatar
xvi
User avatar
Yemmy
User avatar
YoOoster
User avatar
zhangla
User avatar
[Mikk]