bod filler (tailoring)

Furious George

Grandmaster
hey guys, does a bod filler for tailoring bods exsist?

even if it was just for cloth id be happy.

or are u not allowed to fill them out like that? if anyone has a script for it id be glad to have it :D or if this illegal @eppy im only joking about this script.


thanks
 

Fubar_BC

Apprentice
hey guys, does a bod filler for tailoring bods exsist?

even if it was just for cloth id be happy.

or are u not allowed to fill them out like that? if anyone has a script for it id be glad to have it :D or if this illegal @eppy im only joking about this script.


thanks


Did you find one I'd be intersted if in this also.

Thanks
 

halygon

Grandmaster
Not sure this is what you want, but after I create all of the items (10/15/20), I open the BOD screen and hit a hotkey connected to this macro to automatically add the items for me:

Code:
if not listexists 'clothinglist'
  @createlist 'clothinglist'
endif
@clearlist 'clothinglist'
//Robe
@pushlist 'clothinglist' 0x1f03
//Jester Hat
@pushlist 'clothinglist' 0x171c
//Surcoat
@pushlist 'clothinglist' 0x1ffd
//Thigh Boots
@pushlist 'clothinglist' 0x1711
//Fancy Shirt
@pushlist 'clothinglist' 0x1efd
//Short Pants
@pushlist 'clothinglist' 0x152e
//Shoes
@pushlist 'clothinglist' 0x170f
//Sandals
@pushlist 'clothinglist' 0x170d
//Feathered Hat
@pushlist 'clothinglist' 0x171a
//Cloak
@pushlist 'clothinglist' 0x1515
//Long Pants
@pushlist 'clothinglist' 0x1539
//Bandana
@pushlist 'clothinglist' 0x1540
//Boots
@pushlist 'clothinglist' 0x170b
//Doublet
@pushlist 'clothinglist' 0x1f7b
//Shirt
@pushlist 'clothinglist' 0x1517
//Bonnet
@pushlist 'clothinglist' 0x1719
//Straw Hat
@pushlist 'clothinglist' 0x1717
//Wide-brim Hat
@pushlist 'clothinglist' 0x1714
//Wizards Hat
@pushlist 'clothinglist' 0x1718
//Jester Suit
@pushlist 'clothinglist' 0x1f9f
//Tunic
@pushlist 'clothinglist' 0x1fa1
//Half Apron
@pushlist 'clothinglist' 0x153b
//Full Apron
@pushlist 'clothinglist' 0x153d
//Skirt
@pushlist 'clothinglist' 0x1516
//Tricorn Hat
@pushlist 'clothinglist' 0x171b
//Skullcap
@pushlist 'clothinglist' 0x1544
//Floppy Hat
@pushlist 'clothinglist' 0x1713
//Fancy Dress
@pushlist 'clothinglist' 0x1f00
//Plain Dress
@pushlist 'clothinglist' 0x1f01
//Kilt
@pushlist 'clothinglist' 0x1537
//Body Sash
@pushlist 'clothinglist' 0x1541
//Cap
@pushlist 'clothinglist' 0x1715
//Tall Straw Hat
@pushlist 'clothinglist' 0x1716
//Leather skirt
@pushlist 'clothinglist' 0x1c08
//Leather Bustier
@pushlist 'clothinglist' 0x1c0a
//Leather Shorts
@pushlist 'clothinglist' 0x1c00
//Female Leather Armor
@pushlist 'clothinglist' 0x1c06
//Studded Bustier
@pushlist 'clothinglist' 0x1c0c
//Studded Armor
@pushlist 'clothinglist' 0x1c02
//Leather Gorget
@pushlist 'clothinglist' 0x13c7
//Leather Cap
@pushlist 'clothinglist' 0x1db9
//Leather Sleeves
@pushlist 'clothinglist' 0x13cd
//Leather Gloves
@pushlist 'clothinglist' 0x13c6
//Leather Tunic
@pushlist 'clothinglist' 0x13cc
//Leather Leggings
@pushlist 'clothinglist' 0x13cb
//Start Adding to BOD
for 0 to 'clothinglist'
  @findtype clothinglist[]
  @setalias 'bodclothingtype' 'found'
  if @findobject 'found' 'any' 'backpack'
    replygump 0x5afbd742 2
    waitforgump 0x5afbd742 15000
    waitfortarget 15000
    target! 'found'
    waitforgump 0x5afbd742 15000
  endif
endfor
 
Top