Hi,
I would like to apologize in advance for my language skills.
I programming in AutoIt. I have problem with a slots. I want to use the fourth inventory slots.
I made the GUI:
Code:
GUICtrlCreateLabel("Steady: ",20,140)
$stead_box = GUICtrlCreateInput("n/a",150,140,30,20,$ES_ReadOnly)
I made steady out:
Code:
If $iPos = "0G" Then
$fusen = false
$fertig = true
GUICtrlSetData($stead_box, "0")
GUICtrlCreateListViewItem(@HOUR&":"&@MIN&":"&@SEC&" - Steady is out!",$liste)
_GUICtrlListView_Scroll($liste,0,20)
EndIf
I made inventory pos:
Code:
If $opcode = $invupdate_packet then
$iPos = ParseByte() ;->Inv. Pos.
$dummy = ParseByte() ;->kp
$iCount = ParseWord() ;->Anzahl
If $iPos = "0G" Then GUICtrlSetData($stead_box, Dec($iCount))
EndIf
But i start this program.... it's n/a.
Please help me!