Author Topic: Auto Keg maker pandora free server ready  (Read 6438 times)

0 Members and 1 Guest are viewing this topic.

Offline YulackTopic starter

  • Newbie
  • *
  • Posts: 8
  • Activity:
    0%
  • Reputation Power: 1
  • Yulack has no influence.
  • Respect: +3
  • Referrals: 0
    • View Profile
Auto Keg maker pandora free server ready
« on: July 22, 2015, 01:26:07 PM »
+1
allways have more boards and ingots then needed
// macro only checks for bottles Have only enough for your kegs
// uses saw and tool kit
Code: [Select]
for 5 //<-------- just a loop never will it just make  five kegs unless you only have bottles for five
  pause 50
  if not @findtype 0xf0e 0 'backpack' 10
    headmsg 'Out of bottles'
    stop
  endif
  if not counttype 0x1db8 0 'backpack' >= 2
    usetype 0x1034
    waitforgump 0x38920abd 15000 //<------ check gump ids
    replygump 0x38920abd 1 // <------- check gump replys ids make sure its the same on your server
    waitforgump 0x38920abd 15000
    replygump 0x38920abd 23 // <------- check gump replys ids make sure its the same on your server
    waitforgump 0x38920abd 15000
  endif
  if not counttype 0x1db8  0 'backpack' == 2
    replay
  endif
  if not counttype 0x1eb1 0 'backpack' >= 3
    usetype 0x1034
    waitforgump 0x38920abd 15000<------ check gump ids
    replygump 0x38920abd 1 // <------ check gump replys ids make sure its the same on your server
    waitforgump 0x38920abd 15000
    replygump 0x38920abd 21// <------ check gump replys ids make sure its the same on your server
    waitforgump 0x38920abd 15000
  endif
  if not counttype 0x1eb1  0 'backpack' == 3
    replay
  endif
  if not counttype 0x1004  0 'backpack' >= 1
    usetype 0x1eb8
    waitforgump 0x38920abd 15000<------ check gump ids make sure its the same on your server
    pause 500
    replygump 0x38920abd 3 // <------ check gump replys ids make sure its the same on your server
    waitforgump 0x38920abd 15000
    pause 225
    replygump 0x38920abd 22 // <------ check gump replys ids make sure its the same on your server
    waitforgump 0x38920abd 15000
    pause 225
  endif
  if not counttype 0x1004  0 'backpack' == 1
    replay
  endif
  if not counttype 0x1db7 0 'backpack' >= 1
    usetype 0x1eb8
    waitforgump 0x38920abd 15000 <------ check gump ids
    pause 500
    replygump 0x38920abd 3 // <------ check gump replys ids make sure its the same on your server
    waitforgump 0x38920abd 15000
    pause 225
    replygump 0x38920abd 28// <------ check gump replys ids make sure its the same on your server
    waitforgump 0x38920abd 15000
    pause 225
  endif
  if not counttype 0x1db7 0 'backpack' == 1
    replay
  endif
  if not counttype 0xe7f 0 'backpack'  == 1
    usetype 0x1034
    waitforgump 0x38920abd 15000<------ check gump ids
    pause 500
    replygump 0x38920abd 3// <------- check gump replys ids make sure its the same on your server
    waitforgump 0x38920abd 15000
    pause 225
    replygump 0x38920abd 57// <------- check gump replys ids make sure its the same on your server
    waitforgump 0x38920abd 15000
    pause 225
  endif
  if not counttype 0xe7f 0 'backpack' == 1
    replay
  else
    usetype 0x1eb8
    waitforgump 0x38920abd 15000<------ check gump ids
    pause 500
    replygump 0x38920abd 7// <------ check gump replys ids make sure its the same on your server
    waitforgump 0x38920abd 15000
    pause 225
    replygump 0x38920abd 25// <------- check gump replys ids make sure its the same on your server
    waitforgump 0x38920abd 15000
    pause 225
  endif
endfor

Tags: