Macro help

Discussion in 'Renaissance Discussion' started by CaptainMorgan, Apr 5, 2015.

  1. Chris

    Chris Renaissance Staff
    Renaissance Staff

    Joined:
    May 14, 2012
    Messages:
    3,385
    Likes Received:
    6,195
    It will fail to target if the target by type is outside the range you select. So it will still try to target things you don't want but will fail every time until it target the item you are holding.
  2. Laretheo

    Laretheo Active Member
    UO:R Donor

    Joined:
    Jan 9, 2015
    Messages:
    197
    Likes Received:
    121
    i was getting confused thought by item id (being map) was using cartography for map you don't want to cartography the map just id it and then separate the different level's maps in separate bags?

    so like if system message plainly move map to this bag and so on and so on?
  3. CaptainMorgan

    CaptainMorgan Well-Known Member
    UO:R Subscriber

    Joined:
    Jul 14, 2014
    Messages:
    4,658
    Likes Received:
    2,791
    Correct. The Range check at 0 prevents it from targeting anything other than where you are standing
  4. CaptainMorgan

    CaptainMorgan Well-Known Member
    UO:R Subscriber

    Joined:
    Jul 14, 2014
    Messages:
    4,658
    Likes Received:
    2,791

    I'm separating by location. All of the ones I'm currently sorting are Plainly
  5. Laretheo

    Laretheo Active Member
    UO:R Donor

    Joined:
    Jan 9, 2015
    Messages:
    197
    Likes Received:
    121
    ah ok so you have 200 bags and separating by number into each separate bag kk gotcha trying to get sets of 200 for sale? lmao
  6. CaptainMorgan

    CaptainMorgan Well-Known Member
    UO:R Subscriber

    Joined:
    Jul 14, 2014
    Messages:
    4,658
    Likes Received:
    2,791
    40 bags, 5 locations per. Mostly for personal use
  7. Laretheo

    Laretheo Active Member
    UO:R Donor

    Joined:
    Jan 9, 2015
    Messages:
    197
    Likes Received:
    121
    you wasn't lieing when you said you working on a big macro lol jesus lmao you must have massive amounts of maps bro lol
  8. JohnM

    JohnM Well-Known Member
    UO:R Donor

    Joined:
    Mar 27, 2015
    Messages:
    2,245
    Likes Received:
    1,556
    this can now be done by using razor v 1.6.5.16 and scripting and if you want, you can make 205 org agents to do them all (assuming you setup enough bags). Below will sort map locations 1 through 10 as an example

    upload_2020-9-22_18-48-39.png

    if count 'maps' < 1
    hotkey 'Restock Agent-01'
    target 'map_bag'
    wait 1000
    endif
    if insysmsg 'world will save'
    wait 30000
    endif
    if count 'maps' = 1
    overhead 'got map'
    skill itemid
    wait 300
    targettype '5356' backpack
    wait 600
    endif
    if count 'maps' < 1
    stop
    endif
    if insysmsg 'expertly'
    hotkey 'Organizer Agent-20'
    wait 250
    elseif insysmsg 'adeptly'
    hotkey 'Organizer Agent-20'
    wait 250
    elseif insysmsg 'cleverly'
    hotkey 'Organizer Agent-20'
    wait 250
    elseif insysmsg 'deviously'
    hotkey 'Organizer Agent-20'
    wait 250
    elseif insysmsg 'ingeniously'
    hotkey 'Organizer Agent-20'
    wait 250
    elseif insysmsg 'number 10 scrawled'
    hotkey 'Organizer Agent-10'
    wait 250
    elseif insysmsg 'number 1 scrawled'
    hotkey 'Organizer Agent-01'
    wait 250
    elseif insysmsg 'number 2 scrawled'
    hotkey 'Organizer Agent-02'
    wait 250
    elseif insysmsg 'number 3 scrawled'
    hotkey 'Organizer Agent-03'
    wait 250
    elseif insysmsg 'number 4 scrawled'
    hotkey 'Organizer Agent-04'
    wait 250
    elseif insysmsg 'number 5 scrawled'
    hotkey 'Organizer Agent-05'
    wait 250
    elseif insysmsg 'number 6 scrawled'
    hotkey 'Organizer Agent-06'
    wait 250
    elseif insysmsg 'number 7 scrawled'
    hotkey 'Organizer Agent-07'
    wait 250
    elseif insysmsg 'number 8 scrawled'
    hotkey 'Organizer Agent-08'
    wait 250
    elseif insysmsg 'number 9 scrawled'
    hotkey 'Organizer Agent-09'
    wait 250
    else
    hotkey 'Organizer Agent-11'
    endif
    pause 8500
    loop
    Boxer, Kiryana and Keza like this.

Share This Page