Married to Nourbese
I live in Seven Lakes - west of UArch
Elder in Divine
Elder in 7L Tameri Settlers
Elder in Eighth Lake
| Initiate | Student | Prentice | Journeyman | Scribe | Master | Sage | Oracle | |
| Architecture | X | X | ||||||
| Art | X | X | ||||||
| Body | X | |||||||
| Harmony | X | |||||||
| Leadership | X | |||||||
| Thought | X | |||||||
| Worship | X |
| Type | S1 | S2 | S3 | S4 | S5 | S6 | S7 | M1 | M2 | M3 | M4 | L1 | L2 | H1 |
| Aqua | - | - | - | - | - | - | - | - | - | - | ||||
| Beige | - | - | - | Y | - | - | - | - | - | - | ||||
| Black | - | - | Y | Y | - | - | - | - | - | - | ||||
| Coral | - | - | - | - | - | - | - | |||||||
| Pink | - | - | - | - | - | - | - | - | - | - | ||||
| Smoke | Y | - | - | - | - | Y | Y | |||||||
| White | - | - | - | - | - | - | - | Y | - | - |
| Colour | Small | Medium | Large | Huge |
| Aqua | x | x | ||
| Beige | x | x | ||
| Black | x | x | ||
| Coral | x | |||
| Pink | x | x | ||
| Smoke | x | |||
| White | x | x |
// have wood, hatchet and egg in inventory. // MAKE SURE THE FOLLOWING IS DONE IN THE ORDER SHOWN // pin stash menu in top lh corner. (showing hatchet,eggs and wood) // Pin all 15 tree boxes in lh top corner starting at bottle tree near chest. // checkbox when it asks for setup if windows are NOT placed.
constants
morewood = 240 pickboxx = 12 pickboxy = 40 dropboxx = 820 //was 20 addoffsetx = 350 dropboxy = 680 //was 90 also @ line 49 adddropY = 150 wait = 50 mposxorig = 125 //first pick X mposyorig = 100 //first pick Y droptopickY = 48 droprefreshY = 102 max = 641,541 stashw = 36, 73 runtotop = 700, 80 refreshstash = 90,75 run = 0 mposx = 0 //variable mposy = 0 //variable setup = 0end
procedure resetvar
set mposX = $mposXorig set mposY = $mposYorigend
Procedure setup
loop 3
loop 5
mousepos $pickboxx, $pickboxy
delay $wait
dragto $dropboxx, $dropboxy
delay $wait
compute dropboxy = $dropboxy - $adddropY
end
set dropboxy = 680
compute dropboxx = $dropboxx - $addoffsetx
end
delay $wait
end
procedure clicky
delay 250 leftclick delay 250end
// request settings from user inputs
Form wood, settings
Ed1=Checkbox:CHECK IF SETUP NEEDED:Trueend
FormLoad wood, wood.frm
If ShowForm wood
If wood[ed1] = True
set setup = 1
else
set setup = 0
End
else
stopend
FormSave wood, wood.frm
MousePos 715, 40 delay 250 leftclick delay 1000
if $setup = 1
call setupend
while $run = 0
call resetvar
loop 3
loop 5
MousePos $mposx, $mposy //select pos
call clicky
compute mposy = $mposy + $droptopickY //drop to pick
MousePos $mposx, $mposy
call clicky
delay 3500
compute mposy = $mposy + $droprefreshY //drop to next refresh
end
set mposy = $mposyorig
compute mposx = $mposx+ $addoffsetx
end
mousepos $refreshstash //refresh pos'n
call clicky
mousepos $stashw
call clicky
delay 1 sec
mousepos $max
call clicky
call resetvar
MousePos $mposx, $mposy
delay $morewood sec
end