Razor Requiem Scripts for Absolute Newbies

General discussions concerning the world of Requiem and the community.
User avatar
TheOriginalFive
Posts: 133
Character: Viola Wandren

Razor Requiem Scripts for Absolute Newbies

Post by TheOriginalFive » April 20th, 2021, 10:33 am

Puzzled on how to get started in Razor? Wondering how to save wear and tear on your hands or mouse? Take a gander at some scripts and macros that will be contributed by the community.

Cooking en-masse Script by TheOriginalFive.
Will stop on any extraordinary or masterpiece food.
You need to run a recipe manually once before running this script.
Issues to work on: Doesn't automatically stop when out of ingredients.
21 June 2023: Obsolete with ServUO update allowing bulk creation from crafting menu.
if insysmsg 'extraordinary'
overhead 'Special Dish, sorting out...'
waitforgump 949095101
overhead 'Stopping...'
wait 2000
break
elseif insysmsg 'masterpiece'
overhead 'Extra Special Dish, sorting out...'
waitforgump 949095101
overhead 'Stopping...'
wait 2000
break
else
dclicktype 'dirty pot'
waitforgump 949095101
wait 2000
gumpresponse 21
overhead 'Cooking...'
waitforgump 949095101
gumpclose 949095101
wait 2000
endif
loop
Last edited by TheOriginalFive on June 20th, 2023, 11:40 pm, edited 2 times in total.

Domitian
Posts: 81
Character: Tacitus Etiam

Re: Razor Requiem Scripts for Absolute Newbies

Post by Domitian » April 21st, 2021, 10:04 pm

This is awesome, thank you for posting it. None of mine are that fancy - just standard ones for Lock/Open doors, one-at-a-time crafting for gaining skill on things that craft in bulk (alchemy ingredients mainly) etc

User avatar
TheOriginalFive
Posts: 133
Character: Viola Wandren

Re: Razor Requiem Scripts for Absolute Newbies

Post by TheOriginalFive » April 26th, 2021, 8:17 am

"Set lastplant" Script for Farm Crops
Supplement for the Autopicker
setvar 'lastplant'
waitfortarget
Autopicker Script for Farm Crops
Works on one farm plant at a time provided you run the "set lastplant" script before.
Issues to work on: To integrate the lastplant script into this one.
if insysmsg 'plant bare'
overhead 'Finished picking.'
wait 3000
clearall
wait 3000
break
else
// Lastobject picking, then loop
dclick 'lastplant'
wait 3500
endif
loop

User avatar
TheOriginalFive
Posts: 133
Character: Viola Wandren

Re: Razor Requiem Scripts for Absolute Newbies

Post by TheOriginalFive » May 13th, 2021, 2:28 am


User avatar
TheOriginalFive
Posts: 133
Character: Viola Wandren

Re: Razor Requiem Scripts for Absolute Newbies

Post by TheOriginalFive » May 25th, 2021, 8:02 am

An "updated" multipicking for farms. Best used in 3x3 squares. Comes with matching set last plant script. While you can set it on single plants, be sure to stop the "set lastplant" macro if you don't want to set every single one of the variables.

Edit: Be sure to define the lastplant variables in this tab before trying to run the script. See image.

Image
setvar 'lastplant'
waitfortarget 100
setvar 'lastplant2'
waitfortarget 100
setvar 'lastplant3'
waitfortarget 100
setvar 'lastplant4'
waitfortarget 100
setvar 'lastplant5'
waitfortarget 100
setvar 'lastplant6'
waitfortarget 100
setvar 'lastplant7'
waitfortarget 100
setvar 'lastplant8'
waitfortarget 100
setvar 'lastplant9'
waitfortarget 100
This version will continue even if one of the plants turns bare from picking. Adjust the wait times as you see fit.
// Lastobject picking, then loop
dclick 'lastplant'
wait 1000
dclick 'lastplant2'
wait 1000
dclick 'lastplant3'
wait 1000
dclick 'lastplant4'
wait 1000
dclick 'lastplant5'
wait 1000
dclick 'lastplant6'
wait 1000
dclick 'lastplant7'
wait 1000
dclick 'lastplant8'
wait 1000
dclick 'lastplant9'
wait 1000
loop
Last edited by TheOriginalFive on May 25th, 2021, 7:44 pm, edited 1 time in total.

User avatar
meenauh
Posts: 23
Character: Meenauh Silberwald

Re: Razor Requiem Scripts for Absolute Newbies

Post by meenauh » May 25th, 2021, 3:00 pm

Foraging Script (WIP)

This script is the overhaul of my macros shared above. It's not as spammy and considers which plant is nearby (instead of blindly trying to gather everything).

It will collect the closest plant in the range of 2 tiles and will clean the root (with the Coroner perk).
If you add "loop" at the end, it can be used on 3×3 farming fields (should be stopped manually).

The current list is NOT FULL, so I'll be updating as I'll be encountering new plants (or you can send me IDs).

The current script includes:

Code: Select all

