[v7.2] [ENGLISH] [Jack] WeaponDamageRerollCalculatorPlugin menu

User Tag List

Page 5 of 5 FirstFirst 12345
Results 61 to 75 of 75
  1. #61
    gumegasonic's Avatar Member
    Reputation
    1
    Join Date
    Mar 2020
    Posts
    14
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    sry, I didn't understand what do you mean with X and XX

    [v7.2] [ENGLISH] [Jack] WeaponDamageRerollCalculatorPlugin
  2. #62
    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 gumegasonic View Post
    sry, I didn't understand what do you mean with X and XX
    It means, Min. (X) / Max. (XX) Damage-Range.
    "When you reach the top, get ready to drop!"

  3. Thanks gumegasonic (1 members gave Thanks to BeeAntOS for this useful post)
  4. #63
    gumegasonic's Avatar Member
    Reputation
    1
    Join Date
    Mar 2020
    Posts
    14
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ty, so is it the max damage-range possible without dmg% or as%?

  5. #64
    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 gumegasonic View Post
    ty, so is it the max damage-range possible without dmg% or as%?
    Yes, it is a base/raw min/max (dependent on RNG) damage range.
    "When you reach the top, get ready to drop!"

  6. #65
    gumegasonic's Avatar Member
    Reputation
    1
    Join Date
    Mar 2020
    Posts
    14
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ty so much

  7. #66
    JollyTex's Avatar Member
    Reputation
    6
    Join Date
    Mar 2017
    Posts
    68
    Thanks G/R
    44/5
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Welcome back Jack, tried your damage reroll calculator and it gave the Bug exception.

    2020.06.29 16:56:33.007 20.6.28.1 suspicious code in plugin file: 'E:\Users\Documents\Turbo 9\Plugins\Jack\Items\WeaponDamageRerollCalculatorPlugin.cs': possibly trying to hide behaviour with unicode characters.
    2020.06.29 17:03:50.495 20.6.28.1 suspicious code in plugin file: 'E:\Users\ \Documents\Turbo 9\Plugins\Jack\Items\WeaponDamageRerollCalculatorPlugin.cs': possibly trying to hide behaviour with unicode characters.

    can you help to fix it,

  8. #67
    RNN's Avatar Legendary
    Reputation
    810
    Join Date
    Sep 2018
    Posts
    1,051
    Thanks G/R
    103/773
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    In general you have to search \u in the plugin and replace the "text" with the corresponding symbol. Use this website: Search - Unicode Character Table and click on the Copy button, or Charbase
    Line 177
    Code:
    lineFormat += " \uD83D\uDDD8"; //🗘
    Code:
    lineFormat += " 🗘";
    Last edited by RNN; 06-29-2020 at 06:33 PM.

  9. Thanks milkisskill (1 members gave Thanks to RNN for this useful post)
  10. #68
    Chrometastic's Avatar Member
    Reputation
    1
    Join Date
    May 2016
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    RNN, Could we get a patch on the rnn archive on the plugins for 9.1

    This version does not work on Turbo Hud 9.1

  11. #69
    RNN's Avatar Legendary
    Reputation
    810
    Join Date
    Sep 2018
    Posts
    1,051
    Thanks G/R
    103/773
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    You should only modify line 170 of the file Jack\Items\WeaponDamageRerollCalculatorPlugin.cs , as i indicate in post 67

  12. Thanks milkisskill (1 members gave Thanks to RNN for this useful post)
  13. #70
    Fedalon's Avatar Member
    Reputation
    1
    Join Date
    Sep 2019
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Dont know what i am doing wrong. I always get 1 exception with jacks plugins, and they dont work. I downloaded the ZIP and then extracted it to plugins. Theres a Folder now named Jack, but it jsut gives me exceptions pls help.

  14. #71
    gjuz's Avatar Contributor
    Reputation
    121
    Join Date
    Mar 2017
    Posts
    228
    Thanks G/R
    49/118
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by RNN View Post
    In general you have to search \u in the plugin and replace the "text" with the corresponding symbol. Use this website: Search - Unicode Character Table and click on the Copy button, or Charbase
    Line 177
    Code:
    lineFormat += " \uD83D\uDDD8"; //🗘
    Code:
    lineFormat += " 🗘";
    change to
    Code:
    lineFormat += " " + Char.ConvertFromUtf32(0x0001F5D8); //Unicode Character 'CLOCKWISE RIGHT AND LEFT SEMICIRCLE ARROWS' (U+1F5D8)
    and you won't get that error in the future again.

    greetz gjuz

  15. #72
    gjuz's Avatar Contributor
    Reputation
    121
    Join Date
    Mar 2017
    Posts
    228
    Thanks G/R
    49/118
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Fedalon View Post
    Dont know what i am doing wrong. I always get 1 exception with jacks plugins, and they dont work. I downloaded the ZIP and then extracted it to plugins. Theres a Folder now named Jack, but it jsut gives me exceptions pls help.
    what kind of exception? a little more detail woult help.

    greetz gjuz

  16. #73
    Molen's Avatar Member
    Reputation
    1
    Join Date
    Aug 2009
    Posts
    2
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi!
    Error from /logs/exceptions.txt
    suspicious code in plugin file: 'F:\Games\TurboHUD 20.11.25.0 (v9.2) STABLE for Diablo III 2.6.10.71510 (64 bit) (1)\Plugins\Jack\Items\WeaponDamageRerollCalculatorPlugin.cs

  17. #74
    gjuz's Avatar Contributor
    Reputation
    121
    Join Date
    Mar 2017
    Posts
    228
    Thanks G/R
    49/118
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Molen View Post
    Hi!
    Error from /logs/exceptions.txt
    this will help (the line is near to the end of file.)

    Originally Posted by gjuz View Post
    change to
    Code:
    lineFormat += " " + Char.ConvertFromUtf32(0x0001F5D8); //Unicode Character 'CLOCKWISE RIGHT AND LEFT SEMICIRCLE ARROWS' (U+1F5D8)
    and you won't get that error in the future again.

    greetz gjuz

  18. #75
    qwerty.56's Avatar Member
    Reputation
    3
    Join Date
    Apr 2017
    Posts
    17
    Thanks G/R
    3/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Error from /logs/exceptions.txt

    20.12.9.0 suspicious code in plugin file: 'C:\Users\Admin\Desktop\TurboHUD 20.12.9.0 (v9.2) STABLE for Diablo III 2.6.10.71814 (64 bit)\Plugins\Jack\Items\WeaponDamageRerollCalculatorPlugin.cs


    lineFormat += " "; not work

Page 5 of 5 FirstFirst 12345

Similar Threads

  1. [Guide] Proper English Language
    By aggiish in forum Community Chat
    Replies: 31
    Last Post: 02-04-2008, 02:29 PM
  2. 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
  3. Lord of the Rings-Jack Black Parody
    By The Juggernaut in forum Community Chat
    Replies: 3
    Last Post: 03-09-2007, 09:46 PM
  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 09:28 AM. 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