Official ScriptUO EasyUO Scripts > Script Debug

IgnoreItem Issue

<< < (2/3) > >>

The Ghost:
I love it when Manwinc talk :)   So do we need the 4 in their

manwinc:
The 4 Specifies the Index for the Ignored items. This is useful later on when you want to use Ignoreitem Reset to clear out your ignoreitem filter.

Ignoreitem #Findid 4

Ignoreitem Reset 4 <- Unignores all items that were ignored using 4.

This is only really necessary when dealing in things in mass quantity like Looting Corpses.

manwinc:
And really what you are doing is no different than doing a for command using #Findindex.



--- Code: ---   finditem %item_list c_ #BACKPACKID
if #Findcnt > 0
{
  For #Findindex 1 #Findcnt
  {
    exevent drag #FINDID
    wait 10
    exevent dropc %dropbag
    wait 10 
  }
}
--- End code ---

The Ghost:

--- Quote from: manwinc on October 06, 2017, 03:29:43 PM ---And really what you are doing is no different than doing a for command using #Findindex.


   finditem %item_list c_ #BACKPACKID
if #Findcnt > 0
{
  For #Findindex 1 #Findcnt
  {
    exevent drag #FINDID
    wait 10
    exevent dropc %dropbag
    wait 10 
}

--- End quote ---

Thx that explain alot.    I  use this type lot of mining and ofter drag sub.  I now learn a new way.

manwinc:
I somehow tabbed out and it posted too fast, proper number of brackets now :P

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version