- red pepper
- nightshade
- alfalfa
- bloodroot
- oleander
- mandrake
- ginseng
- black pearl
- garlic
- broccoli
- asparagus
- corn
- onions
- carrots or beet
- cabbage (only 1 type)
- cotton
- flax
Last update: June 16th, 2021
Added mandrake, oleander, bloodroot, alfalfa, nightshade, red pepper

Code: Select all

//// REAGENTS
# mandrake
if findtype '6367' true
    dclicktype '6367' true
    wait 3000
    
    if not insysmsg "plant bare"
        while insysmsg 'You harvest' or insysmsg 'You fail'
            dclicktype '6367' true
            wait 500
            if insysmsg "plant bare"
                dclicktype '3169' true
            endif
            wait 2500
        endwhile
    endif
endif

# ginseng
if findtype '6378' true
    dclicktype '6378' true
    wait 3000
    
    if not insysmsg "plant bare"
        while insysmsg 'You harvest' or insysmsg 'You fail'
            dclicktype '6378' true
            wait 500
            if insysmsg "plant bare"
                dclicktype '3198' true
            endif
            wait 2500
        endwhile
    endif
endif

# oleander
if findtype '15830' true
    dclicktype '15830' true
    wait 3000
    
    if not insysmsg "plant bare"
        while insysmsg 'You harvest' or insysmsg 'You fail'
            dclicktype '15830' true
            wait 500
            if insysmsg "plant bare"
                dclicktype '15701' true
            endif
            wait 2500
        endwhile
    endif
endif

# bloodroot
if findtype '3208' true
    dclicktype '3208' true
    wait 3000
    
    if not insysmsg "plant bare"
        while insysmsg 'You harvest' or insysmsg 'You fail'
            dclicktype '3208' true
            wait 500
            if insysmsg "plant bare"
                dclicktype '15701' true
            endif
            wait 2500
        endwhile
    endif
endif

# alfalfa
if findtype '3209' true
    dclicktype '3209' true
    wait 3000
    
    if not insysmsg "plant bare"
        while insysmsg 'You harvest' or insysmsg 'You fail'
            dclicktype '3209' true
            wait 500
            if insysmsg "plant bare"
                dclicktype '3219' true
            endif
            wait 2500
        endwhile
    endif
endif

# nightshade
if findtype '6373' true
    dclicktype '6373' true
    wait 3000
    
    if not insysmsg "plant bare"
        while insysmsg 'You harvest' or insysmsg 'You fail'
            dclicktype '6373' true
            wait 500
            if insysmsg "plant bare"
                dclicktype '6372' true
            endif
            wait 2500
        endwhile
    endif
endif

# black pearl
if findtype '3566' true
    dclicktype '3566' true
    wait 3000
    
    if not insysmsg "plant bare"
        while insysmsg 'You harvest' or insysmsg 'You fail'
            dclicktype '3566' true
            wait 500
            if insysmsg "plant bare"
                dclicktype '3565' true
            endif
            wait 2500
        endwhile
    endif
endif

# garlic
if findtype '3183' true
    dclicktype '3183' true
    wait 3000
    
    if not insysmsg "plant bare"
        while insysmsg 'You harvest' or insysmsg 'You fail'
            dclicktype '3183' true
            wait 500
            if insysmsg "plant bare"
                dclicktype '3177' true
            endif
            wait 2500
        endwhile
    endif
endif


//// VEGS
# broccoli
if findtype '3271' true
    dclicktype '3271' true
    wait 3000
    
    if not insysmsg "plant bare"
        while insysmsg 'You harvest' or insysmsg 'You fail'
            dclicktype '3271' true
            wait 500
            if insysmsg "plant bare"
                dclicktype '3170' true
            endif
            wait 2500
        endwhile
    endif
endif

# red pepper
if findtype '3220' true
    dclicktype '3220' true
    wait 3000
    
    if not insysmsg "plant bare"
        while insysmsg 'You harvest' or insysmsg 'You fail'
        dclicktype '3220' true
            wait 500
            if insysmsg "plant bare"
                dclicktype '3219' true
            endif
            wait 2500
        endwhile
    endif
endif

# asparagus
if findtype '3169' true
    dclicktype '3169' true
    wait 3000
    
    if not insysmsg "plant bare"
        while insysmsg 'You harvest' or insysmsg 'You fail'
            dclicktype '3169' true
            wait 500
            if insysmsg "plant bare"
                dclicktype '3169' true
            endif
            wait 2500
        endwhile
    endif
endif

if findtype '3170' true
    dclicktype '3170' true
    wait 3000
    
    if not insysmsg "plant bare"
        while insysmsg 'You harvest' or insysmsg 'You fail'
            dclicktype '3170' true
            wait 500
            if insysmsg "plant bare"
                dclicktype '3170' true
            endif
            wait 2500
        endwhile
    endif
endif

if findtype '3171' true
    dclicktype '3171' true
    wait 3000
    
    if not insysmsg "plant bare"
        while insysmsg 'You harvest' or insysmsg 'You fail'
            dclicktype '3171' true
            wait 500
            if insysmsg "plant bare"
                dclicktype '3171' true
            endif
            wait 2500
        endwhile
    endif
endif

