ScriptUO

Official ScriptUO EasyUO Scripts => Script Debug => Topic started by: The Ghost on November 11, 2014, 12:29:48 PM

Title: Scan Paperdoll and main pack together
Post by: The Ghost on November 11, 2014, 12:29:48 PM
I know that I can scan those two separate.  and it work  Now I will like to scan for both  #CHARID &   #backpackid . This will allow me to check all my weapon if needed.  Right now I need to run two separate script to to it.  can that be done scan for weapon in my hand and pack.


This work fine
Code: [Select]
set %weaponbag #CHARID  ;  This will scan my paperdoll
or
set %weaponbag #backpackid  ; this will scan my pack.  


finditem %weapon C_ , %weaponbag


This doesn't work.
Code: [Select]
set %weaponbag #CHARID_#backpackid


finditem %weapon C_ , %weaponbag
Title: Re: Scan Paperdoll and main pack together
Post by: TrailMyx on November 11, 2014, 03:55:04 PM
The closest you can do is to search all open containers:

Code: [Select]

finditem %weapon C

Title: Re: Scan Paperdoll and main pack together
Post by: The Ghost on November 11, 2014, 06:10:20 PM
Thx TM  Nice it work, 
  .   
Title: Re: Scan Paperdoll and main pack together
Post by: manwinc on November 12, 2014, 07:14:30 PM
I wonder if Finditem C command will work like the finditem command with Everything separated by _.

I'll play with it.