ForceBncsPacketParse function

From StealthBot Wiki Backup
Jump to: navigation, search

The ForceBncsPacketParse function is provided by the Script Support Class and allows you to tell StealthBot to parse the provided packet data.

Development

The ForceBncsPacketParse function was added in version 2.7.

Documentation

'// FORCEBNCSPACKETPARSE
'// Pass a complete Battle.net packet into this and the bot will parse it
Public Sub ForceBNCSPacketParse(ByVal PacketData As String)
    Call BNCSParsePacket(PacketData)
End Sub

Summary

This function tells StealthBot to parse the specified packet data as if it was received from Battle.net.

Warning: This can cause unpredictable behavior.

Syntax

ForceBNCSPacketParse PacketData

Arguments

  • PacketData has to be a valid Battle.net packet with its four-byte header.

Examples

See also