Class: LibSL::GroupMembersReplyPacket
Instance Attribute Summary
Attributes inherited from Packet
#acks, #acks_flag, #reliable_flag, #resent_count, #resent_flag, #sequence_number, #zero_coded_flag
Class Method Summary collapse
Instance Method Summary collapse
Methods inherited from Packet
decode, #decode_msg, #encode, #encode_msg, #initialize, #method_missing, zero_decode
Constructor Details
This class inherits a constructor from LibSL::Packet
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class LibSL::Packet
Class Method Details
.packet_id ⇒ Object
8641 8642 8643 |
# File 'lib/_packets.rb', line 8641 def self.packet_id() 4294902127 end |
Instance Method Details
#build_structure ⇒ Object
8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 8660 8661 8662 8663 8664 |
# File 'lib/_packets.rb', line 8645 def build_structure() @blocks = [ [:AgentData, Block.new([ [:AgentID, :LLUUID] ])], [:GroupData, Block.new([ [:GroupID, :LLUUID], [:RequestID, :LLUUID], [:MemberCount, :LLS32] ])], [:MemberData, VariableBlockCollection.new([ [:AgentID, :LLUUID], [:Contribution, :LLS32], [:OnlineStatus, :LLVariable1], [:AgentPowers, :LLU64], [:Title, :LLVariable1], [:IsOwner, :LLBool] ])] ] end |