annuncio

Comprimi
Ancora nessun annuncio.

[EASY UO]raccoglitore oggetto

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

  • [EASY UO]raccoglitore oggetto

    mi servirebbe uno script per raccogliere oggetti, tipo soldi e stoffe .. mi sapete aiutare ? tnx in anticipo.

    * [SCAMBIO]BOD da kit BARBED AGGIORNATO*
    * [COMPRO] tailor bods di TUTTI I TIPI*
    * [VENDO]kit barbed*
    * [COMPRO]Cristalline ring*

  • #2
    Intendi da terra?
    Perchè non usi l'agente scavenger di razor?

    ps: vuoi fregare la roba che cade a terra ai sarti belli carichi mentre ricevono le ricompense dal NPC?

    Commenta


    • #3
      la macro è molto semplice di per se...
      codice:
      Set %TypeOggetti POF_    ;<-- con POF raccoglie i soldi...
      FindItem %TypeOggetti G_2  ;<-- 2 sono i massimi tile di distanza da cui si può raccogliere
      If #FindKind <> -1
      {
         If #Weight >= #MaxWeight
         {
             Wait 1s
         }
         ExEvent Drag #findID #FindStack 
         Wait 10
         ExEvent DropC #BackPackID
      }
      raccoglie i soldi e quando sei troppo pesante smette fino a che non ti svuoti...
      Volendo aggiungi a POF_ il type degli altri oggetti da raccogliere dividendoli sempre con un _ tipo POF_XXX_XXX
      Ultima modifica di Drael; 22-03-2007, 20:43.
      Slyon su Lost Paradise.
      Downfall, and it all falls down
      I fall from grace I got your taste

      Turn off your mind, unwind
      and see how high the cloudy sky

      Run away Run away
      Leave your lemon drop

      Soak it up Soak it up
      Won't you crush on me
      Boom Boom Satellites - Shut up and Explode | In cerca di un nuovo passatempo.

      Commenta


      • #4
        codice:
           If #Weight >= #MaxWeight
           {
               Wait 1s
           }
        Correggi questo con:
        codice:
           While #Weight >= #MaxWeight
           {
               Wait 1s
           }
        Sennò nn aspetta

        Commenta

        Sto operando...
        X