Page 2 of 4
Re: Poker Mavens 4.00 Released
Posted: Fri Sep 06, 2013 10:04 am
by Kent Briggs
viktor wrote:
I noticed that the chat doesn't automatically scroll down. Everytime there's new chat whether it be in the lobby or the chat box on a table (including dealer chat) the user has to manually scroll down after every single new piece of text in that chat box, its kinda annoying :/ hopefully this can be fixed n future.
I'm not able to duplicate that. It autoscrolls for me.
Re: Poker Mavens 4.00 Released
Posted: Tue Sep 10, 2013 3:17 am
by maghlub
I have problem with api pw v4. how to use api password in the api.php ????
Code: Select all
<?php
$url = "http://127.0.0.1:8087/api"; // <-- use your game server IP
$pw = "????????"; // <-- use your api password
$server = "http://???.???.???.???:8087"; // set your url here
function Poker_API($url,$params,$assoc)
{
$curl = curl_init($url);
curl_setopt($curl,CURLOPT_POST,true);
curl_setopt($curl,CURLOPT_POSTFIELDS,$params);
curl_setopt($curl,CURLOPT_TIMEOUT,30);
curl_setopt($curl,CURLOPT_RETURNTRANSFER,true);
$response = trim(curl_exec($curl));
curl_close($curl);
$api = Array();
if ($assoc) // associative array result
{
if (empty($response))
{
$api["Result"] = "Error";
$api["Error"] = "Connection failed";
}
else
{
$paramlist = Explode("\r\n",$response);
foreach ($paramlist as $param)
{
$namevalue = Explode("=",$param,2);
$api[$namevalue[0]] = $namevalue[1];
}
}
}
else // regular array result
{
if (empty($response))
{
$api[] = "Result=Error";
$api[] = "Error=Connection failed";
}
else
{
$paramlist = Explode("\r\n",$response);
foreach ($paramlist as $param) $api[] = $param;
}
}
return $api;
}
?>
the api password : B23A1C17-2DD21B4101EE4ECE6E10045EA5E8CD30292B13413AFA00320F0DA6E4B4FDA95D
Re: Poker Mavens 4.00 Released
Posted: Tue Sep 10, 2013 9:28 am
by Kent Briggs
maghlub wrote:the api password : B23A1C17-2DD21B4101EE4ECE6E10045EA5E8CD30292B13413AFA00320F0DA6E4B4FDA95D
That is not your API password. That is the salt+hash of your API password that is stored on your server. When you make an API call with the actual API Password, the server will hash it and compare it to the stored value to know if it is correct. If you forgot your password, just double-click it in the server interface and enter a new one, which will cause to new hash to be generated.
Re: Poker Mavens 4.00 Released
Posted: Wed Dec 25, 2013 9:20 am
by maghlub
how to limit user only chat one table in game and unlimit 2min time
Re: Poker Mavens 4.00 Released
Posted: Wed Dec 25, 2013 9:28 am
by maghlub
fix bug chat table
chat table limit only player chat to use chat
but not seat use chat
step 1 : text chat to chat box
step 2 : select seat and duble click
step 3 : enter and send chat

Re: Poker Mavens 4.00 Released
Posted: Wed Dec 25, 2013 12:15 pm
by Kent Briggs
Set "Observer Chat" to No at each table (or tournament) to prevent non-seated players from chatting at that table.
Re: Poker Mavens 4.00 Released
Posted: Wed Dec 25, 2013 8:59 pm
by maghlub
Kent Briggs wrote:Set "Observer Chat" to No at each table (or tournament) to prevent non-seated players from chatting at that table.
observer chat : no
but observer can type text to bug
no seat the table only select seat but no seat
big bug
not seat but text to chat box only select seat but not seat
ObServer chat is OFF

Re: Poker Mavens 4.00 Released
Posted: Thu Dec 26, 2013 12:24 am
by Kent Briggs
Ok, I can duplicate the bug now by typing in some text and then pressing the Enter key after the buy-in dialog displays. You're not considered an observer at that point because the seat has been reserved for you. But I'll fix that in the next update.
Re: Poker Mavens 4.00 Released
Posted: Thu Dec 26, 2013 5:07 am
by maghlub
Kent Briggs wrote:Ok, I can duplicate the bug now by typing in some text and then pressing the Enter key after the buy-in dialog displays. You're not considered an observer at that point because the seat has been reserved for you. But I'll fix that in the next update.
thank you for support
Exactly how much time it takes?
Re: Poker Mavens 4.00 Released
Posted: Thu Dec 26, 2013 11:31 am
by Kent Briggs
maghlub wrote:
Exactly how much time it takes?
Probably next week, I'm currently travelling on x-mas break.