[ENGLISH] [Prrovoss] PopupNotifications menu

User Tag List

Page 1 of 5 12345 LastLast
Results 1 to 15 of 75
  1. #1
    prrovoss's Avatar Contributor
    Reputation
    152
    Join Date
    Jan 2013
    Posts
    420
    Thanks G/R
    23/130
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [ENGLISH] [Prrovoss] PopupNotifications

    Supported TurboHUD version: 7.6

    This plugin provides you with a simple interface to fire your own popup notifications, whenever you want them to be shown.


    (Place the following files in the corresponding folder with the given filename)

    This plugin consists of one main file:
    /plugins/Prrovoss/Popups/PopupNotifications.cs


    And these EXAMPLE files are completely OPTIONAL. Their purpose is to show you how to use the popups.
    NOTE: If you have used the plugin before, make sure your files are located in the subfolder "Popups". Ive changed their location so you might have to move the existing files!
    /plugins/Prrovoss/Popups/ActorAppearedPopup.cs
    /plugins/Prrovoss/Popups/BuffAppliedPopup.cs
    /plugins/Prrovoss/Popups/ItemDroppedPopup.cs
    /plugins/Prrovoss/Popups/MonsterAppearedPopup.cs

    The customization of these examples now should take place in your "main" Plugin. Read this if you dont know what i mean:
    https://www.ownedcore.com/forums/dia...ion-101-a.html (Default theme customization 101)
    Code:
     
                Hud.RunOnPlugin<Prrovoss.Popups.ActorAppearedPopup>(plugin =>
                {
                    //sno, name, hint, title, duration (ins ms), custom decorator (ignore if not needed)
                    plugin.Add(345935, "Normal Rift", "", "Portal open", 5000);
                    plugin.Add(330698, "Shield Pylon", "", "Appeared", 5000);
                    plugin.Add(330697, "Channeling Pylon", "", "Appeared", 5000);
                    plugin.Add(330695, "Power Pylon", "", "Appeared", 5000);
                    plugin.Add(398654, "Conduit Pylon", "", "Appeared", 5000);
                });
    
                Hud.RunOnPlugin<Prrovoss.Popups.BuffAppliedPopup>(plugin =>
                {
                    //sno, icon, name, hint, title, duration (in ms), custom decorator (ignore if not needed)
                    plugin.Add(465952, 1, "Final Service", "", "Buff activated", 6000);
                    plugin.Add(262935, 0, "Power Pylon", "", "Buff activated", 4000);
                    plugin.Add(266258, 0, "Channeling Pylon", "", "Buff activated", 4000);
                    plugin.Add(266254, 0, "Shield Pylon", "", "Buff activated", 4000);
                    plugin.Add(402461, 2, "Occulus", "", "Buff activated", 3000);
                    plugin.Add(246562, 1, "Flying Dragon", "", "Buff activated", 3000);
                });
    
                Hud.RunOnPlugin<Prrovoss.Popups.MonsterAppearedPopup>(plugin =>
                {
                    //sno, name, hint, title, duration (in ms), custom decorator (ignore if not needed)
                    plugin.Add(451002, "Sir William", "", "Appeared", 5000);
                    plugin.Add(450999, "Princess Lilian", "", "Appeared", 5000);
                });
    
                Hud.RunOnPlugin<Prrovoss.Popups.ItemDroppedPopup>(plugin =>
                {
                    var LegendaryDecorator = new TopLabelWithTitleDecorator(Hud)
                    {
                        BorderBrush = Hud.Render.CreateBrush(255, 180, 147, 109, -1),
                        BackgroundBrush = Hud.Render.CreateBrush(200, 91, 55, 19, 0),
                        TextFont = Hud.Render.CreateFont("tahoma", 8, 255, 255, 255, 255, true, false, false),
                        TitleFont = Hud.Render.CreateFont("tahoma", 6, 255, 180, 147, 109, true, false, false),
                    };
    
                    var AncientDecorator = new TopLabelWithTitleDecorator(Hud)
                    {
                        BorderBrush = Hud.Render.CreateBrush(255, 183, 132, 21, 5),
                        BackgroundBrush = Hud.Render.CreateBrush(200, 91, 55, 19, 0),
                        TextFont = Hud.Render.CreateFont("tahoma", 8, 255, 255, 255, 255, true, false, false),
                        TitleFont = Hud.Render.CreateFont("tahoma", 6, 255, 180, 147, 109, true, false, false),
                    };
    
                    var PrimalDecorator = new TopLabelWithTitleDecorator(Hud)
                    {
                        BorderBrush = Hud.Render.CreateBrush(255, 183, 22, 32, 5),
                        BackgroundBrush = Hud.Render.CreateBrush(200, 91, 55, 19, 0),
                        TextFont = Hud.Render.CreateFont("tahoma", 8, 255, 255, 255, 255, true, false, false),
                        TitleFont = Hud.Render.CreateFont("tahoma", 6, 255, 180, 147, 109, true, false, false),
                    };
    
                    //sno (put null if not needed), itemQuality (put null if not needed), ancientRank (put null if not needed), hint, title, duration (in ms), custom decorator (ignore if not needed)
                    plugin.Add(null, ItemQuality.Legendary, 0, "", "Legendary dropped", 5000, LegendaryDecorator);
                    plugin.Add(null, ItemQuality.Legendary, 1, "", "Ancient dropped", 9000, AncientDecorator);
                    plugin.Add(null, ItemQuality.Legendary, 2, "", "Primal dropped", 15000, PrimalDecorator);
                });

    NOTE: These popups can only be shown/fired on events. Their purpose is NOT to be shown while a buff is active or as long as a certain condition is met.



    If you have ideas or requests for more examples, let me know and I might add them.
    Last edited by prrovoss; 05-12-2018 at 06:54 AM.

    [ENGLISH] [Prrovoss] PopupNotifications
  2. Thanks cherouvim13, solajose71, patricos, s4000, RNN, lift2k (6 members gave Thanks to prrovoss for this useful post)
  3. #2
    solajose71's Avatar Member CoreCoins Purchaser
    Reputation
    1
    Join Date
    Mar 2017
    Posts
    3
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    In prior release you provided a plugin which showed resource remaining and number of nearby monsters next to toon? I can't find it in approved plugins, is it still workable?

  4. #3
    prrovoss's Avatar Contributor
    Reputation
    152
    Join Date
    Jan 2013
    Posts
    420
    Thanks G/R
    23/130
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by solajose71 View Post
    In prior release you provided a plugin which showed resource remaining and number of nearby monsters next to toon? I can't find it in approved plugins, is it still workable?
    you are talking about my custom labels. I could provide these too in the next few days.

  5. #4
    solajose71's Avatar Member CoreCoins Purchaser
    Reputation
    1
    Join Date
    Mar 2017
    Posts
    3
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yes, the custom labels. Thanks

  6. #5
    Kasztan100's Avatar Member
    Reputation
    1
    Join Date
    Mar 2017
    Posts
    9
    Thanks G/R
    5/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    it's possible to change popup to color of dropped items, i think about frame when its normal legend then black, when ancient its orange and a primal set it to red
    example :P

    [ENGLISH] [Prrovoss] PopupNotifications-gf1zkrs1-png

  7. #6
    prrovoss's Avatar Contributor
    Reputation
    152
    Join Date
    Jan 2013
    Posts
    420
    Thanks G/R
    23/130
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    its not possible atm but its possible to implement. but i am not planning to do so atm, sorry.

  8. #7
    Kasztan100's Avatar Member
    Reputation
    1
    Join Date
    Mar 2017
    Posts
    9
    Thanks G/R
    5/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by prrovoss View Post
    its not possible atm but its possible to implement. but i am not planning to do so atm, sorry.
    ok, only need to wait for Your move

  9. #8
    patricos's Avatar Member
    Reputation
    1
    Join Date
    Apr 2017
    Posts
    8
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nvm, found it already, cant delete post
    Last edited by patricos; 04-30-2017 at 11:14 AM. Reason: Found anwser

  10. #9
    davelikestacos's Avatar Member
    Reputation
    1
    Join Date
    Apr 2017
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is that a CoE tracker above your character in the screenshot? If so, is that included in this? If not, could you share that? I don't think I've seen it posted on the forum yet. Thanks!

  11. #10
    prrovoss's Avatar Contributor
    Reputation
    152
    Join Date
    Jan 2013
    Posts
    420
    Thanks G/R
    23/130
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by davelikestacos View Post
    Is that a CoE tracker above your character in the screenshot? If so, is that included in this? If not, could you share that? I don't think I've seen it posted on the forum yet. Thanks!
    its a tal rasha set icon

  12. #11
    JMOR's Avatar Member
    Reputation
    1
    Join Date
    Jun 2017
    Posts
    6
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi there prrovoss thanks for the share.

    The UI thats shown on the pic which show the buffs under your char including the CoE rotation, is that plugin in this forum? Dont find it. Mind sharing a link? Thanks boss.

  13. #12
    prrovoss's Avatar Contributor
    Reputation
    152
    Join Date
    Jan 2013
    Posts
    420
    Thanks G/R
    23/130
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JMOR View Post
    Hi there prrovoss thanks for the share.

    The UI thats shown on the pic which show the buffs under your char including the CoE rotation, is that plugin in this forum? Dont find it. Mind sharing a link? Thanks boss.
    as i said, everything you see is tal rasha related. there is no coe rotation on the screenshot. its a special tal rasha plugin that used to be on the forum. i cant seem to find it atm.

  14. #13
    itsmylife's Avatar Active Member
    Reputation
    23
    Join Date
    Jun 2012
    Posts
    232
    Thanks G/R
    32/22
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I think it can be found here in this thread (Wizard plugin from old forum)
    Last edited by itsmylife; 06-27-2017 at 05:52 AM.

  15. #14
    FullmetalEnvy's Avatar Member CoreCoins Purchaser
    Reputation
    8
    Join Date
    Mar 2017
    Posts
    21
    Thanks G/R
    16/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I LOVE your plugin. Is it possible to only show popups for Ancients and Primals though? Would be awesome. Thanks
    Last edited by FullmetalEnvy; 07-28-2017 at 12:12 PM.

  16. #15
    xviperousx's Avatar Member
    Reputation
    1
    Join Date
    Aug 2017
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by FullmetalEnvy View Post
    I LOVE your plugin. Is it possible to only show popups for Ancients and Primals though? Would be awesome. Thanks
    Hi there

    i love this plugin, so i can share you the solution.

    Simply put following quote into the file "AcientDroppedPopupPopup.cs":

    Code:
    using Turbo.Plugins.Default;
    
    namespace Turbo.Plugins.Prrovoss
    {
    
        public class AcientDroppedPopup : BasePlugin, ILootGeneratedHandler
        {
    
            public void OnLootGenerated(IItem item, bool gambled)
            {
               if (item.AncientRank >= 1)
                    Hud.RunOnPlugin<PopupNotifications>(plugin =>
                        {
                            plugin.Show(item.SnoItem.NameLocalized + (item.AncientRank == 1 ? " (A)" : (item.AncientRank == 2 ? " (P)" : "")) , "Acient dropped", 10000, "Hurray");
                        });
            }
    
            public AcientDroppedPopup()
            {
                Enabled = true;
            }
    
        }
    
    }

Page 1 of 5 12345 LastLast

Similar Threads

  1. English --> Chinese
    By Login Error in forum Community Chat
    Replies: 4
    Last Post: 02-04-2008, 07:00 PM
  2. [Guide] Proper English Language
    By aggiish in forum Community Chat
    Replies: 31
    Last Post: 02-04-2008, 02:29 PM
  3. Omg,Funniest Thing I ever saw!!! ENGLISH PWNED!!!!
    By anmer in forum Screenshot & Video Showoff
    Replies: 10
    Last Post: 11-12-2007, 10:15 AM
  4. Chinese Names in English WoW
    By pandaman in forum World of Warcraft Exploits
    Replies: 8
    Last Post: 08-12-2006, 05:40 AM
All times are GMT -5. The time now is 04:40 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search