HD - WOW *Maximize Grapichs* menu

User Tag List

Page 12 of 26 FirstFirst ... 8910111213141516 ... LastLast
Results 166 to 180 of 390
  1. #166
    Earthcel's Avatar Active Member
    Reputation
    18
    Join Date
    Apr 2008
    Posts
    118
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    To above poster:
    You are actually not right when you say that it is not bannable. This is a third party software that does change the game, and in theory it is bannable. However the chanses for a bann seems rather low.

    HD - WOW *Maximize Grapichs*
  2. #167
    malakas's Avatar Member
    Reputation
    2
    Join Date
    May 2007
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nice program

  3. #168
    thikr's Avatar Member
    Reputation
    9
    Join Date
    Dec 2007
    Posts
    101
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by UnknOwned View Post

    You can write your own shaders for wow.
    WoW supports ARB - openGL assembly language, for GLS shaders. Its not "that" thrilling but you can easily make some nice bloom effects etc.
    The cool thing is that wow does not use some crazy obfuscation for the shader code so you can just write and convert.

    Here is the basic Blur Effect:

    Code:
    !!ARBfp1.0
    
    PARAM c[1] = { { 0.25 } };
    TEMP R0;
    TEMP R1;
    TEMP R2;
    TEX R1, fragment.texcoord[1], texture[1], 2D;
    TEX R0, fragment.texcoord[0], texture[0], 2D;
    ADD R2, R0, R1;
    TEX R0, fragment.texcoord[2], texture[2], 2D;
    TEX R1, fragment.texcoord[3], texture[3], 2D;
    ADD R0, R2, R0;
    ADD R0, R0, R1;
    MUL result.color, R0, c[0].x;
    END
    
    
    !!ARBfp1.0
    
    PARAM c[1] = { { 0.25 } };
    TEMP R0;
    TEMP R1;
    TEMP R2;
    TEX R1, fragment.texcoord[1], texture[1], RECT;
    TEX R0, fragment.texcoord[0], texture[0], RECT;
    ADD R2, R0, R1;
    TEX R0, fragment.texcoord[2], texture[2], RECT;
    TEX R1, fragment.texcoord[3], texture[3], RECT;
    ADD R0, R2, R0;
    ADD R0, R0, R1;
    MUL result.color, R0, c[0].x;
    END
    Combining nearby colors and mixes them toghter.
    Awesome, how do I use it though, can I just pop this into a macro?

  4. #169
    MossFira2's Avatar Member
    Reputation
    1
    Join Date
    May 2009
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I love that you posetd all the snips of code, fun to look through.

  5. #170
    ledbythereaper's Avatar Member
    Reputation
    2
    Join Date
    Sep 2008
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Earthcel View Post
    To above poster:
    You are actually not right when you say that it is not bannable. This is a third party software that does change the game, and in theory it is bannable. However the chanses for a bann seems rather low.
    Ah but all it's doing is changing the view distance and removing the fog, which you can do yourself.

  6. #171
    stepp94's Avatar Member
    Reputation
    3
    Join Date
    May 2009
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I really don't see the point in this but I suppose it could be useful for some people. Thanks anyway.
    Last edited by stepp94; 05-29-2009 at 08:00 AM.

  7. #172
    UnknOwned's Avatar Legendary
    Reputation
    713
    Join Date
    Nov 2006
    Posts
    583
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by stepp94 View Post
    I really don't see the point in this...

    You don't see the point?

    If you had the choise all year long living in one of the following conditions what would you choose?



    Hence:

    [imgl][/imgl][imgr][/imgr]


    The point is to extend the view distance so you don't have 50% of your screen covered with fog all the time, being able to see where you are going and a little more choise if you do have graphics power just going to waste since wow doesn't take that much anyway.

  8. #173
    Robbershadow's Avatar Member
    Reputation
    1
    Join Date
    Nov 2007
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    this is so cool,great!

  9. #174
    neznamsikoi's Avatar Member
    Reputation
    1
    Join Date
    Jan 2007
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by thikr View Post
    Awesome, how do I use it though, can I just pop this into a macro?
    Same thing i was wondering, tried searching on how to use custom shaders in wow but cant find anything

  10. #175
    Monkeypieeater's Avatar Banned
    Reputation
    1
    Join Date
    May 2009
    Posts
    26
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice dude!

  11. #176
    UnknOwned's Avatar Legendary
    Reputation
    713
    Join Date
    Nov 2006
    Posts
    583
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by neznamsikoi View Post
    Same thing i was wondering, tried searching on how to use custom shaders in wow but cant find anything
    BLS - WoW.Dev Wiki

  12. #177
    xxreaper008's Avatar Banned
    Reputation
    52
    Join Date
    Jan 2007
    Posts
    71
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by UnknOwned View Post

    Cant really find much of a guide or anything to change shaders.

  13. #178
    Korked's Avatar Member
    Reputation
    21
    Join Date
    May 2009
    Posts
    74
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Another epic post by Malu05!

  14. #179
    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)
    Why do you people expect to have everything spoonfed to you. Unkn0wned was letting you know that you can modify some things to make your own shaders, he gave you the crucial price of information. Unless you know how to code or memory edit, you won't be able to use it.

    Not everything is written in guides for every specific things out there, especially not for things like this.

    Props to you Malu, impressing me again.
    What's a Parog?
    Looking for competitive Valorant team!

  15. #180
    henhouse's Avatar Member
    Reputation
    11
    Join Date
    Oct 2007
    Posts
    122
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Amazing program. Thanks for the OS X version!

Page 12 of 26 FirstFirst ... 8910111213141516 ... LastLast

Similar Threads

  1. [Selling] WoW Europe Account. 7 level 90's (All Proffs maximized). Also has Hearthstone linked.
    By Siegfried012 in forum WoW-EU Account Buy Sell Trade
    Replies: 0
    Last Post: 09-05-2014, 01:34 PM
  2. [Video Guide] Maximize World of Warcraft's Graphics with WoW Machinima Tool
    By WoTLKleaked in forum WoW UI, Macros and Talent Specs
    Replies: 1
    Last Post: 08-18-2011, 11:44 AM
  3. Get your first mount in WoW easily
    By Matt in forum World of Warcraft Guides
    Replies: 3
    Last Post: 11-03-2006, 09:46 PM
  4. World of Warcraft WoW!Bot (GetALifeBot) 0.61 for WoW 1.9.4 + FishBot
    By Matt in forum World of Warcraft Bots and Programs
    Replies: 43
    Last Post: 04-18-2006, 04:55 AM
  5. Free WoW Glider 0.5.3 Loader
    By Matt in forum World of Warcraft Bots and Programs
    Replies: 5
    Last Post: 03-12-2006, 01:00 PM
All times are GMT -5. The time now is 06:46 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