Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.         print("ÿc1Waiting for Diablo to spawn..");
  2.         var _waitDiablo = 0;
  3.         while(!NTC_FindMonster(243))
  4.         {
  5.                 if(_waitDiablo >= 100)
  6.                         break;
  7.                 NTC_DoCast(112, 2);
  8.                 NTC_DoCast(112, 2);
  9.                 NTC_Delay(100);
  10.                 _waitDiablo++;
  11.         }
  12.         print("ÿc1Diablo has spawned...");
  13.         if(NTC_FindMonster(243))
  14.         {
  15.                 print("ÿc1Killing Diablo");
  16.                 if (!NTA_KillBoss(243)) //diablo
  17.                         return false;
  18.         }
  19.         else
  20.                 print("ÿc1Couldn't find Diablo, continuing..");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement