For showdown's unpack function you've done:

 

// code for PACKET_POKER_SHOWDOWN (('serial', 0, 'I'), ('cookie', '', 'no
net'), ('game_id', 0, 'I'), ('showdown_stack', {}, 'j'))

public class PacketPokerShowdown extends Packet

{

      public var serial:int;

      public var game_id:int;

      public var showdown_stack:JSON;

 

      public override function unpack():void

      {

            super.unpack();

            this.serial = bytes.readInt();

            this.game_id = bytes.readInt();

            // implement showdown_stack of type j

      }

}

 

 

Is this correct? Where are you unpacking showdownStack?

_______________________________________________
Pokersource-users mailing list
[email protected]
https://mail.gna.org/listinfo/pokersource-users

Reply via email to