Wed 24 Feb 2010 09:50:54 PM UTC, comment #5:
14412-1.7.7.diff
Feature Limiting the number of concurrent table for a player
- it's works with report 100% and jspoker patch http://pastebin.com/f2cf06dd3
Feature Time before you can rebuy on the same cash game table
- add fix :
if the amount of the carpet in the last game exceeds max buy (then min = max_buy_in)
- add new packet :
===================================================================
class PacketPokerRemainingBuyIn(Packet):
"""\
Direction: server => client
Configuration: <remaining-buy-in activate="yes" period="1800" />
Context: fair-play feature - you can buyin in only if the amount is equal or more than your carpet before leaving the table
game_id: integer uniquely identifying a game.
period : period before expiry in secondes
min : minimum buyin permitted before expiry
is_buy_in_max : True if the amount of the carpet in the last game exceeds max buy (then min = max_buy_in)
"""
info = Packet.info + (
('game_id', 0, 'I'),
('period', 0, 'I'),
('min', 0, 'I'),
('is_buy_in_max', 0, 'bool'),
)
Packet.infoDeclare(globals(), PacketPokerRemainingBuyIn, Packet, "POKER_REMAINING_BUY_IN", 167)
===================================================================
- it's works ; dev is finish for pokernetwork
TODO (I do not have time right now)
- jspoker handler
- report 100% (just for the new fix ; must be able to win a player in tests for exceed buy in max )
(file #8253)
|