annuncio

Comprimi
Ancora nessun annuncio.

[EASYUO] domanda finditem ?

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

  • [EASYUO] domanda finditem ?

    domanda!! c'è un'altro modo oltre al finditem type di far targhettare un npc specifico? senza che lo cerchi tramite i type!!
    non so tipo targhettarlo in base al nome?


    it is a way in order not to use the finditem type in order to try npc? it can be made so that it tries npc based on the name?
    Ultima modifica di Marino; 07-01-2010, 20:32.

  • #2
    bhe puoi fare un finditem su ogni cosa che c'è in un determinato raggio, fare un event property sul mob scansionato in quel momento e metterci un controllo se nel #property ci sta il nome del mob da te cercato
    sigpic
    Numero 6: «Che cosa volete?»
    Numero 2: «Informazioni.»
    Numero 6: «Da che parte siete?»
    Numero 2: «Questo sarebbe dare informazioni. Noi le cerchiamo.»
    Numero 6: «Non ne avrete!»
    Numero 2: «In un modo o nell'altro... le avremo.»


    «Abbiamo cannato.»
    Easy Rider

    Kurt Cobain - Ah ah ah Meninub - Jake Chambers - Dracotelli - Pg Osistyle
    Sempre e solo [PP]

    Commenta


    • #3
      Originariamente inviato da Jullette Visualizza il messaggio
      bhe puoi fare un finditem su ogni cosa che c'è in un determinato raggio, fare un event property sul mob scansionato in quel momento e metterci un controllo se nel #property ci sta il nome del mob da te cercato
      potete farmi un esempio di come verrebbe fuori? io non volevo cercare npc con i type
      Ultima modifica di Marino; 07-01-2010, 21:08.

      Commenta


      • #4
        finditem * G_
        for #findindex 1 #findcnt ;scorre tutto quello che trova
        {
        event property #findid
        if %nomemob in #property
        *fai qualcosaltro*
        }
        ____________________________________________________________________

        Il p Fengyr
        ____________________________________________________________________
        : algander#6292

        Commenta


        • #5
          as far as event property works very slow and finditem * G returns > 20 always, i would recomend to use prefilter by #findrep before event property

          finditem * G_
          for #findindex 1 #findcnt ;scorre tutto quello che trova
          {
          if #findrep <> 0
          {
          event property #findid
          if %nomemob in #property
          *fai qualcosaltro*
          }
          }

          and if i understood right and u need npc (vendor)

          finditem * G_
          for #findindex 1 #findcnt ;scorre tutto quello che trova
          {
          if #findrep = 7
          {
          event property #findid
          if %nomemob in #property
          *fai qualcosaltro*
          }
          }

          Commenta

          Sto operando...
          X