Help to modify a Skeletal Mage plugin menu

User Tag List

Results 1 to 9 of 9
  1. #1
    Saico's Avatar Active Member
    Reputation
    21
    Join Date
    Apr 2019
    Posts
    379
    Thanks G/R
    35/20
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)

    Help to modify a Skeletal Mage plugin

    Hello guys, I was modyfing an old plugin that still works <SkeletalMageSingularityEssencePlugin.cs> I changed center orientation to bar aside of minimap+ text and form (better looking)

    Old> Screenshot_6.png / Screenshot_2.png

    New> Screenshot_7.png / Screenshot_4.png

    Is there a way to add some TTS sound or .wav ? (I tried adding sound enabler code but was unsuccesful)
    if it is not possible, can someone help to add a text (" ") just like "MOVETH" message I have on DangerPlugin.cs that appears when an event happens (in this case, when player have so much incoming damage on feet, I would like to add a text that pops up when Essencer Bar of this plugin fills (Becomes green)

    Any helps ?

    Uploaded my modified code if it helps

    >[C#] SkeletalMageSingularityEssencePlugin.cs - Pastebin.com

    Help to modify a Skeletal Mage plugin
  2. #2
    mois's Avatar Member
    Reputation
    8
    Join Date
    Feb 2018
    Posts
    54
    Thanks G/R
    178/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey try ->

    Resu/README.md at master . User5981/Resu . GitHub

    ChannelingPlugin.cs - Plays a sound when resource is back to full, another when down to the set limit (customizable). :

    Note : Don't forget to download the Soundfiles and place them in TurboHUD's /sounds/ directory to have the notification sound.

  3. #3
    Saico's Avatar Active Member
    Reputation
    21
    Join Date
    Apr 2019
    Posts
    379
    Thanks G/R
    35/20
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Did you try this plugin ? I downloaded and tested, but no sound notifications at all when I reach full resource, and I have Soundfiles folder and HotEnablerDisablerPlugin.cs, I use it with ProcPlayers.cs and it beeps me TTS texts and soundfile from <sounds> folder.

  4. #4
    xratedownz's Avatar Member
    Reputation
    1
    Join Date
    Feb 2009
    Posts
    226
    Thanks G/R
    23/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Saico View Post
    Hello guys, I was modyfing an old plugin that still works <SkeletalMageSingularityEssencePlugin.cs> I changed center orientation to bar aside of minimap+ text and form (better looking)

    Old> Screenshot_6.png / Screenshot_2.png

    New> Screenshot_7.png / Screenshot_4.png

    Is there a way to add some TTS sound or .wav ? (I tried adding sound enabler code but was unsuccesful)
    if it is not possible, can someone help to add a text (" ") just like "MOVETH" message I have on DangerPlugin.cs that appears when an event happens (in this case, when player have so much incoming damage on feet, I would like to add a text that pops up when Essencer Bar of this plugin fills (Becomes green)

    Any helps ?

    Uploaded my modified code if it helps

    >[C#] SkeletalMageSingularityEssencePlugin.cs - Pastebin.com
    Just an offtopic question. What is this red dots under your feet and black dots under skeletons?

  5. #5
    Saico's Avatar Active Member
    Reputation
    21
    Join Date
    Apr 2019
    Posts
    379
    Thanks G/R
    35/20
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Just an offtopic question. What is this red dots under your feet and black dots under skeletons?
    PlayerCircleMarker (red dot) and skeletalplugin for skellys (black/white dots)

  6. Thanks xratedownz (1 members gave Thanks to Saico for this useful post)
  7. #6
    xratedownz's Avatar Member
    Reputation
    1
    Join Date
    Feb 2009
    Posts
    226
    Thanks G/R
    23/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Saico View Post
    PlayerCircleMarker (red dot) and skeletalplugin for skellys (black/white dots)
    Can you link please? I couldnt find them.

  8. #7
    RNN's Avatar Legendary
    Reputation
    813
    Join Date
    Sep 2018
    Posts
    1,056
    Thanks G/R
    104/776
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    I made this plugin some time ago to play rats, maybe it will help you (play .wav). It is designed to work only in GR and with the rune that spends the whole essence.

    NotifyEssenceMages.cs (place in Plugins\RNN\)

    Resource-High.wav (place in Sounds\)
    Resource-Low.wav (place in Sounds\)

    Custom Code:

    Code:
    	Hud.GetPlugin<RNN.NotifyEssenceMages>().Enabled = true;
    	Hud.RunOnPlugin<RNN.NotifyEssenceMages>(plugin => 
    	{
    		plugin.ResourceHigh = 90;
    		plugin.ResourceLow = 15;
    		plugin.HighNotify = true;
    		plugin.LowNotify = false;
    		plugin.HighNotifyWav = "Resource-High.wav";
    		plugin.LowNotifyWav = "Resource-Low.wav";
    	}  );

  9. Thanks AffaBanana, HoaryWitch (2 members gave Thanks to RNN for this useful post)
  10. #8
    Saico's Avatar Active Member
    Reputation
    21
    Join Date
    Apr 2019
    Posts
    379
    Thanks G/R
    35/20
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Oh thanks for code RNN, actually, I tried again with channelingplugin.cs (by Resu) and it worked, I was trying before to activate it at Town and it does not works at town.

    Tested your NotifyEssenceMages.cs also, and it works fine too. =) Ty

    @xRate

    You can get both here in forum, go to old pages of plugins, there is where I got them.
    Last edited by Saico; 05-22-2019 at 02:43 PM.

  11. #9
    Anthem2134's Avatar Member
    Reputation
    2
    Join Date
    Jul 2018
    Posts
    32
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hi i wanna try your plugin,in what folder i should put the file?


    EDIT: i found it
    Last edited by Anthem2134; 05-23-2019 at 04:39 AM.

Similar Threads

  1. [Request] can anybody helps to update the pylon marker plugin to V9?
    By greetree in forum TurboHUD Support
    Replies: 3
    Last Post: 06-02-2019, 07:49 AM
  2. HELP: Unable to modify arena maps.
    By Falcaram in forum WoW ME Questions and Requests
    Replies: 0
    Last Post: 07-09-2008, 05:35 PM
  3. [Help] How to modify the core! chat support UTF-8
    By nbhfam in forum World of Warcraft Emulator Servers
    Replies: 3
    Last Post: 05-28-2008, 01:05 PM
  4. Warlock Imp to Skeletal Mage
    By chaggy7 in forum WoW ME Questions and Requests
    Replies: 0
    Last Post: 06-20-2007, 03:08 PM
  5. Imp -> Skeletal Mage - Sizing help
    By chaggy7 in forum WoW ME Questions and Requests
    Replies: 2
    Last Post: 06-19-2007, 10:39 PM
All times are GMT -5. The time now is 01:11 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