annuncio

Comprimi
Ancora nessun annuncio.

[EASYUO] Script anti-Ant Lion

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

  • [EASYUO] Script anti-Ant Lion

    Cerco uno script che mi targetta in automatico le Ant Lion dentro il formicaio ogni volta che spawnano, le insegue e le killa.
    Ho un pg melee, quindi l'importante è che le attacchi e le ammazzi di continuo.

    Insieme a questo script userò uno script di autoloot per lootare i peculiar seeds e uno script per curarmi (li ho entrambi).


    Mi basta solo uno script che ogni Ant Lion che spawna al formicaio la attacchi e la insegua, per il resto ho tutto quello che mi serve.


    Non credo sia qualcosa di complicato da fare, grazie a chi perderà questi dieci minuti!
    .
    .

  • #2
    Una buonissima base da cui partire è questa:
    http://www.easyuo.com/forum/viewtopic.php?p=69464#69464

    Sono due script da usare contemporaneamente:
    codice:
        ; Script name: Jabbers Peace Fighter Trainer - part 1
        ; Author: Jabber
        ; Version: 1.00
        ; Client tested with: 4.0.4a
        ; EUO version tested with: 1.42.0097
        ; Shard osi / fs:osi
        ; Revision date:
        ; Public release: 16th sept 2004
        ;
        ; =============================================================
        ;              SETUP
        ; =============================================================
        ; Change the below to how long your bandages take in seconds
        set %time_to_heal 8
         
        ; Change below to 0 if you dont want the ping on bandage use (Default is 1)
        set %bandage_ping 1
        ; ============DO NOT EDIT BELOW===============================
        ;
        set %monsters dhb_zgb_pd_hd
        set %range 1
        loop:
        gosub heal
        finditem %monsters g_ , %range
        if #findkind <> -1
        {
                set #ltargetid #findid
                event macro 13 9
                target
                event macro 22 0
                ignoreitem #findid
                set %timeout #scnt + 6
                wait:
                if #scnt > %timeout
                        goto loop
                scanjournal 1
                if calmed in #journal 2
                        wait 2
                        goto loop
                if that in #journal 2
                        wait 2
                        goto loop
                if bandages in #journal 2
                        wait 2
                        goto loop
                if another in #journal 2
                        wait 2
                        goto loop
                goto wait
        }
        set %range %range + 1
        if %range = 13
        {
                ignoreitem reset
                set %range 1
        }
        goto loop
         
        sub heal
        if %healing = 1
        {
                if #scnt > %healing_timer
                set %healing 0
                return
        }
        if #hits < #maxhits - 10 || p in #charstatus
        {
                if %bandage_ping = 1
                        sound
                finditem zlf c_ , #backpackid
                if #findkind <> -1
                {
                        set #lobjectid #findid
                        event macro 17
                        wait 20
                        target
                        wait 20
                        event macro 23
                        set %healing 1
                        set %healing_timer #scnt + %time_to_heal
                        wait 20
                }
        }
        return
    Parte 2:
    codice:
        ; Script Name: Jabbers Peace Fighter Trainer - Part 2
        ; Author: Jabber
        ; Version: 1.00
        ; Client Tested with: 4.0.4a
        ; EUO version tested with: 1.42.0097
        ; Shard OSI / FS:OSI
        ; Revision Date:
        ; Public Release: 16th Sept 2004
        ;
        ; See Part 1 for setup
        ; =============================================================
        set %startx #charposx
        set %starty #charposy
        loop:
        wait 1
        gosub detect
        finditem SGB g_5 ; Ants
        if #findkind <> -1
                gosub alert ANT_NEAR_BY
        finditem DHB_ZGB_ZJF G_12
        if #findkind <> -1
        {
                wait 5
                set %target #findid
                set #ltargetid %target
                event macro 27 0
                move #findx #findy 0
                set #ltargetid #findid
                set #ltargetid %target
                event macro 27 0
                wait_for_kill:
                finditem %target g_12
                if #findkind = -1
                {
                        wait 3s
                        set %kills %kills + 1
                        setuotitle Number of Kills : %kills
                        move %startx %starty 1
                        goto loop
                }
                if #finddist > 1
                        move #findx #findy 1
                finditem SGB g_12
                if #findkind <> -1
                        gosub alert ANT_NEAR_BY
                goto wait_for_kill
        }
        goto loop
         
        sub detect
        finditem ZLF C_ , #backpackid
        if #findkind = -1
                gosub alert NO_BANDAGES_LEFT
        return
         
        sub alert
        setuotitle %1
        sound
        return




    Ma io non ci capisco assolutamente niente e non saprei come modificarlo; funzionare funziona, ma cerca in loop di paciare l'Ant Lion e si vuole curare da solo.
    .
    .

    Commenta


    • #3
      Mischiando il tutto ho fatto una cosa del genere, sapete dirmi se va bene?

      codice:
          ; Script name: Jabbers Peace Fighter Trainer - part 1
          ; Author: Jabber
          ; Version: 1.00
          ; Client tested with: 4.0.4a
          ; EUO version tested with: 1.42.0097
          ; Shard osi / fs:osi
          ; Revision date:
          ; Public release: 16th sept 2004
          ;
          ; =============================================================
          ;              SETUP
          ; =============================================================
          ; Change the below to how long your bandages take in seconds
          set %time_to_heal 8
      
          ; Change below to 0 if you dont want the ping on bandage use (Default is 1)
          set %bandage_ping 1
          ; ============DO NOT EDIT BELOW===============================
          ;
          set %monsters dhb_zgb_pd_hd
          set %range 1
          loop:
          finditem %monsters g_ , %range
          if #findkind <> -1
          {
                  set #ltargetid #findid
                  event macro 13 9
                  target
                  event macro 22 0
                  ignoreitem #findid
                  set %timeout #scnt + 6
                  wait:
                  if #scnt > %timeout
                          goto loop
                  scanjournal 1
                  if calmed in #journal 2
                          wait 2
                          goto loop
                  if that in #journal 2
                          wait 2
                          goto loop
                  if bandages in #journal 2
                          wait 2
                          goto loop
                  if another in #journal 2
                          wait 2
                          goto loop
                  goto wait
          }
          set %range %range + 1
          if %range = 13
          {
                  ignoreitem reset
                  set %range 1
          }
      
          set %startx #charposx
          set %starty #charposy
          loop:
          wait 1
          finditem SGB g_5 ; Ants
          if #findkind <> -1
                  gosub alert ANT_NEAR_BY
          finditem DHB_ZGB_ZJF G_12
          if #findkind <> -1
          {
                  wait 5
                  set %target #findid
                  set #ltargetid %target
                  event macro 27 0
                  move #findx #findy 0
                  set #ltargetid #findid
                  set #ltargetid %target
                  event macro 27 0
                  wait_for_kill:
                  finditem %target g_12
                  if #findkind = -1
                  {
                          wait 9s
                          set %kills %kills + 1
                          setuotitle Number of Kills : %kills
                          move %startx %starty 1
                          goto loop
                  }
                  if #finddist > 1
                          move #findx #findy 1
                  finditem SGB g_12
                  if #findkind <> -1
                          gosub alert ANT_NEAR_BY
                  goto wait_for_kill
          }
          goto loop
      
      
          sub alert
          setuotitle %1
          sound
          return
      .
      .

      Commenta


      • #4
        Se è per i cespugli quadrati ti consiglio le mummie all'entrata di deceit, alternandoti tra felucca e trammel fai abbastanza veloce, io così mi feci i miei 40 quadrati

        free photo hosting

        Commenta


        • #5
          Per le mummie ci vuole il gioco attivo, per un mese intero ci ho provato a farmi due orette a sera tra mummie ed ant lion, ma dato che dovevo arrivare ad un centinaio di semi mi serviva qualcosa per non impazzire a fare mummie e quel poco di tempo che ho giocare per fare qualcosa di rilassante

          Lo script funziona comunque, non so nemmeno io come ho fatto ma funziona alla perfezione In due pomeriggi away ha tirato su un totale di 500 e passa semi e più di un centinaio di quelli che servivano a me!
          .
          .

          Commenta


          • #6
            Si possono killare mob afk?

            Commenta


            • #7
              Se non looti soldi o non macri soldi sicuramente si, altrimenti sarebbe vietato anche macrare taming dato che poi il mob va ucciso.
              .
              .

              Commenta

              Sto operando...
              X