Ejemplo n.º 1
0
 void pescar()
 {
     if (Setting.Lootear == 1)
     {
         Looting.AbrirCorpos();
     }
     Pesca.Pescar();
     Pescando = false;
 }
Ejemplo n.º 2
0
 void start()
 {
     if (Setting.PescarSemParar == 1)
     {
         Setting.triestotal = 30;
     }
     else
     {
         Setting.triestotal = 7;
     }
     if (Setting.PlayerOnScreen == false)
     {
         if (Setting.Atacar == 1 && Setting.AtacarSemTarget == 0)
         {
             Ataque.Atacar();
         }
         if (Setting.Pescar == 1 && Setting.PescarSemParar == 0)
         {
             if (Setting.Lootear == 1)
             {
                 Looting.AbrirCorpos();
             }
             if (Setting.catchpoke == 1)
             {
                 Catch.JogarBall();
             }
             Pesca.Pescar();
         }
         Setting.tries = 0;
         if (Setting.Atacar == 1)
         {
             if (Setting.AtacarSemTarget == 0)
             {
                 Ataque.Atacar();
             }
         }
         Setting.Running = true;
     }
     Chat.CheckChat();
 }