# corn
if findtype '3197' true
    dclicktype '3197' true
    wait 3000
    
    if not insysmsg "plant bare"
        while insysmsg 'You harvest' or insysmsg 'You fail'
            dclicktype '3197' true
            wait 500
            if insysmsg "plant bare"
                dclicktype '3198' true
            endif
            wait 2500
        endwhile
    endif
endif

# onions
if findtype '3183' true
    dclicktype '3183' true
    wait 3000
    
    if not insysmsg "plant bare"
        while insysmsg 'You harvest' or insysmsg 'You fail'
            dclicktype '3183' true
            wait 500
            if insysmsg "plant bare"
                dclicktype '3177' true
            endif
            wait 2500
        endwhile
    endif
endif

# carrots or beet
if findtype '3190' true
    dclicktype '3190' true
    wait 3000
    
    if not insysmsg "plant bare"
        while insysmsg 'You harvest' or insysmsg 'You fail'
            dclicktype '3190' true
            wait 500
            if insysmsg "plant bare"
                dclicktype '3183' true
                dclicktype '3177' true
            endif
            wait 2500
        endwhile
    endif
endif

# cabbage (3195 will not work until the id of gathered cabbage is not fixed)
#if findtype '3195' true 
#    dclicktype '3195' true
#    wait 3000
#    
#    if not insysmsg "plant bare"
#        while insysmsg 'You harvest' or insysmsg 'You fail'
#            dclicktype '3195' true
#            wait 500
#            if insysmsg "plant bare"
#                dclicktype '3169' true
#            endif
#            wait 2500
#        endwhile
#    endif
#endif

if findtype '3196' true
    dclicktype '3196' true
    wait 3000
    
    if not insysmsg "plant bare"
        while insysmsg 'You harvest' or insysmsg 'You fail'
            dclicktype '3196' true
            wait 500
            if insysmsg "plant bare"
                dclicktype '3169' true
            endif
            wait 2500
        endwhile
    endif
endif


//// TAILORING
# cotton
if findtype '3151' true
    dclicktype '3151' true
    wait 3000
    
    if not insysmsg "plant bare"
        while insysmsg 'You harvest' or insysmsg 'You fail'
            dclicktype '3151' true
            wait 500
            if insysmsg "plant bare"
                dclicktype '3155' true
                dclicktype '3156' true
            endif
            wait 2500
        endwhile
    endif
endif

if findtype '3152' true
    dclicktype '3152' true
    wait 3000
    
    if not insysmsg "plant bare"
        while insysmsg 'You harvest' or insysmsg 'You fail'
            dclicktype '3152' true
            wait 500
            if insysmsg "plant bare"
                dclicktype '3155' true
                dclicktype '3156' true
            endif
            wait 2500
        endwhile
    endif
endif

# flax
if findtype '6809' true
    dclicktype '6809' true
    wait 3000
    
    if not insysmsg "plant bare"
        while insysmsg 'You harvest' or insysmsg 'You fail'
            dclicktype '6809' true
            wait 500
            if insysmsg "plant bare"
                dclicktype '6810' true
            endif
            wait 2500
        endwhile
    endif
endif

if findtype '6810' true
    dclicktype '6810' true
    wait 3000
    
    if not insysmsg "plant bare"
        while insysmsg 'You harvest' or insysmsg 'You fail'
            dclicktype '6810' true
            wait 500
            if insysmsg "plant bare"
                dclicktype '6810' true
            endif
            wait 2500
        endwhile
    endif
endif

if findtype '6811' true
    dclicktype '6811' true
    wait 3000
    
    if not insysmsg "plant bare"
        while insysmsg 'You harvest' or insysmsg 'You fail'
            dclicktype '6811' true
            wait 500
            if insysmsg "plant bare"
                dclicktype '6810' true
            endif
            wait 2500
        endwhile
    endif
endif
Meenauh as 'me' and 'now'

User avatar
TheOriginalFive
Posts: 133
Character: Viola Wandren

Re: Razor Requiem Scripts for Absolute Newbies

Post by TheOriginalFive » June 19th, 2021, 9:52 am

Auto-caring system for a single plant at a time. It will then ask you to choose another plant to care for.

To work on:
Have it stop upon encountering maxed out fertilizer and water.
Have it work on several plants in succession, if possible. (Done, up to 5 times.)

Code: Select all

//Plant autocare system
gumpclose 151524110
    setvar 'lastplant'
    waitfortarget 100
dclick 'lastplant'
waitforgump 151524110
wait 1000
gumpresponse 5
waitforgump 151524110
wait 1000
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants'
wait 1000
gumpresponse 5
waitforgump 151524110
wait 1000
gumpresponse 4
waitforgump 151524110
    loop
Plant caretaking system that runs up to 5 times.

Code: Select all

    setvar 'lastplant'
    waitfortarget 100
    setvar 'lastplant2'
    waitfortarget 100
    setvar 'lastplant3'
    waitfortarget 100
    setvar 'lastplant4'
    waitfortarget 100
    setvar 'lastplant5'
    waitfortarget 100
dclick 'lastplant'
waitforgump 151524110
wait 1000
gumpresponse 5
waitforgump 151524110
wait 1000
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants'
wait 1000
gumpresponse 5
waitforgump 151524110
wait 1000
gumpresponse 4
waitforgump 151524110
wait 1000
gumpclose 151524110
//lastplant2, 3, 4, 5, etc.
dclick 'lastplant2'
waitforgump 151524110
wait 1000
gumpresponse 5
waitforgump 151524110
wait 1000
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants'
wait 1000
gumpresponse 5
waitforgump 151524110
wait 1000
gumpresponse 4
waitforgump 151524110
wait 1000
gumpclose 151524110
//lastplant3
dclick 'lastplant3'
waitforgump 151524110
wait 1000
gumpresponse 5
waitforgump 151524110
wait 1000
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants'
wait 1000
gumpresponse 5
waitforgump 151524110
wait 1000
gumpresponse 4
waitforgump 151524110
wait 1000
gumpclose 151524110
//4
dclick 'lastplant4'
waitforgump 151524110
wait 1000
gumpresponse 5
waitforgump 151524110
wait 1000
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants'
wait 1000
gumpresponse 5
waitforgump 151524110
wait 1000
gumpresponse 4
waitforgump 151524110
wait 1000
gumpclose 151524110
//5
dclick 'lastplant5'
waitforgump 151524110
wait 1000
gumpresponse 5
waitforgump 151524110
wait 1000
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants'
wait 1000
gumpresponse 5
waitforgump 151524110
wait 1000
gumpresponse 4
waitforgump 151524110
wait 1000
gumpclose 151524110

User avatar
TheOriginalFive
Posts: 133
Character: Viola Wandren

Re: Razor Requiem Scripts for Absolute Newbies

Post by TheOriginalFive » July 13th, 2021, 11:19 pm

An autoplanter script that works best on 5 x 5 farm squares. Also includes a query to drop poo/fertilizer before planting, if you want that. 1000 ms is the fastest I have found that will not skip seeds.

Code: Select all

//Drop poo. Set last target seeds
overhead 'Select poo to drop'
say '[drop'
waitfortarget 
wait 3500
overhead 'Poo dropped'
wait 1000
overhead 'Select seeds'
setvar 'seedling1'
overhead 'Seeds chosen'
wait 1000
//Walk 25 squares while clicking on seeds
overhead 'Row 1'
wait 1000
dclick 'seedling1' wait 1000
walk south
wait 1000
dclick 'seedling1' wait 1000
walk south
wait 1000
dclick 'seedling1' wait 1000
walk south
wait 1000
dclick 'seedling1' wait 1000
walk south
wait 1000
dclick 'seedling1' wait 1000
walk south
wait 1000
dclick 'seedling1' wait 1000
walk east
wait 1000
overhead 'Row 2'
walk east
wait 1000
dclick 'seedling1' wait 1000
walk north
wait 1000
dclick 'seedling1' wait 1000
walk north
wait 1000
dclick 'seedling1' wait 1000
walk north
wait 1000
dclick 'seedling1' wait 1000
walk north
wait 1000
dclick 'seedling1' wait 1000
walk north
wait 1000
dclick 'seedling1' wait 1000
walk east
wait 1000
overhead 'Row 3'
walk east
wait 1000
dclick 'seedling1' wait 1000
walk south
wait 1000
dclick 'seedling1' wait 1000
walk south
wait 1000
dclick 'seedling1' wait 1000
walk south
wait 1000
dclick 'seedling1' wait 1000
walk south
wait 1000
dclick 'seedling1' wait 1000
walk south
wait 1000
dclick 'seedling1' wait 1000
walk east
wait 1000
overhead 'Row 4'
walk east
wait 1000
dclick 'seedling1' wait 1000
walk north
wait 1000
dclick 'seedling1' wait 1000
walk north
wait 1000
dclick 'seedling1' wait 1000
walk north
wait 1000
dclick 'seedling1' wait 1000
walk north
wait 1000
dclick 'seedling1' wait 1000
walk north
wait 1000
dclick 'seedling1' wait 1000
walk east
wait 1000
overhead 'Row 5'
walk east
wait 1000
dclick 'seedling1' wait 1000
walk south
wait 1000
dclick 'seedling1' wait 1000
walk south
wait 1000
dclick 'seedling1' wait 1000
walk south
wait 1000
dclick 'seedling1' wait 1000
walk south
wait 1000
dclick 'seedling1' wait 1000
walk south
wait 1000
dclick 'seedling1' wait 1000
overhead 'Done planting'

User avatar
TheOriginalFive
Posts: 133
Character: Viola Wandren

Re: Razor Requiem Scripts for Absolute Newbies

Post by TheOriginalFive » June 8th, 2022, 10:28 pm

Some farming scripts on the industrial scale. Good for 100 plants. Needs initial setup in Razor's Scripts > Options tab before use ingame.
Setting 100 Plants

Code: Select all

clearall 
    setvar 'lastplant'
    waitfortarget 300
    setvar 'lastplant2'
    waitfortarget 300
    setvar 'lastplant3'
    waitfortarget 300
    setvar 'lastplant4'
    waitfortarget 300
    setvar 'lastplant5'
    waitfortarget 300
    setvar 'lastplant6'
    waitfortarget 300
    setvar 'lastplant7'
    waitfortarget 300
    setvar 'lastplant8'
    waitfortarget 300
    setvar 'lastplant9'
    waitfortarget 300
    setvar 'lastplant10'
    waitfortarget 300
    setvar 'lastplant11'
    waitfortarget 300
    setvar 'lastplant12'
    waitfortarget 300
    setvar 'lastplant13'
    waitfortarget 300
    setvar 'lastplant14'
    waitfortarget 300
    setvar 'lastplant15'
    waitfortarget 300
    setvar 'lastplant16'
    waitfortarget 300
    setvar 'lastplant17'
    waitfortarget 300
    setvar 'lastplant18'
    waitfortarget 300
    setvar 'lastplant19'
    waitfortarget 300
    setvar 'lastplant20'
    waitfortarget 300
    setvar 'lastplant21'
    waitfortarget 300
    setvar 'lastplant22'
    waitfortarget 300
    setvar 'lastplant23'
    waitfortarget 300
    setvar 'lastplant24'
    waitfortarget 300
    setvar 'lastplant25'
    waitfortarget 300
    setvar 'lastplant26'
    waitfortarget 300
    setvar 'lastplant27'
    waitfortarget 300
    setvar 'lastplant28'
    waitfortarget 300
    setvar 'lastplant29'
    waitfortarget 300
    setvar 'lastplant30'
    waitfortarget 300
    setvar 'lastplant31'
    waitfortarget 300
    setvar 'lastplant32'
    waitfortarget 300
    setvar 'lastplant33'
    waitfortarget 300
    setvar 'lastplant34'
    waitfortarget 300
    setvar 'lastplant35'
    waitfortarget 300
    setvar 'lastplant36'
    waitfortarget 300
    setvar 'lastplant37'
    waitfortarget 300
    setvar 'lastplant38'
    waitfortarget 300
    setvar 'lastplant39'
    waitfortarget 300
    setvar 'lastplant40'
    waitfortarget 300
    setvar 'lastplant41'
    waitfortarget 300
    setvar 'lastplant42'
    waitfortarget 300
    setvar 'lastplant43'
    waitfortarget 300
    setvar 'lastplant44'
    waitfortarget 300
    setvar 'lastplant45'
    waitfortarget 300
    setvar 'lastplant46'
    waitfortarget 300
    setvar 'lastplant47'
    waitfortarget 300
    setvar 'lastplant48'
    waitfortarget 300
    setvar 'lastplant49'
    waitfortarget 300
    setvar 'lastplant50'
    waitfortarget 300
    setvar 'lastplant51'
    waitfortarget 300
    setvar 'lastplant52'
    waitfortarget 300
    setvar 'lastplant53'
    waitfortarget 300
    setvar 'lastplant54'
    waitfortarget 300
    setvar 'lastplant55'
    waitfortarget 300
    setvar 'lastplant56'
    waitfortarget 300
    setvar 'lastplant57'
    waitfortarget 300
    setvar 'lastplant58'
    waitfortarget 300
    setvar 'lastplant59'
    waitfortarget 300
    setvar 'lastplant60'
    waitfortarget 300
    setvar 'lastplant61'
    waitfortarget 300
    setvar 'lastplant62'
    waitfortarget 300
    setvar 'lastplant63'
    waitfortarget 300
    setvar 'lastplant64'
    waitfortarget 300
    setvar 'lastplant65'
    waitfortarget 300
    setvar 'lastplant66'
    waitfortarget 300
    setvar 'lastplant67'
    waitfortarget 300
    setvar 'lastplant68'
    waitfortarget 300
    setvar 'lastplant69'
    waitfortarget 300
    setvar 'lastplant70'
    waitfortarget 300
    setvar 'lastplant71'
    waitfortarget 300
    setvar 'lastplant72'
    waitfortarget 300
    setvar 'lastplant73'
    waitfortarget 300
    setvar 'lastplant74'
    waitfortarget 300
    setvar 'lastplant75'
    waitfortarget 300
    setvar 'lastplant76'
    waitfortarget 300
    setvar 'lastplant77'
    waitfortarget 300
    setvar 'lastplant78'
    waitfortarget 300
    setvar 'lastplant79'
    waitfortarget 300
    setvar 'lastplant80'
    waitfortarget 300
    setvar 'lastplant81'
    waitfortarget 300
    setvar 'lastplant82'
    waitfortarget 300
    setvar 'lastplant83'
    waitfortarget 300
    setvar 'lastplant84'
    waitfortarget 300
    setvar 'lastplant85'
    waitfortarget 300
    setvar 'lastplant86'
    waitfortarget 300
    setvar 'lastplant87'
    waitfortarget 300
    setvar 'lastplant88'
    waitfortarget 300
    setvar 'lastplant89'
    waitfortarget 300
    setvar 'lastplant90'
    waitfortarget 300
    setvar 'lastplant91'
    waitfortarget 300
    setvar 'lastplant92'
    waitfortarget 300
    setvar 'lastplant93'
    waitfortarget 300
    setvar 'lastplant94'
    waitfortarget 300
    setvar 'lastplant95'
    waitfortarget 300
    setvar 'lastplant96'
    waitfortarget 300
    setvar 'lastplant97'
    waitfortarget 300
    setvar 'lastplant98'
    waitfortarget 300
    setvar 'lastplant99'
    waitfortarget 300
    setvar 'lastplant100'
    waitfortarget 300
13 July 2023: Gump ID changed due to ServUO updates. Recommended to use the streamlined version here: viewtopic.php?p=8307#p8307
Tending 100 Plants

Code: Select all

//Runs up to 100 plants.
dclick 'lastplant'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 1'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//lastplant2, 3, 4, 5, etc.
dclick 'lastplant2'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 2'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//lastplant3
dclick 'lastplant3'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 3'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//4
dclick 'lastplant4'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 4'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//5
dclick 'lastplant5'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 5'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//6
dclick 'lastplant6'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 6'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//7
dclick 'lastplant7'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 7'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//8
dclick 'lastplant8'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 8'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//9
dclick 'lastplant9'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 9'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//10
dclick 'lastplant10'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 10'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//11
dclick 'lastplant11'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 11'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//12
dclick 'lastplant12'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 12'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//13
dclick 'lastplant13'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 13'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//14
dclick 'lastplant14'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 14'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//15
dclick 'lastplant15'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 15'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//16
dclick 'lastplant16'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 16'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//17
dclick 'lastplant17'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 17'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//18
dclick 'lastplant18'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 18'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//19
dclick 'lastplant19'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 19'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//20
dclick 'lastplant20'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 20'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//21
dclick 'lastplant21'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 21'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//22
dclick 'lastplant22'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 22'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//23
dclick 'lastplant23'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 23'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//24
dclick 'lastplant24'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 24'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//25
dclick 'lastplant25'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 25'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
overhead 'Move me to the next plot?'
wait 5000
//26
dclick 'lastplant26'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 26'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//27
dclick 'lastplant27'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 27'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//28
dclick 'lastplant28'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 28'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//29
dclick 'lastplant29'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 29'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//30
dclick 'lastplant30'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 30'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//31
dclick 'lastplant31'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 31'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//32
dclick 'lastplant32'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 32'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//33
dclick 'lastplant33'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 33'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//34
dclick 'lastplant34'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 34'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//35
dclick 'lastplant35'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 35'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//36
dclick 'lastplant36'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 36'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//37
dclick 'lastplant37'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 37'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//38
dclick 'lastplant38'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 38'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//39
dclick 'lastplant39'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 39'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//40
dclick 'lastplant40'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 40'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//41
dclick 'lastplant41'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 41'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//42
dclick 'lastplant42'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 42'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//43
dclick 'lastplant43'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 43'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//44
dclick 'lastplant44'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 44'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//45
dclick 'lastplant45'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 45'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//46
dclick 'lastplant46'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 46'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//47
dclick 'lastplant47'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 47'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//48
dclick 'lastplant48'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 48'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//49
dclick 'lastplant49'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 49'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
wait 1000
//50
dclick 'lastplant50'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 50'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
overhead 'Move me to the next plot?'
wait 5000
//51-100
dclick 'lastplant51'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 51'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//52
dclick 'lastplant52'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 52'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//53
dclick 'lastplant53'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 53'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//54
dclick 'lastplant54'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 54'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//55
dclick 'lastplant55'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 55'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//56
dclick 'lastplant56'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 56'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//57
dclick 'lastplant57'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 57'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//58
dclick 'lastplant58'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 58'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//59
dclick 'lastplant59'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 59'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//60
dclick 'lastplant60'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 60'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//61
dclick 'lastplant61'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 61'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//62
dclick 'lastplant62'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 62'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//63
dclick 'lastplant63'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 63'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//64
dclick 'lastplant64'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 64'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//65
dclick 'lastplant65'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 65'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//66
dclick 'lastplant66'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 66'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//67
dclick 'lastplant67'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 67'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//68
dclick 'lastplant68'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 68'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//69
dclick 'lastplant69'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 69'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//70
dclick 'lastplant70'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 70'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//71
dclick 'lastplant71'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 71'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//72
dclick 'lastplant72'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 72'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//73
dclick 'lastplant73'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 73'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//74
dclick 'lastplant74'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 74'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//75
dclick 'lastplant75'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 75'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
overhead 'Move me to the next plot?'
wait 5000
//76
dclick 'lastplant76'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 76'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//77
dclick 'lastplant77'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 77'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//78
dclick 'lastplant78'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 78'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//79
dclick 'lastplant79'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 79'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//80
dclick 'lastplant80'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 80'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//81
dclick 'lastplant81'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 81'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//82
dclick 'lastplant82'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 82'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//83
dclick 'lastplant83'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 83'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//84
dclick 'lastplant84'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 84'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//85
dclick 'lastplant85'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 85'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//86
dclick 'lastplant86'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 86'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//87
dclick 'lastplant87'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 87'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//88
dclick 'lastplant88'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 88'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//89
dclick 'lastplant89'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 89'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//90
dclick 'lastplant90'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 90'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//91
dclick 'lastplant91'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 91'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//92
dclick 'lastplant92'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 92'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//93
dclick 'lastplant93'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 93'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//94
dclick 'lastplant94'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 94'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//95
dclick 'lastplant95'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 95'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//96
dclick 'lastplant96'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 96'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//97
dclick 'lastplant97'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 97'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//98
dclick 'lastplant98'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 98'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
//99
dclick 'lastplant99'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 99'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
wait 1000
//100
dclick 'lastplant100'
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
overhead 'Taking care of plants 100'
wait 100
gumpresponse 5
waitforgump 151524110
wait 100
gumpresponse 4
waitforgump 151524110
wait 100
gumpclose 151524110
overhead 'Move me to the next plot?'
wait 20000
loop
[/code]

Recommended to use the alternative Autopicker made by Ashford.
Picking 100 Plants

Code: Select all

    // Lastobject picking, then loop
    dclick 'lastplant'
    wait 200
    dclick 'lastplant2'
    wait 200
    dclick 'lastplant3'
    wait 200
    dclick 'lastplant4'
    wait 200
    dclick 'lastplant5'
    wait 200
    dclick 'lastplant6'
    wait 200
    dclick 'lastplant7'
    wait 200
    dclick 'lastplant8'
    wait 200
    dclick 'lastplant9'
    wait 200
    dclick 'lastplant10'
    wait 200
    dclick 'lastplant11'
    wait 200
    dclick 'lastplant12'
    wait 200
    dclick 'lastplant13'
    wait 200
    dclick 'lastplant14'
    wait 200
    dclick 'lastplant15'
    wait 200
    dclick 'lastplant16'
    wait 200
    dclick 'lastplant17'
    wait 200
    dclick 'lastplant18'
    wait 200
    dclick 'lastplant19'
    wait 200
    dclick 'lastplant20'
    wait 200
    dclick 'lastplant21'
    wait 200
    dclick 'lastplant22'
    wait 200
    dclick 'lastplant23'
    wait 200
    dclick 'lastplant24'
    wait 200
    dclick 'lastplant25'
    wait 200
    dclick 'lastplant26'
    wait 200
    dclick 'lastplant27'
    wait 200
    dclick 'lastplant28'
    wait 200
    dclick 'lastplant29'
    wait 200
    dclick 'lastplant30'
    wait 200
    dclick 'lastplant31'
    wait 200
    dclick 'lastplant32'
    wait 200
    dclick 'lastplant33'
    wait 200
    dclick 'lastplant34'
    wait 200
    dclick 'lastplant35'
    wait 200
    dclick 'lastplant36'
    wait 200
    dclick 'lastplant37'
    wait 200
    dclick 'lastplant38'
    wait 200
    dclick 'lastplant39'
    wait 200
    dclick 'lastplant40'
    wait 200
    dclick 'lastplant41'
    wait 200
    dclick 'lastplant42'
    wait 200
    dclick 'lastplant43'
    wait 200
    dclick 'lastplant44'
    wait 200
    dclick 'lastplant45'
    wait 200
    dclick 'lastplant46'
    wait 200
    dclick 'lastplant47'
    wait 200
    dclick 'lastplant48'
    wait 200
    dclick 'lastplant49'
    wait 200
    dclick 'lastplant50'
    wait 200
    dclick 'lastplant51'
    wait 200
    dclick 'lastplant52'
    wait 200
    dclick 'lastplant53'
    wait 200
    dclick 'lastplant54'
    wait 200
    dclick 'lastplant55'
    wait 200
    dclick 'lastplant56'
    wait 200
    dclick 'lastplant57'
    wait 200
    dclick 'lastplant58'
    wait 200
    dclick 'lastplant59'
    wait 200
    dclick 'lastplant60'
    wait 200
    dclick 'lastplant61'
    wait 200
    dclick 'lastplant62'
    wait 200
    dclick 'lastplant63'
    wait 200
    dclick 'lastplant64'
    wait 200
    dclick 'lastplant65'
    wait 200
    dclick 'lastplant66'
    wait 200
    dclick 'lastplant67'
    wait 200
    dclick 'lastplant68'
    wait 200
    dclick 'lastplant69'
    wait 200
    dclick 'lastplant70'
    wait 200
    dclick 'lastplant71'
    wait 200
    dclick 'lastplant72'
    wait 200
    dclick 'lastplant73'
    wait 200
    dclick 'lastplant74'
    wait 200
    dclick 'lastplant75'
    wait 200
    dclick 'lastplant76'
    wait 200
    dclick 'lastplant77'
    wait 200
    dclick 'lastplant78'
    wait 200
    dclick 'lastplant79'
    wait 200
    dclick 'lastplant80'
    wait 200
    dclick 'lastplant81'
    wait 200
    dclick 'lastplant82'
    wait 200
    dclick 'lastplant83'
    wait 200
    dclick 'lastplant84'
    wait 200
    dclick 'lastplant85'
    wait 200
    dclick 'lastplant86'
    wait 200
    dclick 'lastplant87'
    wait 200
    dclick 'lastplant88'
    wait 200
    dclick 'lastplant89'
    wait 200
    dclick 'lastplant90'
    wait 200
    dclick 'lastplant91'
    wait 200
    dclick 'lastplant92'
    wait 200
    dclick 'lastplant93'
    wait 200
    dclick 'lastplant94'
    wait 200
    dclick 'lastplant95'
    wait 200
    dclick 'lastplant96'
    wait 200
    dclick 'lastplant97'
    wait 200
    dclick 'lastplant98'
    wait 200
    dclick 'lastplant99'
    wait 200
    dclick 'lastplant100'
    wait 200
loop
Optional Module: Auto-walk to Tend Plants
Insert this code block into AutoTend Plants after every 25th crop.
Depending on how your plots are laid out, you'll want to change directions. Be sure that you are facing the direction listed in the code.
Effective for a 5*5 farm plot.

Code: Select all

wait 1000
walk 'West'
wait 1000
walk 'West'
wait 1000
walk 'West'
wait 1000
walk 'West'
wait 1000
walk 'West'
wait 1000
walk 'West'
wait 1500
Last edited by TheOriginalFive on July 13th, 2023, 8:32 am, edited 2 times in total.

User avatar
TheOriginalFive
Posts: 133
Character: Viola Wandren

Re: Razor Requiem Scripts for Absolute Newbies

Post by TheOriginalFive » May 1st, 2023, 9:26 pm

A picking plants script made by Ashford and added on by yours truly, along with Meenauh's initial ID listings.

The only thing it won't pick or clean up is cabbage due to ID confusion.

To do: Add toxicology plants' farming remains. Double check and add pumpkin plants and wheat.

Pick EVERYTHING in the Garden

Code: Select all

//Edit the turnip/corn/cotton etc with asset names from >info
//to fix: Stop EATING the crops (Cabbage cannot be fixed)
//asparagus, radish or turnip
if findtype '3171' 'true'
    dclicktype '3171' 'true'
wait 200
endif
//ginger, chili
if findtype 'bulrushes' 'true'
    dclicktype 'bulrushes' 'true'
wait 200
endif
//peas
if findtype '3311' 'true'
    dclicktype '3311' 'true'
wait 200
endif
//pumpkin
if findtype '3167' 'true'
    dclicktype '3167' 'true'
wait 200
endif
//wheat
if findtype 'wheat sprouts' 'true'
    dclicktype 'wheat sprouts' 'true'
wait 200
endif
//bloodmoss
if findtype '15828' 'true'
    dclicktype '15828' 'true'
wait 200
endif
//mandrake
if findtype '6367' 'true'
    dclicktype '6367' 'true'
wait 200
endif
//cauliflower
if findtype '3334' 'true'
    dclicktype '3334' 'true'
wait 200
endif
//wolfsbane
if findtype '15752' 'true'
    dclicktype '15752' 'true'
wait 200
endif
if findtype 'elephant ear plant' 'true'
    dclicktype 'elephant ear plant' 'true'
wait 200
endif
if findtype 'campion flowers' 'true'
    dclicktype 'campion flowers' 'true'
wait 200
//cucumbers
endif
if findtype 'lilypads' 'true'
    dclicktype 'lilypads' 'true'
wait 200
endif
if findtype 'corn stalk' 'true'
    dclicktype 'corn stalk' 'true'
wait 200
endif
//broccoli
if findtype 'weed' 'true'
    dclicktype 'weed' 'true'
wait 200
endif
if findtype 'Tomato Plant Stage F' 'true'
    dclicktype 'Tomato Plant Stage F' 'true'
wait 200
endif
//garlic, celery or onions
if findtype '3183' 'true'
    dclicktype '3183' 'true'
wait 200
endif
//beets, radish or carrots
if findtype '3190' 'true'
    dclicktype '3190' 'true'
wait 200
endif
//general plant cleanup carrot-type / cotton / herb-type remains
if findtype 'vines' 'true'
    dclicktype 'vines' 'true'
wait 200
endif
if findtype 'blade plant' 'true'
    dclicktype 'blade plant' 'true'
wait 200
endif
if findtype '3177' 'true'
    dclicktype '3177' 'true'
wait 200
endif
if findtype '3156' 'true'
    dclicktype '3156' 'true'
wait 200
endif
if findtype '3155' 'true'
    dclicktype '3155' 'true'
wait 200
endif
if findtype '3170' 'true'
    dclicktype '3170' 'true'
wait 200
endif
if findtype 'Tomato Plant Stage T' 'true'
    dclicktype 'Tomato Plant Stage T' 'true'
wait 200
endif
//cotton has 2 directions
if findtype '3151' 'true'
    dclicktype '3151' 'true'
wait 200
endif
if findtype '3152' 'true'
    dclicktype '3152' 'true'
wait 200
endif
if findtype 'flax' 'true'
    dclicktype 'flax' 'true'
wait 200
endif
if findtype 'ginseng' 'true'
    dclicktype 'ginseng' 'true'
wait 200
endif
wait 600
loop

Post Reply