hii all , my problem at storage when i put the item to it through packets
it's refuse to put item to storage it's said can't find target
i made simple script useing Autoit
Code:
\\\\\\\\\\\\\\\\\\\ DW storage NPC ID 04020000
$g_IP = "127.0.0.1"
$ss = "0x04004570010004020000" ;start talk
$s1 = "0x0500467001000402000003" ; deposite
$s2 = "0x070034700100020D0004020000" ; put item #1 at inventory to storage
TCPStartUp()
$socket = TCPConnect($g_IP, 22580)
If $socket = -1 Then
MsgBox(0, "Ops", "Run Nuconnector")
Sleep(2000)
endif
TCPSend($socket,$ss)
Sleep(2000)
TCPSend($socket,$s1)
Sleep(2000)
TCPSend($socket,$s2)
Exit