Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - efdenny

Pages: 1 2 [3] 4 5 ... 12
31
Beta Testing / Re: 3.5 Progress
« on: August 21, 2018, 04:40:53 PM »
Thanks for the updates! Looking good...

32
General Discussion / Re: BB Ante tournament
« on: July 10, 2018, 06:00:08 PM »
It's the same as any other ante tournament... you can use this: https://pokersoup.com/tool/blindStructureCalculator

33
Help Me / Re: Live Updates via JS
« on: June 25, 2018, 06:08:26 PM »

34
Beta Testing / Re: 3.5 Progress
« on: June 13, 2018, 06:59:28 PM »
Sounds like a lot of great progress! Appreciate the updates!!

35
Beta Testing / Re: 3.5 Progress
« on: May 24, 2018, 06:52:45 PM »
Woot!! Fingers crossed, and good luck to you sir!

36
Beta Testing / Re: 3.5 Progress
« on: May 24, 2018, 05:21:41 PM »
Quote
No more Internet Explorer required

Between this, updated JS, and HTML5, does this mean a possible Mac solution?? :)

37
Beta Testing / Re: 3.5 Progress
« on: May 24, 2018, 03:06:25 PM »
This is awesome Corey! Thanks for the update, and I’m looking forward to seeing the results of your efforts!

38
Try this instead:

breakNum=1

39
Help Me / Re: Tournament Status HTML table from JSON?
« on: May 07, 2018, 08:00:50 AM »
Awesome find! Thanks again Corey...

40
Help Me / Re: Tournament Status HTML table from JSON?
« on: May 02, 2018, 06:21:10 PM »
Here's my html:

<table id="myTable">
      <tr>
        <th>Rank</th>
        <th>Name</th>
        <th>Hits</th>
        <th>Total Winnings</th>
        <th>Hitman</th>
        <th>Time Out</th>
      </tr>
      <tbody></tbody>
      </table>

and the .js stuff:

  var tr;
  var z = 0;
  while (TDStatus.Vars.Players[z]) {
      tr = $('<tr/>');
      tr.append("<td>" + TDStatus.Vars.Players[z].Rank + "</td>");
      tr.append("<td>" + TDStatus.Vars.Players[z].Nickname + "</td>");
      tr.append("<td>" + TDStatus.Vars.Players[z].Hits + "</td>");
      tr.append("<td>" + TDStatus.Vars.Players[z].TotalWinnings + "</td>");
      tr.append("<td>" + TDStatus.Vars.Players[z].Hitman + "</td>");
      if ( TDStatus.Vars.Players[z].TimeOut < 1 ) {
        tr.append("<td>" + "</td>");
      } else {
        tr.append("<td>" + new Date(TDStatus.Vars.Players[z].TimeOut) + "</td>");   
      }
      $("myTable").append(tr);
      z++;
  }


All of this returns a nice table, but it's not sorted. As I stated earlier, it also appends the same data at every refresh interval. Any thoughts?

41
Help Me / Re: Tournament Status HTML table from JSON?
« on: May 02, 2018, 10:33:16 AM »
Thanks, Corey. I’m making headway... just need to figure out how to sort and keep the rows from appending at every refresh interval...

42
Help Me / Re: Tournament Status HTML table from JSON?
« on: April 30, 2018, 06:41:32 PM »
I can't seem to get a table to render. I've been trying to use something like this to loop through and build the table in the TournamentStatus.js:

  var theBuyIns = parseInt(TDStatus.Vars["Buyins"]);
  var tr;
  for (var z = 0; z < theBuyIns;; z++) {
      tr = $('<tr/>');
      tr.append("<td>" + TDStatus.Vars.Players[z].Rank; + "</td>");
      tr.append("<td>" + TDStatus.Vars.Players[z].Nickname; + "</td>");
      tr.append("<td>" + TDStatus.Vars.Players[z].TotalWinnings; + "</td>");
      $('table').append(tr);
  }

and then just try to make a basic table in TournamentStatus.html:

<table>
    <tr>
        <th>Rank</th>
        <th>Nickname</th>
        <th>TotalWinnings</th>
    </tr>
</table>

but this doesn't seem to work. Was hoping someone out there had some example code to share...

43
Help Me / Tournament Status HTML table from JSON?
« on: April 28, 2018, 12:04:07 PM »
Has anyone had success building an HTML table (current player information; Rank, Name, TotalWinnings, etc -- similar to the Player Rankings page within TD) for the Tournament Status html page from Status Updates? I'm struggling with it... examples would be great... TIA

44
Help Me / Re: Easy point formula help
« on: April 26, 2018, 03:52:05 PM »
for specifying which rank gets which points, use "switch". No need to specify "0" points. As per your example:

switch(r,18,1,19,1,20,1)

But, in this instance, I think my previous post is easier.

45
Help Me / Re: Easy point formula help
« on: April 26, 2018, 03:49:10 PM »
That formula came up with errors.

Sorry, typo... here's the corrected formula.

if((r >= 17) and (r <= 20), 1) + if((r >= 13) and (r <= 16), 3) + if((r >= 9) and (r <= 12), 5) + if((r >= 5) and (r <= 8 ), 7) + if((r >= 1) and (r <= 4), 10)

Pages: 1 2 [3] 4 5 ... 12