Poker Mavens 4.00 Released

For general discussion of the Poker Mavens software
Kent Briggs
Site Admin
Posts: 5880
Joined: Wed Mar 19, 2008 8:47 pm

Re: Poker Mavens 4.00 Released

Post 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.
maghlub
Posts: 41
Joined: Tue Sep 10, 2013 3:09 am

Re: Poker Mavens 4.00 Released

Post 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
Kent Briggs
Site Admin
Posts: 5880
Joined: Wed Mar 19, 2008 8:47 pm

Re: Poker Mavens 4.00 Released

Post 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.
maghlub
Posts: 41
Joined: Tue Sep 10, 2013 3:09 am

Re: Poker Mavens 4.00 Released

Post by maghlub »

how to limit user only chat one table in game and unlimit 2min time
maghlub
Posts: 41
Joined: Tue Sep 10, 2013 3:09 am

Re: Poker Mavens 4.00 Released

Post 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 :|
Kent Briggs
Site Admin
Posts: 5880
Joined: Wed Mar 19, 2008 8:47 pm

Re: Poker Mavens 4.00 Released

Post by Kent Briggs »

Set "Observer Chat" to No at each table (or tournament) to prevent non-seated players from chatting at that table.
maghlub
Posts: 41
Joined: Tue Sep 10, 2013 3:09 am

Re: Poker Mavens 4.00 Released

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

not seat but text to chat box only select seat but not seat
ObServer chat is OFF :|
Kent Briggs
Site Admin
Posts: 5880
Joined: Wed Mar 19, 2008 8:47 pm

Re: Poker Mavens 4.00 Released

Post 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.
maghlub
Posts: 41
Joined: Tue Sep 10, 2013 3:09 am

Re: Poker Mavens 4.00 Released

Post 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?
Kent Briggs
Site Admin
Posts: 5880
Joined: Wed Mar 19, 2008 8:47 pm

Re: Poker Mavens 4.00 Released

Post by Kent Briggs »

maghlub wrote: Exactly how much time it takes?
Probably next week, I'm currently travelling on x-mas break.
Post Reply