Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace Turbo.Plugins.PsychosPlugins
- {
- using Turbo.Plugins.Default;
- public class ShrineLabelsPlugin : BasePlugin
- {
- public ShrineLabelsPlugin() {
- Enabled = true;
- }
- public override void Load(IController hud)
- {
- }
- public override void Customize()
- {
- Hud.RunOnPlugin<ShrinePlugin>(plugin =>
- {
- plugin.AllShrineDecorator.Add(new MapLabelDecorator(Hud)
- {
- LabelFont = Hud.Render.CreateFont("tahoma", 6f, 192, 255, 255, 55, false, false, 128, 0, 0, 0, true),
- RadiusOffset = 5.0f,
- });
- });
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment