Class: LibSL::CreateInventoryItemPacket
- Defined in:
- lib/_packets.rb
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
7263 7264 7265 |
# File 'lib/_packets.rb', line 7263 def self.packet_id() 4294902065 end |
Instance Method Details
#build_structure ⇒ Object
7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 |
# File 'lib/_packets.rb', line 7267 def build_structure() @blocks = [ [:AgentData, Block.new([ [:AgentID, :LLUUID], [:SessionID, :LLUUID] ])], [:InventoryBlock, Block.new([ [:CallbackID, :LLU32], [:FolderID, :LLUUID], [:TransactionID, :LLUUID], [:NextOwnerMask, :LLU32], [:Type, :LLS8], [:InvType, :LLS8], [:WearableType, :LLU8], [:Name, :LLVariable1], [:Description, :LLVariable1] ])] ] end |