Advertisement
sibble

Untitled

Sep 21st, 2015
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.67 KB | None | 0 0
  1. using System;
  2. using ScriptSDK;
  3. using ScriptSDK.API;
  4. using ScriptSDK.Engines;
  5. using ScriptSDK.Mobiles;
  6. using ScriptSDK.Items;
  7. using XScript.Items;
  8.  
  9.  
  10. namespace Sandbox
  11. {
  12.     class Program
  13.     {
  14.         private static PlayerMobile Self = PlayerMobile.GetPlayer();
  15.  
  16.         [STAThread]
  17.         static void Main(string[] args)
  18.         {
  19.             while (true)
  20.             {
  21.  
  22.                 Mobile _target = TargetHelper.GetTarget().GetTargetMobile();
  23.  
  24.                 Stealth.Client.UseVirtue("Honor");
  25.  
  26.                 TargetHelper.GetTarget().AutoTargetTo(_target.Serial);
  27.  
  28.                 Stealth.Client.Wait(5000);
  29.             }
  30.         }
  31.     }
  32.  
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement