Adding stricken plugin menu

User Tag List

Results 1 to 13 of 13
  1. #1
    Vyraalqt's Avatar Member
    Reputation
    1
    Join Date
    Aug 2017
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Adding stricken plugin

    Hello, im trying to add the following plugin for stricken Resu/DiadrasFirstGemPlugin.cs at master . User5981/Resu . GitHub

    but whenever i save it as a cs file and put it in the plugin folder i keep getting "exceptions! (2)" in the bottom left. I've gone thru the forums and i cant seem to find where im going wrong.

    im using THUS 20.6.28.1 (v9.1) BETA.

    Is there anyone who can help

    Adding stricken plugin
  2. #2
    TobiaSBooN's Avatar Member
    Reputation
    4
    Join Date
    Mar 2017
    Posts
    11
    Thanks G/R
    142/3
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    hi

    line 145

    StrickenPercentDecorator.TextFunc = () => "\u231B";

    to

    StrickenPercentDecorator.TextFunc = () => "⌛";

  3. #3
    Vyraalqt's Avatar Member
    Reputation
    1
    Join Date
    Aug 2017
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TobiaSBooN View Post
    hi

    line 145

    StrickenPercentDecorator.TextFunc = () => "\u231B";

    to

    StrickenPercentDecorator.TextFunc = () => "⌛";
    So i did this and instead of giving me 2 exception warning its only giving me 1. Is there something else messed up with the plugin?

  4. #4
    Vyraalqt's Avatar Member
    Reputation
    1
    Join Date
    Aug 2017
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    or is it something im doing wrong? in terms of files etc?

  5. #5
    BeeAntOS's Avatar Active Member
    Reputation
    30
    Join Date
    Oct 2017
    Posts
    119
    Thanks G/R
    239/28
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Vyraalqt View Post
    or is it something im doing wrong? in terms of files etc?
    Please report the contents of the exceptions.txt file in the ..\logs\ folder...
    Otherwise, it would be inevitable to get lost among dozens of possible causes!
    "When you reach the top, get ready to drop!"

  6. #6
    Vyraalqt's Avatar Member
    Reputation
    1
    Join Date
    Aug 2017
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    2020.07.08 00:16:45.490 20.6.28.1 namespace mismatch in plugin file: 'C:\Users\hunte\Desktop\THUD\Plugins\Stricken\Turbo.Plugins.Stricken.cs': namespace should be this: 'Turbo.Plugins.Stricken

    I cant figure out where im going wrong with this.

  7. #7
    BeeAntOS's Avatar Active Member
    Reputation
    30
    Join Date
    Oct 2017
    Posts
    119
    Thanks G/R
    239/28
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Vyraalqt View Post
    2020.07.08 00:16:45.490 20.6.28.1 namespace mismatch in plugin file: 'C:\Users\hunte\Desktop\THUD\Plugins\Stricken\Turbo.Plugins.Stricken.cs': namespace should be this: 'Turbo.Plugins.Stricken

    I cant figure out where im going wrong with this.
    Rename the Stricken folder to Resu
    You can also shorten the file name Turbo.Plugins.Stricken.cs to Stricken.cs, although it is not that important.
    "When you reach the top, get ready to drop!"

  8. #8
    Vyraalqt's Avatar Member
    Reputation
    1
    Join Date
    Aug 2017
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Now im getting this

    2020.07.08 00:38:14.330 20.6.28.1 error while initializing plugins
    2020.07.08 00:38:14.330 20.6.28.1 C:\Users\hunte\Desktop\THUD\Plugins\Resu\Turbo.Plugins.Stricken.cs(69,43) : error CS0246: The type or namespace name 'HotEnablerDisablerPlugin' could not be found (are you missing a using directive or an assembly reference?)

    DO i need to enable and something and how? im new to editing thud

  9. #9
    BeeAntOS's Avatar Active Member
    Reputation
    30
    Join Date
    Oct 2017
    Posts
    119
    Thanks G/R
    239/28
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Vyraalqt View Post
    Now im getting this

    2020.07.08 00:38:14.330 20.6.28.1 error while initializing plugins
    2020.07.08 00:38:14.330 20.6.28.1 C:\Users\hunte\Desktop\THUD\Plugins\Resu\Turbo.Plugins.Stricken.cs(69,43) : error CS0246: The type or namespace name 'HotEnablerDisablerPlugin' could not be found (are you missing a using directive or an assembly reference?)

    DO i need to enable and something and how? im new to editing thud
    Get that mandatory HotEnablerDisablerPlugin.cs and copy it to the Resu folder.
    "When you reach the top, get ready to drop!"

  10. #10
    Vyraalqt's Avatar Member
    Reputation
    1
    Join Date
    Aug 2017
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    this worked! thank you so much. i do appreciate the help!

  11. #11
    Ducko's Avatar Member
    Reputation
    1
    Join Date
    Aug 2020
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TobiaSBooN View Post
    hi

    line 145

    StrickenPercentDecorator.TextFunc = () => "\u231B";

    to

    StrickenPercentDecorator.TextFunc = () => "⌛";
    Can someone explain to me what the "Hourglass" Is supposed to be :s

  12. #12
    Jembo's Avatar Active Member
    Reputation
    33
    Join Date
    Nov 2018
    Posts
    112
    Thanks G/R
    28/30
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    iirc it's the cooldown for next stricken stack but i could be wrong

  13. #13
    SakkyeanSong's Avatar Member
    Reputation
    1
    Join Date
    Aug 2020
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    "⌛", ⌛ = u+231b
    Last edited by SakkyeanSong; 08-29-2020 at 01:32 AM.

Similar Threads

  1. Need a Plugin for Stricken & Archon Meteor drop
    By Elrond1980 in forum TurboHUD Community Plugins
    Replies: 1
    Last Post: 12-29-2019, 01:30 AM
  2. [Request] Can anyone help me find a Bane of the Stricken plugin!
    By amarpatel826 in forum TurboHUD Discussions
    Replies: 2
    Last Post: 06-11-2019, 12:07 AM
  3. [Request] Stricken stacks Plugin
    By Csavo in forum TurboHUD Discussions
    Replies: 10
    Last Post: 03-27-2018, 02:04 PM
  4. Are the new ads obtrusive?
    By Matt in forum Community Chat
    Replies: 30
    Last Post: 05-11-2006, 08:34 PM
  5. Replies: 36
    Last Post: 05-05-2006, 01:11 AM
All times are GMT -5. The time now is 05:08 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