Advertisement
Guest User

SkeletalMageSingularityEssenceConfig

a guest
Sep 2nd, 2017
1,441
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.88 KB | None | 0 0
  1. using Turbo.Plugins.Default;
  2.  
  3. namespace Turbo.Plugins.BM
  4. {
  5.     public class SkeletalMageSingularityEssenceConfig : BasePlugin, ICustomizer
  6.     {
  7.  
  8.         public SkeletalMageSingularityEssenceConfig()
  9.         {
  10.             Enabled = true;
  11.         }
  12.  
  13.         public override void Load(IController hud)
  14.         {
  15.             base.Load(hud);
  16.         }
  17.  
  18.         public void Customize()
  19.         {
  20.             Hud.RunOnPlugin<BM.SkeletalMageSingularityEssencePlugin>(plugin =>
  21.             {
  22.                
  23.                 //To disable the plugin in town: change to false
  24.                 plugin.ShowInTown = true;
  25.                
  26.                 //Value of your Reaper's Wraps: Health globes restore 25-30% of your primary resource
  27.                 plugin.ReapersWrapsResourceRestore = 30;
  28.                
  29.                 //Default position is under the feet of the player
  30.                 //plugin.XPos =
  31.                 //plugin.YPos =
  32.                
  33.             });
  34.         }
  35.  
  36.     }
  37.  
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement