View Single Post
  #1631  
Old 10-19-2007, 02:57 PM
abvhi abvhi is offline
Junior Member
 
Join Date: Oct 2007
Posts: 19
Default Re: Stars problem

looks like antes break my fix. refix belw. again this may totally break ur betpot for things not sngs or tourneys.

gl !

change:

<font class="small">Code:</font><hr /><pre> else if (InStr(title, "No Limit") &lt;&gt; 0 AND InStr(title, "Tournament") &lt;&gt; 0)
{
StringMid, bb, title, InStr(title, "/", "", InStr(title, "Blinds")) + 1, InStr(title, "-", "", InStr(title, "Blinds") + 8) - InStr(title, "/", "", InStr(title, "Blinds")) - 1 ;___so we retrieve the big blind instead
}</pre><hr />
to
<font class="small">Code:</font><hr /><pre> else if (InStr(title, "Ante") &lt;&gt; 0)
{
StringMid, bb, title, InStr(title, "/", "", InStr(title, "Blinds")) + 1, InStr(title, a_space, "", InStr(title, "Blinds") + 8) - InStr(title, "/", "", InStr(title, "Blinds")) - 1 ;___so we retrieve the big blind instead
}
else if (InStr(title, "No Limit") &lt;&gt; 0 AND InStr(title, "Tournament") &lt;&gt; 0)
{
StringMid, bb, title, InStr(title, "/", "", InStr(title, "Blinds")) + 1, InStr(title, "-", "", InStr(title, "Blinds") + 8) - InStr(title, "/", "", InStr(title, "Blinds")) - 1 ;___so we retrieve the big blind instead
}</pre><hr />
Reply With Quote