PoeSmoother - effects remover menu

Shout-Out

User Tag List

Page 29 of 230 FirstFirst ... 25262728293031323379129 ... LastLast
Results 421 to 435 of 3442
  1. #421
    DarkMaxan's Avatar Member
    Reputation
    3
    Join Date
    Jun 2016
    Posts
    4
    Thanks G/R
    1/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Always have crashes in Dominus and Malachai fights, also now started crashing very often, dont know why, any solution or help with tht shit?
    Last edited by DarkMaxan; 06-26-2016 at 03:32 PM. Reason: Grammar mistake

    PoeSmoother - effects remover
  2. #422
    Slayred's Avatar Member
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello.
    Can anybody suggest how to remove the effect of the explosion Kinetic Blast? Spell has two effects - projectile and explosion, and I can not find a file is responsible for the explosion .
    I apologize in advance for my English (:

  3. #423
    Crytek1's Avatar Member
    Reputation
    1
    Join Date
    Aug 2013
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So anybody found where is vessel of vinktar effects?
    Got so much lags when use it.
    Plz help to delete this effects.

  4. #424
    storyoff's Avatar Member
    Reputation
    1
    Join Date
    Feb 2016
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Crytek1 View Post
    So anybody found where is vessel of vinktar effects?
    Got so much lags when use it.
    Plz help to delete this effects.
    i have the same problem. Vinktar its so laggy trash.

  5. #425
    xiaoxiao921's Avatar Member
    Reputation
    2
    Join Date
    Jun 2014
    Posts
    9
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Vinktar effect located here :

    Metadata/Effects/Spells/monsters_effects/Viking_Vinktars_Square/

    there is the aura/aura.ao and thing like frameupper.pet

    dunno how poe smoother work but it is the effect.

  6. Thanks victoriusss (1 members gave Thanks to xiaoxiao921 for this useful post)
  7. #426
    Indig0's Avatar Member
    Reputation
    1
    Join Date
    Nov 2015
    Posts
    24
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello, how to remove crit sound? have no sound skill but when i crit shot have bad sound and lags.

  8. #427
    Parog's Avatar Kitsune Da-O! M.L.G. CoreCoins Purchaser Authenticator enabled
    Reputation
    1528
    Join Date
    May 2007
    Posts
    3,160
    Thanks G/R
    540/266
    Trade Feedback
    20 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm wondering if there's some way to determine what causes crashes related to the changes we made. I know there's logs, but I don't know if someone's actually figured out if the information is good.

    Grinding Gear Games\Path of Exile\logs I think would have the info, some of the worker#.txt ends mid-write when crashing. Wondering if it's the line that's being written and incomplete or the line that just was written that usually causes the crash. I'd like to help make this a bit more stable.
    What's a Parog?
    Looking for competitive Valorant team!

  9. #428
    vmv's Avatar ★ Elder ★
    Reputation
    1196
    Join Date
    Nov 2013
    Posts
    1,397
    Thanks G/R
    103/1053
    Trade Feedback
    0 (0%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Parog View Post
    I'm wondering if there's some way to determine what causes crashes related to the changes we made. I know there's logs, but I don't know if someone's actually figured out if the information is good.

    Grinding Gear Games\Path of Exile\logs I think would have the info, some of the worker#.txt ends mid-write when crashing. Wondering if it's the line that's being written and incomplete or the line that just was written that usually causes the crash. I'd like to help make this a bit more stable.
    Sorry ..I didn't have time to check the latest additions to the game. I assume that they are all mtx effects in the end...like what GGG does lately, just creating new mtx.
    I can offer a viable option to see what is loaded and probably what causes errors in a new loaded area.
    Take this code in put it into PreloadAlertPlugin.cs:
    PHP Code:
    List<stringLoadedFileNames = new List<string>();
    if (!
    LoadedFileNames.Contains(text)) LoadedFileNames.Add(text);
    if (
    System.IO.File.Exists("LoadedFileNames.txt")) System.IO.File.Delete("LoadedFileNames.txt");
                
    System.IO.File.WriteAllLines("LoadedFileNames.txt"LoadedFileNames); 
    Ok now, the full Parse function:
    PHP Code:
    private void Parse()
            {
                
    Memory memory GameController.Memory;
                List<
    stringLoadedFileNames = new List<string>();
                
    int pFileRoot memory.BaseAddress memory.offsets.FileRoot;
                
    int count memory.ReadInt(pFileRoot 0x8);
                
    int areaChangeCount GameController.Game.AreaChangeCount;
                
    int listIterator memory.ReadInt(pFileRoot 0x4);
                for (
    int i 0counti++)
                {
                    
    listIterator memory.ReadInt(listIterator);
                    if (
    listIterator == 0) { return; }
                    if (
    memory.ReadInt(listIterator 0x8) == || memory.ReadInt(listIterator 0xC0x34) != areaChangeCount) continue;
                    
    string text memory.ReadStringU(memory.ReadInt(listIterator 8));
                    if (
    text.Contains('@')) { text text.Split('@')[0]; }
                    if (!
    LoadedFileNames.Contains(text)) LoadedFileNames.Add(text);
                    
    CheckForPreload(text);
                }
                if (
    System.IO.File.Exists("LoadedFileNames.txt")) System.IO.File.Delete("LoadedFileNames.txt");
                
    System.IO.File.WriteAllLines("LoadedFileNames.txt"LoadedFileNames);
            } 
    This function will load every god damn thing that is loaded when an new area is up. Use this to find whatever you need , like skills, or what causes crashes...dunno:

    And ofc, this is a TehCheat function, ..so you have to give to this man some thanks and love ...

  10. Thanks Parog, toadskin (2 members gave Thanks to vmv for this useful post)
  11. #429
    Parog's Avatar Kitsune Da-O! M.L.G. CoreCoins Purchaser Authenticator enabled
    Reputation
    1528
    Join Date
    May 2007
    Posts
    3,160
    Thanks G/R
    540/266
    Trade Feedback
    20 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    My girlfriend doesn't crash and I do, so I don't think it's something affecting everyone, you're all good. I just want to know what I messed up. This should be a great help!

    Where would I put the Parse function? I haven't had time to look at the source of PoE smoother yet and I just don't want to call it too often / too early.
    Last edited by Parog; 07-02-2016 at 05:49 PM.
    What's a Parog?
    Looking for competitive Valorant team!

  12. #430
    vmv's Avatar ★ Elder ★
    Reputation
    1196
    Join Date
    Nov 2013
    Posts
    1,397
    Thanks G/R
    103/1053
    Trade Feedback
    0 (0%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Parog View Post
    My girlfriend doesn't crash and I do, so I don't think it's something affecting everyone, you're all good. I just want to know what I messed up. This should be a great help!

    Where would I put the Parse function? I haven't had time to look at the source of PoE smoother yet and I just don't want to call it too often / too early.
    The Parse function actually it's a PoeHud function. You need to use the hud to find out what is loaded with every new zone.

  13. Thanks Parog (1 members gave Thanks to vmv for this useful post)
  14. #431
    WalkerTexasRanger's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Did the remove bodies but the bodies still show Im using Bleed dunno if matters also using ascendancy gladiator(duelist) so when monsters bleed before death they explode. Any ideas why bodies are still showing up?

  15. #432
    roxassora97's Avatar Member
    Reputation
    1
    Join Date
    Apr 2015
    Posts
    1
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi, I can't seem to tick the box.
    From Garena,

  16. #433
    tyrem's Avatar Member
    Reputation
    1
    Join Date
    Nov 2013
    Posts
    6
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    PoeSmoother - effects remover-1-jpgPoeSmoother - effects remover-2-jpg how can i fix this? pls help

  17. #434
    Parog's Avatar Kitsune Da-O! M.L.G. CoreCoins Purchaser Authenticator enabled
    Reputation
    1528
    Join Date
    May 2007
    Posts
    3,160
    Thanks G/R
    540/266
    Trade Feedback
    20 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by tyrem View Post
    PoeSmoother - effects remover-1-jpgPoeSmoother - effects remover-2-jpg how can i fix this? pls help
    You corrupted your GGPK file. Replace it with your backup (You did a backup right?) or re-download it.
    What's a Parog?
    Looking for competitive Valorant team!

  18. #435
    tyrem's Avatar Member
    Reputation
    1
    Join Date
    Nov 2013
    Posts
    6
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Parog View Post
    You corrupted your GGPK file. Replace it with your backup (You did a backup right?) or re-download it.
    i didn't do a backup file before.. i deleted my PoE and re-download the 7gb files -_- .. thats the only way to fix lol

Similar Threads

  1. Remove the Halion screen glow effect
    By conquestblade in forum WoW UI, Macros and Talent Specs
    Replies: 2
    Last Post: 07-04-2010, 12:56 AM
  2. [Request] Removal of enchant effect(s)
    By Muxxon in forum WoW ME Questions and Requests
    Replies: 5
    Last Post: 03-27-2010, 06:39 AM
  3. Spell effect removing
    By Hakonj in forum World of Warcraft Exploits
    Replies: 20
    Last Post: 03-01-2007, 04:39 PM
  4. Effect: Glowing Hands!
    By oninuva in forum World of Warcraft Guides
    Replies: 3
    Last Post: 08-01-2006, 08:50 PM
  5. Turn off drunk effect at Spider Boss in ZG
    By Kalen24 in forum World of Warcraft Exploits
    Replies: 1
    Last Post: 04-23-2006, 06:02 PM
All times are GMT -5. The time now is 12:28 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search