Quote:
Originally Posted by martyn12444
That is the one I'm using. Just re-downloaded it but again it won't work for some reason... Double clicking on it just does nothing
Strange because I've tried and tested lots of different bots which all still work perfectly...
|
Try right click on the script and select "Compile Script x86" and run it as a compiled .exe program and see if that works.
Quote:
Originally Posted by Pheliepee
"Bot stopped, low inventory space"  (Farm plume 1.1.1 updated by Ash)
|
If your inventory is nearly full and the sell/store functions are not repaired then you will need to either:
1. Clear the inventory yourself when full
2. Repair your sell/store functions (gwa2)
3. Do not select all the checkboxes for green, purple, blue items
4. Edit your script to only pick up feathers and feathered crests
Below code says InventoryCheck if true then bot stops
Code:
If InventoryCheck() Then ;maby additional checkbox therefor
$boolRun = False
Update("Bot stopped, low inventory space")
GUICtrlSetData($startbutton, "Start")
GUICtrlSetState($charactername, $GUI_ENABLE)
GUICtrlSetState($startbutton, $GUI_ENABLE)
If ProcessExists("Gw.exe") Then
ProcessClose("Gw.exe")
MsgBox(0, "", "Bot stopped, low inventory space")
Exit
EndIf
EndIf
InventoryCheck function shows "less than 3 slots open then return true"
Code:
Func InventoryCheck()
If CountSlots() < 3 Then
Return True
Else
Return False
EndIf
EndFunc ;==>InventoryCheck