Advertisement
Guest User

Untitled

a guest
Jun 3rd, 2018
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.68 KB | None | 0 0
  1. using RBot;
  2.  
  3. public class Script {
  4.  
  5.     public void ScriptMain(ScriptInterface bot){
  6.         bot.Options.SafeTimings = true;
  7.         bot.Options.RestPackets = true;
  8.        
  9.         bot.Skills.StartTimer();
  10.        
  11.         bot.Player.Join("arcangrove");
  12.         while(!bot.ShouldExit()){
  13.             bot.Quests.EnsureAccept(795);
  14.            
  15.             while(!bot.Inventory.ContainsTempItem("Slain Gorillaphant", 7)){
  16.                 bot.Player.Jump("LeftBack", "Left");
  17.                 bot.Player.Kill("Gorillaphant");
  18.                 bot.Player.Kill("Gorillaphant");
  19.                 bot.Sleep(500);
  20.                 bot.Player.Jump("Right", "Left");
  21.                 bot.Player.Kill("Gorillaphant");
  22.                 bot.Player.Kill("Gorillaphant");
  23.                 bot.Sleep(500);
  24.             }
  25.            
  26.             bot.Quests.EnsureComplete(795);
  27.         }
  28.     }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement