Hmm.. I believe it's one of the text labels. Albetros has it set as "GreenText" if that means anything?
Edit: Gotta be off to bed, 4 hours until I have to be up so people can work on my back yard lol. Here's the PHP script I wrote so you can convert your packet on the fly:
PHP Code:
<?php
// Your servers packet
$packet_1008="44-00-F0-03-09-99-98-00-E0-93-04-00-64-00-64-00-01-00-0C-00-FF-00-96-00-00-00-00-00-00-00-00-00-00-03-96-00-00-00-00-00-FF-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-01-00-00-00";
// Note, packets should always be in BYTE form, with each byte separated by a hyphen.
$bytes = explode('-', $packet_1008);
class PacketParser
{
public static function ReadByte($bytes, $pos)
{
return (count($bytes) >= $pos ? hexdec($bytes[$pos]) : null);
}
public static function ReadUInt16($bytes, $pos)
{
if (count($bytes) < $pos + 2)
{
return null;
}
$return = "";
for ($x = 1; $x >= 0; --$x)
{
$return .= $bytes[$pos+$x];
}
return hexdec($return);
}
public static function ReadUInt32($bytes, $pos)
{
if (count($bytes) < $pos + 4)
{
return null;
}
$return = "";
for ($x = 3; $x >= 0; --$x)
{
$return .= $bytes[$pos+$x];
}
return hexdec($return);
}
public static function ReadUInt64($bytes, $pos)
{
if (count($bytes) < $pos + 2)
{
return null;
}
$return = "";
for ($x = 5; $x >= 0; --$x)
{
$return .= $bytes[$pos+$x];
}
return hexdec($return);
}
}
echo "Length: ".PacketParser::ReadUInt16($bytes, 0)."\n";
echo "Type: ".PacketParser::ReadUInt16($bytes, 2)."\n";
echo "UniqueID: ".PacketParser::ReadUInt32($bytes, 4)."\n";
echo "StaticID: ".PacketParser::ReadUInt32($bytes, 8)."\n";
echo "Dura: ".PacketParser::ReadUInt16($bytes, 12)."\n";
echo "MaxDura: ".PacketParser::ReadUInt16($bytes, 14)."\n";
echo "CreationType: ".PacketParser::ReadUInt16($bytes, 16)."\n";
echo "Location: ".PacketParser::ReadUInt16($bytes, 18)."\n";
echo "Steed Info: ".PacketParser::ReadUInt32($bytes, 20)."\n"; // Apparently "Socket Progress" for talismans, Unknown for steeds.
echo "SocA: ".PacketParser::ReadByte($bytes, 24)."\n";
echo "SocB: ".PacketParser::ReadByte($bytes, 25)."\n";
echo "SpecialType: ".PacketParser::ReadByte($bytes, 28)."\n"; // Aka ItemEffect or RebornEffect
echo "Plus: ".PacketParser::ReadByte($bytes, 33)."\n";
echo "Bless: ".PacketParser::ReadByte($bytes, 34)."\n";
echo "Free: ".PacketParser::ReadByte($bytes, 35)."\n"; // Aka Bound
echo "Enchant: ".PacketParser::ReadByte($bytes, 36)."\n";
echo "Suspicious: ".PacketParser::ReadByte($bytes, 45)."\n";
echo "Locked: ".PacketParser::ReadByte($bytes, 46)."\n";
echo "Color: ".PacketParser::ReadByte($bytes, 48)."\n";
echo "Progress: ".PacketParser::ReadUInt32($bytes, 52)."\n";
echo "Inscribed: ".PacketParser::ReadByte($bytes, 56)."\n";
echo "Lock Timer: ".PacketParser::ReadUInt32($bytes, 60)."\n";
echo "Amount: ".PacketParser::ReadUInt16($bytes, 64)."\n";
?>
Good luck!