annuncio

Comprimi
Ancora nessun annuncio.

[EASYUO] cerco script che trasforma board in shaft

Comprimi
X
 
  • Filtro
  • Ora
  • Visualizza
Elimina tutto
nuovi messaggi

  • [EASYUO] cerco script che trasforma board in shaft

    c.d.t sto cercadno uno script che mi trasformi board in shaft e se poi mi trasforma i shaft in crossbow ancora meglio

    ICQ: 381-802-629

  • #2
    una macro di razor è abbastanza veloce e semplice da fare...

    fai una cosa del tipo:

    if boards = 0 <--- devi creare un counter
    agent restock 1 <--- ovviamente impostato per restockare i materiali
    endif
    click by type sul tool
    wait for gump
    click su make last

    una macro così funziona più o meno per qualsiasi lavorativa basta cambiare il restock, il counter e il tool

    se poi vuoi essere pignolo puoi inserire un restock anche per i tool...
    ____________________________________________________________________

    Il p Fengyr
    ____________________________________________________________________
    : algander#6292

    Commenta


    • #3
      a me serviva qualcosa di un po più complesso una volta creati shaft prendesse piume per creare crossbow bolt

      Commenta


      • #4
        I didnt understand what u guys were talking about but I guess it's something about crafting bolts or shafts or something so I thought I could share my little script I used to make bolts. It worked for me and it's totally customed to work on my uo client so it might need modification to get it work for you. Im not going to help you fix it if it doesnt work (because Im very lazy) and so on but I hope it can help you even a little.


        codice:
        ;must be standing at bank and bankbox open
        ;must have fletching tools in bag,
        ;boards or shafts, and feathers must be in bank
        ;script uses tinkering to make new tools so might be a good idea to have tinkering tools and iron in bank (or maybe in bag, cant remember)
        
        set %bankid X
        set %shaftamount 2000 ; when making bolts, how many shafts u can carry
        set %featheramount 2000 ; when making bolts, how many feathers u can carry
        set %boards 500 ; if needed to craft shafts, how many boards u can carry
        set %tool UFG ; fletching tool
        set %shaft SLK
        set %wood TLK
        set %feather VLK
        set %bolt LNK
        set %iron ENK
        set %tinkertool KTL
        
        msg bank $
        wait 1s
        set %bankid #CONTID
        wait 1s
        gosub start
        
        sub start
        gosub reagentsfrombank
        gosub makebolts
        gosub boltstobank
        gosub start
        
        
        
        sub reagentsfrombank
        wait 10
        Finditem %bankid G_2
        set #lobjectid #findid
        event macro 17
        wait 10
        gosub checktools
        Finditem %shaft C_ , %bankid
        if #findcnt < 1
        {
           gosub makeshafts
        }
        wait 10
        Finditem %shaft C_ , %bankid
        Exevent Drag #findid %shaftamount
        wait 20
        Exevent Dropc #backpackid
        wait 20
        Finditem %feather C_ , %bankid
        if #findcnt < 1
        {
           halt
        }
        Exevent Drag #findid %featheramount
        wait 10
        Exevent Dropc #backpackid
        wait 10
        return
        
        
        sub makeshafts
        for %i 1 20
        {
            gosub checktools
            Finditem %wood C_ , %bankid
            if #findcnt < 1
            {
               halt
            }
            Exevent Drag #findid %boards
            wait 10
            Exevent Dropc #backpackid
            wait 20
            Finditem %tool C_ , #backpackid
            set #lobjectid #findid
            event macro 17
            wait 10
            click 68 132
            wait 5
            click 276 132
            wait 40
            gosub shaftstobank
        }
        return
        
        
        sub notools
        Finditem %iron C_ , %bankid
        Exevent Drag #findid 20
        wait 10
        Exevent Dropc #backpackid
        wait 10
        Finditem %tinkertool C_ , #backpackid
        set #lobjectid #findid
        event macro 17
        wait 5
        click 67 151
        wait 5
        click 423 310
        wait 5
        click 423 310
        wait 5
        click 275 110
        wait 2s
        click 69 453  ; exit
        Finditem %iron C_ , #backpackid
        Exevent Drag #findid #findstack
        wait 10
        Exevent Dropc %bankid
        wait 10
        return
        
        sub checktools
        Finditem %tool C_ , #backpackid
        if #findkind = -1
        {
           gosub notools
        }
        return
        
        
        sub shaftstobank
        wait 10
        click 69 453  ; exit
        Finditem %shaft C_ , #backpackid
        Exevent Drag #findid #findstack
        wait 10
        Exevent Dropc %bankid
        wait 10
        return
        
        
        sub makebolts
        gosub checktools
        Finditem %tool C_ , #backpackid
        set #lobjectid #findid
        event macro 17
        wait 5
        click 69 151
        wait 5
        click 274 133
        wait 40
        click 69 453  ; exit
        return
        
        
        sub boltstobank
        Finditem %bolt C_ , #backpackid
        Exevent Drag #findid #findstack
        wait 10
        Exevent Dropc %bankid
        wait 20
        return
        Ultima modifica di munakko; 05-12-2009, 18:40.

        Commenta

        Sto operando...
        X