[ABD] Ultimate Points

Any abandoned Extensions will be moved to this forum.

WARNING: Extensions in this forum are not currently being supported or maintained by the original Extension author. Proceed at your own risk.
Forum rules
IMPORTANT: Extension Development Forum rules

WARNING: Extensions in this forum are not currently being supported nor updated by the original Extension author. Proceed at your own risk.
Jeleus
Registered User
Posts: 56
Joined: Wed May 07, 2014 5:48 pm

Re: [BETA] Ultimate Points

Post by Jeleus »

Hi. Why i cannot see anything there ? Image
I set up the permisions.
The modules are also enabled.
TDCJTalk
Registered User
Posts: 1
Joined: Sat Feb 27, 2016 12:46 pm

Re: [BETA] Ultimate Points

Post by TDCJTalk »

Why does no link appear in the header for the Ultimate Points Control Panel?
User avatar
paulvill76
Registered User
Posts: 83
Joined: Tue Dec 06, 2011 2:51 am
Location: Brno , Czech Republic
Name: Pablo Villaronga

Re: [BETA] Ultimate Points

Post by paulvill76 »

Thanks ! Trying to implement in my forum
User avatar
dmzx
Registered User
Posts: 853
Joined: Fri Sep 05, 2014 6:48 am
Location: The Netherlands

Re: [BETA] Ultimate Points

Post by dmzx »

Update version 1.1.2

Code update.
Contact me on dmzx-web.net
Buy me a beer Donate and try binance.com or try CentOS Web Panel
chfs
Registered User
Posts: 247
Joined: Mon Feb 04, 2013 10:01 am

Re: [BETA] Ultimate Points

Post by chfs »

Hi, good extension ;)

but it will be compatible with the server MiriaDB? Thanks.
I'm sorry for my english. :?
User avatar
Rhino.Freak
Registered User
Posts: 275
Joined: Wed Apr 29, 2015 8:32 am

Re: [BETA] Ultimate Points

Post by Rhino.Freak »

dmzx wrote:Update version 1.1.2

Code update.
Where is it? Can't see it on the first post. What's new in the update?
User avatar
dmzx
Registered User
Posts: 853
Joined: Fri Sep 05, 2014 6:48 am
Location: The Netherlands

Re: [BETA] Ultimate Points

Post by dmzx »

Rhino.Freak wrote:
dmzx wrote:Update version 1.1.2

Code update.
Where is it? Can't see it on the first post. What's new in the update?

I cannot update first post but download link from github is correct.
Update the code.
Download
Contact me on dmzx-web.net
Buy me a beer Donate and try binance.com or try CentOS Web Panel
User avatar
Mooncow
Registered User
Posts: 263
Joined: Tue Feb 25, 2003 8:10 am
Location: This Post

Re: [BETA] Ultimate Points

Post by Mooncow »

I started to work on a points mod myself (without robbery or bank) based on the ultimate points mod, but you guy have progressed way further than me and done a better job so I'm jumping ship here!

How far are you away from a phpbb database release?
And also, i'm trying to keep the points from the old version for my users - I can just skip the database overwrite for that part right? I'm assuming you kept the same table names :mrgreen:
I love teh phpBB
testingground
Registered User
Posts: 184
Joined: Thu Apr 21, 2016 10:59 am

Re: [BETA] Ultimate Points

Post by testingground »

Hi,

I have a webpage that isnt within my phpbb forum.
This webpage is a simple blackjack game.
I have managed to grab the ultimate points balance per user and implement it as a balance in my game.
Problem is how do I get the backjack final balance (when you finished playing etc) back into the ultimate points balance in the forum?

What I mean is:

user has 3000 UP in forum.
Clicks on link in forum to go to website with game and UP balance is copied across, so user has 3000 UP to play with.
After they have finished the game they click a button to exit and that also transfers the new UP balance from the game into the forum UP and updates it, so if the user has won and their balance is now 4000, when they go back to the forum their UP balance is updated from 3000 to 4000

Thanks
testingground
Registered User
Posts: 184
Joined: Thu Apr 21, 2016 10:59 am

Re: [BETA] Ultimate Points

Post by testingground »

This is what worked on my old 3.0 board:

Code: Select all

<?php
/* First, get userpoints passed in URL from JavaScript section of main custom page 'bjack_new_session.php' */
$points=$_GET['newPoints'];

/* Begin Second Custom Page set up */
define('IN_PHPBB', true);
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);

/* Start session management */
$user->session_begin();
$auth->acl($user->data);
$user->setup();
$userid = $user->data['user_id'];
$username = $user->data['username'];
$userpoints = $user->data['user_points'];


/* Update DB userpoints for the current user only*/
$sql_arr = array(
    'user_points'    => $points,
);

$sql = 'UPDATE ' . USERS_TABLE . ' SET ' . $db->sql_build_array('UPDATE', $sql_arr) . '
    WHERE user_id = ' . (int) $userid;
$db->sql_query($sql);

/* Close the DB connection after every update */
mysql_close();

?>
Can anyone help please?
testingground
Registered User
Posts: 184
Joined: Thu Apr 21, 2016 10:59 am

Re: [BETA] Ultimate Points

Post by testingground »

Can anyone help me with this?
silberfuchs
Registered User
Posts: 36
Joined: Mon Oct 27, 2008 6:17 pm

Re: [BETA] Ultimate Points

Post by silberfuchs »

Is there any chance to get this extension working with JV-Arcade from Killbill? I know that there is an own oint system from Bill but I really would like to use all the "other" features from UP e.g. lottery .....
Paul
Infrastructure Team Leader
Infrastructure Team Leader
Posts: 28842
Joined: Sat Dec 04, 2004 3:44 pm
Location: The netherlands.
Name: Paul Sohier

Re: [ABD] Ultimate Points

Post by Paul »

This topic has been marked as [ABD] - Abandoned as the extension author has not been active recently. If the extension author wishes to continue development, please PM anyone on the Extensions Team to request this topic be unlocked.

Notice!
We do not recommend that a user of the phpBB software install this extension, or any other extension that is marked as “abandoned” or “in development”, on a live forum. Doing so may cause your forum to not perform in the manner it should.


Thank you,
The phpBB Extensions Team

Return to “Abandoned Extensions”