Total Free Money Earned

Redeems: $280,439

BTC Rate: $62263.18

Page 1 of 2 12 LastLast
Results 1 to 10 of 15
  1. #1
    Zab
    Zab is offline
    PokerOwned Admin Zab's Avatar
    Join Date
    Feb 2008
    Posts
    7,256

    20k Bot Tournament

    We will have our first ever BOT TOURNAMENT Sunday night. You DO NOT need to be here to enter.

    SUBMIT YOUR FINISHED BOT VIA PM TO ME (Use a link please that I can download)

    I will name your bot after you (Rivdee-Bot) etc..

    I will seat all the submitted bots on 1 table. However much your bot wins, I will send that to your account.

    Here is an example that you will need of one of the play styles to get you started: TinyUpload.com - best file hosting solution, with no limits, totaly free


    Here are the instructions how to code your bot (Don't ask for help if you don't understand lol it's new to me also). DON'T GO CRAZY. You will have plenty of time, days, weeks to tweak your bot!! We will do these tournaments often.



    Scoring
    The bot uses a complicated formula to determine a hand score. Included in the calculations
    are Hole Cards, Boosters, community cards, Straight and Flush draws, and opponents in the
    hand. The hand score does not represent the actual value of the hand, instead it represents
    the probability of a win. A hand score can range from 0.00 (a 0% probability of a win) to
    1.00 (a 100% probability of a win).
    Note: The iPokerBOT software does not read or track the opponents hole cards, and is not
    designed to be used as a cheating device. Poker is a game of chance and a 100% probability
    of a win is not a 100% guarantee of a win.


    Boosters
    You can boost your hand scores above 1.00 by using the “preflop_score_adjust” and
    “Suited_score_adjust” sections. The score booster range is from 0.00 to 0.25 and will be
    added to the calculated hand score. Thus, you can boost a hand score up to a maximum of
    1.25. Score boosting is ideal for chasing hands, but should be used cautiously.
    55
    Example
    This is an example of what an iPokerBOT Strategy File looks like.


    STRATEGY FILE EXAMPLE





    Breaking It Down

    We will now break the strategy file down and explain how each section works.

    Hole Cards

    Hole cards are defined in the sections “Preflop_Hands” and “Suited_Hands”. Both of these
    sections define what your bot will do with specific hole cards. If you define more than one
    set of hold cards, separate the cards with a space.
    Hole cards are represented in the following alphanumeric form:
    A-K-Q-J-T-9-8-7-6-5-4-3-2

    [Preflop_Hands]

    This is where you define what your bot will do with specific non-suited hole cards pre-flop.
    If a hole card combination is not defined, the bot will Check or Fold to any Raise.

    [Preflop_Hands] (non-suited)

    all_in =AA KK QQ <-- Will go all in.
    raise =AK AQ AJ <-- Will raise blind * raiseamount.
    call_any =JJ TT <-- Will call even if someone raises.
    call_upto =KJ KT <-- Will call up to blind * callamount.
    call_once =QT JT <-- Will call unless someone raises.

    [Preflop_score_adjust]

    This is the score booster section for the non-suited cards you specified above. Remember,
    the score booster range is from 0.00 to 0.25 and will be added to the calculated hand score.
    This score booster is ideal for chasing straights, but should be used cautiously.

    [Preflop_score_adjust]

    raise =0.00 <-- Adjusts the score in the preflopraise set to X amount.
    call_any =0.00 <-- Adjusts the score in the preflop call_any to X amount.
    call_upto =0.00 <-- Adjusts the score in the preflop call_upto to X amount.
    call_once =0.00 <-- Adjusts the score in the preflop call_once to X amount.


    [Suited_Hands]

    This is where you define what your bot will do with specific suited hole cards pre-flop. If a
    hole card combination is not defined, the bot will Check or Fold to any Raise.

    [Suited_Hands]

    all_in =AK AQ <-- Will go all in.
    raise =AJ AT <-- Will raise blind * raiseamount.
    call_any =KQ KJ <-- Will call even if someone raises.
    call_upto =A9 A8 <-- Will call up to blind * callamount.
    call_once =QJ QT <-- Will call unless someone raises.

    [Suited_score_adjust]

    This is the score booster section for the suited cards you specified above. Remember, the
    score booster range is from 0.00 to 0.25 and will be added to the calculated hand score.
    This score booster is ideal for chasing flushes, but should be used cautiously.

    [Suited_score_adjust]

    raise = <-- Adjusts the score in the suited raise set to X amount.
    call_any = <-- Adjusts the score in the suited call_any to X amount.
    call_upto = <-- Adjusts the score in the suited call_upto to X amount.
    call_once = <-- Adjusts the score in the suited call_once to X amount.


    [Call]

    This is where you specify the call amounts of the bot for preflop, flop, turn and river
    actions. The number you specify is a multiplier towards the Big Blind. Meaning, if the Big
    Blind is 4, and you enter a 3 in the preflopcallamount, your bot would call a raise up to 12
    chips. If someone raised 14 chips in this example, the bot would fold.

    [call]

    preflopcallamount=3 <-- Will check raise amount and call up to blind * callamount.
    flopcallamount=2 <-- Same as above except for the flop.
    turncallamount=2 <-- Same as above except for the turn.
    rivercallamount=2 <-- Same as above except for the river.
    58

    [raise]

    This is where you specify the raise amounts of the bot for preflop, flop, turn and river
    actions. The number you specify is a multiplier towards the Big Blind. Meaning, if the Big
    Blind is 4, and you enter a 3 in the preflopraiseamount, your bot would make a raise of 12
    chips.

    [raise]

    preflopraiseamount=3 <-- Raises for the preflop will use blind * raiseamount.
    flopraiseamount=2 <-- Raises for the flop will use blind *flopraiseamount.
    turnraiseamount=2 <-- Raises for the turn will use blind * turnraiseamount.
    riverraiseamount=2 <-- Raises for the river will use blind * riverraiseamount.

    [FlopScore]

    This is where you define a score range for each of the listed actions in the Flop round of
    betting. The bot will calculate the hand score, place it in the correct range, and perform the
    action associated to that range.
    The ranges need to be in ascending order starting from 0.00 up to 1.00, unless you use a
    booster, then the maximum range number would be 1.25. None of the scoring ranges can
    overlap. Meaning, if your Check range is 0.00-0.43, your next range must start at 0.44.
    If you do not want to allow All-In range actions, you can set the score range for 1.01-1.25, if
    you are not using score boosters. This will make the All-In score range unattainable, as
    1.00 is the highest hand score possible without boosters. If your using boosters and do not
    want All-In range actions, make sure to limit your booster scores to 0.23. Then set your AllIn
    range to 0.24-0.25, which will be unattainable.
    Reminder: The hand score does not represent the actual value of the hand, instead it
    represents the probability of a win.

    [FlopScore]

    0.00-0.00=check <-- Will check/fold.
    0.00-0.00=call_upto <-- Will call up to blind * callamount.
    0.00-0.00=call <-- Will call all.
    0.00-0.00=raise <-- Will raise blind * raiseamount.
    0.00-0.00=all_in <-- Will go all in.


    [TurnScore]

    This is where you define a score range for each of the listed actions in the Turn round of
    betting. The bot will calculate the hand score, place it in the correct range, and perform the
    action associated to that range.
    * See [FlopScore]

    [TurnScore]

    0.00-0.00=check <-- Will check/fold.
    0.00-0.00=call_upto <-- Will call up to blind * callamount.
    0.00-0.00=call <-- Will call all.
    0.00-0.00=raise <-- Will raise blind * raiseamount.
    0.00-0.00=all_in <-- Will go all in.

    [RiverScore]

    This is where you define a score range for each of the listed actions in the River round of
    betting. The bot will calculate the hand score, place it in the correct range, and perform the
    action associated to that range.
    * See [FlopScore]

    [RiverScore]

    0.00-0.00=check <-- Will check/fold.
    0.00-0.00=call_upto <-- Will call up to blind * callamount.
    0.00-0.00=call <-- Will call all.
    0.00-0.00=raise <-- Will raise blind * raiseamount.
    0.00-0.00=all_in <-- Will go all in.
    "And Shepherds we shall be. For thee, my Lord, for thee.
    Power hath descended forth from Thy hand. Our feet may swiftly carry out Thy commands.
    So we shall flow a river forth to Thee And teeming with souls shall it ever be.
    In Nomeni Patri Et Fili Spiritus Sancti."
    http://www.youtube.com/watch?v=7_AtUXdXA_s

  2. #2
    PokerOwned God
    Join Date
    Feb 2011
    Posts
    2,435
    Kind of seems like a lot of work but I'm sure I could get in to it.

    #NiggasInParis

  3. #3
    PokerOwned Veteran
    Join Date
    May 2013
    Posts
    89
    so 20k buy in?

  4. #4
    PokerOwned God Prawney's Avatar
    Join Date
    Feb 2011
    Posts
    2,158
    I dont know if its possible but i recommend making it so Rickir cant see this thread.

  5. #5
    CEO - Truth Commission rivdee's Avatar
    Join Date
    Jan 2011
    Posts
    2,584
    Quote Originally Posted by RcktWrangler View Post
    Kind of seems like a lot of work but I'm sure I could get in to it.
    If you decide what basic style you want, you can tweak it - it sets a lot of it for you

  6. #6
    PokerOwned God Drywallman3's Avatar
    Join Date
    May 2011
    Posts
    4,105
    Holy shit, making our own personal donk machine!! Mine will be drydonk.....of course

    20:58 <Poof> I would trade my husband for gisele
    18:37 <thepokerkid> @thepokerkid: and stop thinking about gay things

  7. #7
    PokerOwned God
    Join Date
    Feb 2011
    Posts
    2,435
    Quote Originally Posted by Prawney View Post
    I dont know if its possible but i recommend making it so Rickir cant see this thread.
    hahahahaha

    #NiggasInParis

  8. #8
    Zab
    Zab is offline
    PokerOwned Admin Zab's Avatar
    Join Date
    Feb 2008
    Posts
    7,256
    Quote Originally Posted by RcktWrangler View Post
    Kind of seems like a lot of work but I'm sure I could get in to it.
    Does 2 things at once..

    1) Allows you to tweak your bot over time and enter them in tournaments

    2) Allows us to create some decent bots so we can use them in these tournament ideas I had.. Right now the bots aren't very good
    "And Shepherds we shall be. For thee, my Lord, for thee.
    Power hath descended forth from Thy hand. Our feet may swiftly carry out Thy commands.
    So we shall flow a river forth to Thee And teeming with souls shall it ever be.
    In Nomeni Patri Et Fili Spiritus Sancti."
    http://www.youtube.com/watch?v=7_AtUXdXA_s

  9. #9
    Zab
    Zab is offline
    PokerOwned Admin Zab's Avatar
    Join Date
    Feb 2008
    Posts
    7,256
    Quote Originally Posted by Texasbandit1 View Post
    so 20k buy in?
    20k prize, free buy in
    "And Shepherds we shall be. For thee, my Lord, for thee.
    Power hath descended forth from Thy hand. Our feet may swiftly carry out Thy commands.
    So we shall flow a river forth to Thee And teeming with souls shall it ever be.
    In Nomeni Patri Et Fili Spiritus Sancti."
    http://www.youtube.com/watch?v=7_AtUXdXA_s

  10. #10
    PokerOwned Admin Poof's Avatar
    Join Date
    Jul 2011
    Posts
    4,136
    I am for sure interested but oh man this is going to be quite the learning experience.

Page 1 of 2 12 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •