Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - number7

Pages: [1]
1
Script Debug / Tailor Bod Sorter Macro Errors
« on: May 12, 2017, 04:30:20 PM »
I am looking for a hand on as to why i keep getting [macro] Error line 117 waitforproperties: item or mobile not found and [Macro] Error line 209 waitforproperties: item of mobile not found.  i cannot seem to figure this out for the life of me.  any help is appreciated.
Code: [Select]
//Initialize section
if not findalias 'initialize'
  headmsg 'Target your source book' 33
  promptalias 'sourcebook'
  headmsg 'Target where to store BRSK BODS' 33
  promptalias 'brsk_book'
  headmsg 'Target where to store HRSK and Bless BoDs' 33
  promptalias 'hrsk_book'
  headmsg 'Target where to store Leather Resets' 33
  promptalias 'LeatherReset'
  headmsg 'Target your trashbarrel' 33
  promptalias 'trashbin'
endif
//===================================
// 20small + Large exc spined BOD FILTER
// BRSK BODS
useobject 'sourcebook'
waitforgump 0x54f555df 1500
replygump 0x54f555df 1
waitforgump 0x968739db 1500
replygump 0x968739db 4
waitforgump 0x968739db 1500
replygump 0x968739db 13
waitforgump 0x968739db 1500
replygump 0x968739db 66
waitforgump 0x968739db 1500
replygump 0x968739db 19
waitforgump 0x968739db 1500
replygump 0x968739db 0
waitforgump 0x54f555df 1500
pause 1000
//end filter
while @property 'Contents' 'backpack' < 123
  useobject 'sourcebook'
  waitforgump 0x54f555df 1500
  replygump 0x54f555df 5
  waitforgump 0x54f555df 1500
  if replygump 0x54f555df 5
    waitforgump 0x54f555df 2000
    while @findtype 0x2258 1155 'backpack' 'any'
      waitforproperties 'found' 2500
      if property 'Leather Cap' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Leather Gorget' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Leather Gloves' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Leather Tunic' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Leather Sleeves' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Leather Leggings' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Leather Skirt' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Female Leather Armor' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Leather Shorts' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Leather Bustier' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Studded Bustier' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Studded Armor' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      else
        @moveitem 'found' 'trashbin'
        pause 500
      endif
    endwhile
  else
    break
    pause 200
  endif
endwhile
//================================
//Leather 20x small+ Large
//Keeps bless deed bods
//This will trash 120PS BODs
useobject 'sourcebook'
waitforgump 0x54f555df 1500
replygump 0x54f555df 1
waitforgump 0x968739db 1500
replygump 0x968739db 4
waitforgump 0x968739db 1500
replygump 0x968739db 13
waitforgump 0x968739db 1500
replygump 0x968739db 62
waitforgump 0x968739db 1500
replygump 0x968739db 19
waitforgump 0x968739db 1500
replygump 0x968739db 0
waitforgump 0x54f555df 1500
pause 500
//end filter
while @property 'Contents' 'backpack' < 123
  useobject 'sourcebook'
  waitforgump 0x54f555df 1500
  replygump 0x54f555df 5
  waitforgump 0x54f555df 1500
  if replygump 0x54f555df 5
    waitforgump 0x54f555df 1500
    pause 500
    while @findtype 0x2258 1155 'backpack' 'any'
      waitforproperties 'found' 2500
      if property 'Studded Gorget' 'found'
        @moveitem 'found' 'hrsk_book'
        pause 500
      elseif property 'Studded Gloves' 'found'
        @moveitem 'found' 'hrsk_book'
        pause 500
      elseif property 'Studded Sleeves' 'found'
        @moveitem 'found' 'hrsk_book'
        pause 500
      elseif property 'Studded Leggings' 'found'
        @moveitem 'found' 'hrsk_book'
        pause 500
      elseif property 'Studded Tunic' 'found'
        @moveitem 'found' 'hrsk_book'
        pause 500
      elseif property 'Leather Gorget' 'found' and not property 'Large Bulk Order' 'found'
        @moveitem 'found' 'LeatherReset'
        pause 500
      elseif property 'Leather Sleeves' 'found' and not property 'Large Bulk Order' 'found'
        @moveitem 'found' 'LeatherReset'
        pause 500
      elseif property 'Leather Cap' 'found' and not property 'Large Bulk Order' 'found'
        @moveitem 'found' 'LeatherReset'
        pause 500
      elseif property 'Leather Gloves' 'found' and not property 'Large Bulk Order' 'found'
        @moveitem 'found' 'LeatherReset'
        pause 500
      elseif property 'Leather Leggings' 'found' and not property 'Large Bulk Order' 'found'
        @moveitem 'found' 'LeatherReset'
        pause 500
      elseif property 'Leather Tunic' 'found' and not property 'Large Bulk Order' 'found'
        @moveitem 'found' 'LeatherReset'
        pause 500
      elseif property 'Boots' 'found' and not property 'Large Bulk Order' 'found'
        @moveitem 'found' 'LeatherReset'        pause 500
      elseif property 'Shoes' 'found' and not property 'Large Bulk Order' 'found'
        @moveitem 'found' 'LeatherReset'
        pause 500
      elseif property 'Sandals' 'found' and not property 'Large Bulk Order' 'found'
        @moveitem 'found' 'LeatherReset'
      elseif property 'Leather Skirt' 'found' and not property 'Large Bulk Order' 'found'
        @moveitem 'found' 'LeatherReset'
        pause 500
      elseif property 'Leather Bustier' 'found' and not property 'Large Bulk Order' 'found'
        @moveitem 'found' 'LeatherReset'
        pause 500
      elseif property 'Leather Shorts' 'found' and not property 'Large Bulk Order' 'found'
        @moveitem 'found' 'LeatherReset'
        pause 500
      elseif property 'Female Leather Armor' 'found' and not property 'Large Bulk Order' 'found'
        @moveitem 'found' 'LeatherReset'
        pause 500
      else
        @moveitem 'found' 'trashbin'
        pause 500
      endif
    endwhile
  else
    break
    pause 200
  endif
endwhile
//================================
//small +large exc leather BODs FILTER
//HRSK + 120PS BODS
useobject 'sourcebook'
waitforgump 0x54f555df 1500
replygump 0x54f555df 1
waitforgump 0x968739db 1500
replygump 0x968739db 4
waitforgump 0x968739db 1500
replygump 0x968739db 13
waitforgump 0x968739db 1500
replygump 0x968739db 62
waitforgump 0x968739db 1500
replygump 0x968739db 7
waitforgump 0x968739db 1500
replygump 0x968739db 0
waitforgump 0x54f555df 1500
pause 500
//end filter
while @property 'Contents' 'backpack' < 123
  useobject 'sourcebook'
  waitforgump 0x54f555df 1500
  replygump 0x54f555df 5
  waitforgump 0x54f555df 1500
  if replygump 0x54f555df 5
    waitforgump 0x54f555df 1500
    pause 500
    while @findtype 0x2258 1155 'backpack' 'any'
      waitforproperties 'found' 2500
      if property 'Leather Cap' 'found'
        @moveitem 'found' 'hrsk_book'
        pause 500
      elseif property 'Leather Gorget' 'found'
        @moveitem 'found' 'hrsk_book'
        pause 500
      elseif property 'Leather Gloves' 'found'
        @moveitem 'found' 'hrsk_book'
        pause 500
      elseif property 'Leather Tunic' 'found'
        @moveitem 'found' 'hrsk_book'
        pause 500
      elseif property 'Leather Sleeves' 'found'
        @moveitem 'found' 'hrsk_book'
        pause 500
      elseif property 'Leather Leggings' 'found'
        @moveitem 'found' 'hrsk_book'
        pause 500
      elseif property 'Leather Skirt' 'found'
        @moveitem 'found' 'hrsk_book'
        pause 500
      elseif property 'Female Leather Armor' 'found'
        @moveitem 'found' 'hrsk_book'
        pause 500
      elseif property 'Leather Shorts' 'found'
        @moveitem 'found' 'hrsk_book'
        pause 500
      elseif property 'Leather Bustier' 'found'
        @moveitem 'found' 'hrsk_book'
        pause 500
      elseif property 'Studded Bustier' 'found'
        @moveitem 'found' 'hrsk_book'
        pause 500
      elseif property 'Studded Armor' 'found'
        @moveitem 'found' 'hrsk_book'
        pause 500
      elseif property 'Boots' 'found' and not property 'Large Bulk Order' 'found'
        @moveitem 'found' 'LeatherReset'        pause 500
      elseif property 'Shoes' 'found' and not property 'Large Bulk Order' 'found'
        @moveitem 'found' 'LeatherReset'
        pause 500
      elseif property 'Sandals' 'found' and not property 'Large Bulk Order' 'found'
        @moveitem 'found' 'LeatherReset'
      else
        @moveitem 'found' 'trashbin'
        pause 500
      endif
    endwhile
  else
    break
    pause 200
  endif
endwhile
//================================
//large cloth BODs FILTER
//TRASH BODS
useobject 'sourcebook'
waitforgump 0x968739db 1500
replygump 0x54f555df 1
waitforgump 0x968739db 1500
replygump 0x968739db 12
waitforgump 0x968739db 1500
replygump 0x968739db 58
waitforgump 0x968739db 1500
replygump 0x968739db 5
waitforgump 0x968739db 1500
replygump 0x968739db 7
waitforgump 0x968739db 1500
replygump 0x968739db 0
waitforgump 0x54f555df 1500
pause 500
//end filter
while @property 'Contents' 'backpack' < 123
  useobject 'sourcebook'
  waitforgump 0x54f555df 1500
  replygump 0x54f555df 5
  waitforgump 0x54f555df 1500
  if replygump 0x54f555df 5
    waitforgump 0x54f555df 1500
    while @findtype 0x2258 1155 'backpack' 'any'
      @moveitem 'found' 'trashbin'
      pause 500
    endwhile
  else
    break
    pause 200
  endif
endwhile
//================================
//spinned 10 BODs FILTER
//TRASH BODS
useobject 'sourcebook'
waitforgump 0x54f555df 1500
replygump 0x54f555df 1
waitforgump 0x968739db 1500
replygump 0x968739db 4
waitforgump 0x968739db 1500
replygump 0x968739db 5
waitforgump 0x968739db 1500
replygump 0x968739db 66
waitforgump 0x968739db 1500
replygump 0x968739db 11
waitforgump 0x968739db 1500
replygump 0x968739db 0
waitforgump 0x54f555df 1500
pause 500
//end filter
while @property 'Contents' 'backpack' < 123
  useobject 'sourcebook'
  waitforgump 0x54f555df 1500
  replygump 0x54f555df 5
  waitforgump 0x54f555df 1500
  if replygump 0x54f555df 5
    waitforgump 0x54f555df 1500
    while @findtype 0x2258 1155 'backpack' 'any'
      @moveitem 'found' 'trashbin'
      pause 500
    endwhile
  else
    break
    pause 200
  endif
endwhile
//================================
//spinned 15 BODs FILTER
//TRASH BODS
useobject 'sourcebook'
waitforgump 0x54f555df 1500
replygump 0x54f555df 1
waitforgump 0x968739db 1500
replygump 0x968739db 4
waitforgump 0x968739db 1500
replygump 0x968739db 5
waitforgump 0x968739db 1500
replygump 0x968739db 66
waitforgump 0x968739db 1500
replygump 0x968739db 15
waitforgump 0x968739db 1500
replygump 0x968739db 0
waitforgump 0x54f555df 1500
pause 500
//end filter
while @property 'Contents' 'backpack' < 123
  useobject 'sourcebook'
  waitforgump 0x54f555df 1500
  replygump 0x54f555df 5
  waitforgump 0x54f555df 1500
  if replygump 0x54f555df 5
    waitforgump 0x54f555df 1500
    while @findtype 0x2258 1155 'backpack' 'any'
      @moveitem 'found' 'trashbin'
      pause 500
    endwhile
  else
    break
    pause 200
  endif
endwhile
//================================
//All 10,15,20 Horned BODS FILTER
//BRSK BODS
useobject 'sourcebook'
waitforgump 0x54f555df 1500
replygump 0x54f555df 1
waitforgump 0x968739db 1500
replygump 0x968739db 4
waitforgump 0x968739db 1500
replygump 0x968739db 13
waitforgump 0x968739db 1500
replygump 0x968739db 70
waitforgump 0x968739db 1500
replygump 0x968739db 7
waitforgump 0x968739db 1500
replygump 0x968739db 0
waitforgump 0x54f555df 1500
pause 500
//end filter
while @property 'Contents' 'backpack' < 123
  useobject 'sourcebook'
  waitforgump 0x54f555df 1500
  replygump 0x54f555df 5
  waitforgump 0x54f555df 1500
  if replygump 0x54f555df 5
    waitforgump 0x54f555df 1500
    while @findtype 0x2258 1155 'backpack' 'any'
      waitforproperties 'found' 2500
      if property 'Leather Cap' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Leather Gorget' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Leather Gloves' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Leather Tunic' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Leather Sleeves' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Leather Leggings' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Leather Skirt' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Female Leather Armor' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Leather Shorts' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Leather Bustier' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Studded Bustier' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Studded Armor' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      else
        @moveitem 'found' 'trashbin'
        pause 500
      endif
    endwhile
  else
    break
    pause 200
  endif
endwhile
//================================
//All 10,15,20 Barbed BODs FILTER
//BRSK BODS
useobject 'sourcebook'
waitforgump 0x54f555df 1500
replygump 0x54f555df 1
waitforgump 0x968739db 1500
replygump 0x968739db 4
waitforgump 0x968739db 1500
replygump 0x968739db 13
waitforgump 0x968739db 1500
replygump 0x968739db 74
waitforgump 0x968739db 1500
replygump 0x968739db 7
waitforgump 0x968739db 1500
replygump 0x968739db 0
waitforgump 0x54f555df 1500
pause 500
//end filter
while @property 'Contents' 'backpack' < 123
  useobject 'sourcebook'
  waitforgump 0x54f555df 1500
  replygump 0x54f555df 5
  waitforgump 0x54f555df 1500
  if replygump 0x54f555df 5
    waitforgump 0x54f555df 1500
    while @findtype 0x2258 1155 'backpack' 'any'
      waitforproperties 'found' 2500
      if property 'Leather Cap' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Leather Gorget' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Leather Gloves' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Leather Tunic' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Leather Sleeves' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Leather Leggings' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Leather Skirt' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Female Leather Armor' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Leather Shorts' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Leather Bustier' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Studded Bustier' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      elseif property 'Studded Armor' 'found'
        @moveitem 'found' 'brsk_book'
        pause 500
      else
        @moveitem 'found' 'trashbin'
        pause 500
      endif
    endwhile
  else
    break
    pause 200
  endif
endwhile
//=================================
//All NORMAL large BODS
//TRASH BODS
useobject 'sourcebook'
waitforgump 0x54f555df 15000
replygump 0x54f555df 1
waitforgump 0x968739db 15000
replygump 0x968739db 12
waitforgump 0x968739db 15000
replygump 0x968739db 9
waitforgump 0x968739db 15000
replygump 0x968739db 54
waitforgump 0x968739db 15000
replygump 0x968739db 7
waitforgump 0x968739db 15000
replygump 0x968739db 0
waitforgump 0x54f555df 15000
pause 500
//end filter
while @property 'Contents' 'backpack' < 123
  useobject 'sourcebook'
  waitforgump 0x54f555df 1500
  replygump 0x54f555df 5
  waitforgump 0x54f555df 1500
  if replygump 0x54f555df 5
    waitforgump 0x54f555df 1500
    while @findtype 0x2258 1155 'backpack' 'any'
      @moveitem 'found' 'trashbin'
      pause 500
    endwhile
  else
    break
    pause 200
  endif
endwhile
//=================================
@unsetalias 'brsk_book'
@unsetalias 'hrsk_book'
@unsetalias 'sourcebook'
@unsetalias 'LeatherReset'

2
New member introductions / Howdy Ho Neighbor!
« on: February 13, 2012, 11:21:50 AM »
hey everyone!  I am from Saskatchewan, Canada.  I am 29 and work as an electrician.  I am not married, have no kids and am just living the dream.

I love chickenwings.  (buffalo or hot with a side of dill dip)

I started playing Ultima when it first came out a long time ago (think 1997?), back when i had a 28.8kbps internet speed and the dirty 56k'rs ruled the land.  (curse them still!!  >:()  I quit sometime in 2005.  I came back and tried out Stygian Abyss but i did not like how the game had developed (imbuing, etc).  I have recently started playing on a AoS/SE free server which i am enjoying very much (im a doom/artie whore  ;D).

I have been cycling through many different mmo's like WOW, Rift, Age of Conan, Aion, Warhammer, DC Universe, LOTRO and most recently SWTOR.  None of which seem to rub my sweet spot like UO does.

I found this site when i was trying to figure out an easier way to make potions for pvp/spawning.  After clicking the make last option 200 times for greater cure i thought, "hey im going to get a script for this".  So i asked my friend Google and he showed me the way here.

Anywho, that is all for now, i have to go get me some lunch! 

Pages: [1]