[UnderDev] - D2GS (Death to Gear Score) menu

Shout-Out

User Tag List

Page 1 of 3 123 LastLast
Results 1 to 15 of 35
  1. #1
    Skuddle's Avatar Elite User

    CoreCoins Purchaser
    Reputation
    515
    Join Date
    May 2008
    Posts
    287
    Thanks G/R
    4/11
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [UnderDev] - D2GS (Death to Gear Score)

    MMOwned,

    Currently under development by me and another unamed programmer is an addon which will be used to destroy gearscore. The current gearscore only works now by sharing via guild what you see.

    Attached is the current copy that works about 30% of the time. Since I am working on it. I would love to have help with the LUA as I need to figure a way to bypass the Auth part.
    Code:
    local frmD2GS = CreateFrame("Frame")
    frmD2GS:RegisterEvent("ADDON_LOADED")
    frmD2GS:RegisterEvent("CHAT_MSG_ADDON")
    local tblTemp = {}
    function frmD2GS:OnEvent(event, prefix, message, channel, sender)
    	if (event == "ADDON_LOADED") and (prefix == "D2GS") then		     		print("Thanks for trying out D2GS!")
    			elseif (event == "CHAT_MSG_ADDON" and prefix == "GSY" and sender ~= UnitName("player"))  then
    prefix == "GSY_Request"	
    		table.wipe(tblTemp)
    		local strTemp = ""
    				for s in string.gmatch(message, "[^$]+") do
     			tinsert(tblTemp, s)
    		end
    		if tblTemp[#tblTemp] ~= "22281:0" then
    			tblTemp[2] = tostring(math.random(5500, 6500))
    			tblTemp[3] = tostring(tonumber(tblTemp[3] + 1))
    			tblTemp[5] = tostring(math.random(250, 300))
    			tblTemp[11] = UnitName("player")
    			tblTemp[#tblTemp] = "22281:0"
    						for i = 1, getn(tblTemp) do
    				strTemp = strTemp..tblTemp[i].."$"
    			end
    					if (string.len(strTemp) <= 251) then
    				SendAddonMessage(prefix, strTemp, channel)
    			else
    				tblTemp[11] = ""
    				SendAddonMessage(prefix, strTemp, channel)
    			end
    		end
    	end
    -------------
    elseif (event == "CHAT_MSG_ADDON" and prefix == "GSY_Request" and sender ~= UnitName("player"))  then	
    		table.wipe(tblTemp)
    		local strTemp = ""
    				for s in string.gmatch(message, "[^$]+") do
     			tinsert(tblTemp, s)
    		end
    		if tblTemp[#tblTemp] ~= "22281:0" then
    			tblTemp[2] = tostring(math.random(5500, 6500))
    			tblTemp[3] = tostring(tonumber(tblTemp[3] + 1))
    			tblTemp[5] = tostring(math.random(250, 300))
    			tblTemp[11] = UnitName("player")
    			tblTemp[#tblTemp] = "22281:0"
    						for i = 1, getn(tblTemp) do
    				strTemp = strTemp..tblTemp[i].."$"
    			end
    					if (string.len(strTemp) <= 251) then
    				SendAddonMessage(prefix, strTemp, channel)
    			else
    				tblTemp[11] = ""
    				SendAddonMessage(prefix, strTemp, channel)
    			end
    		end
    	end
    --------------
    elseif (event == "CHAT_MSG_ADDON" and prefix == "GearScore" and sender ~= UnitName("player"))  then	
    		table.wipe(tblTemp)
    		local strTemp = ""
    				for s in string.gmatch(message, "[^$]+") do
     			tinsert(tblTemp, s)
    		end
    		if tblTemp[#tblTemp] ~= "22281:0" then
    			tblTemp[2] = tostring(math.random(5500, 6500))
    			tblTemp[3] = tostring(tonumber(tblTemp[3] + 1))
    			tblTemp[5] = tostring(math.random(250, 300))
    			tblTemp[11] = UnitName("player")
    			tblTemp[#tblTemp] = "22281:0"
    						for i = 1, getn(tblTemp) do
    				strTemp = strTemp..tblTemp[i].."$"
    			end
    					if (string.len(strTemp) <= 251) then
    				SendAddonMessage(prefix, strTemp, channel)
    			else
    				tblTemp[11] = ""
    				SendAddonMessage(prefix, strTemp, channel)
    			end
    		end
    	end
    
    -------------
    end
    
    frmD2GS:SetScript("OnEvent", frmD2GS.OnEvent)
    A working copy will be finished tonight for all to use!
    Still working :-P

    [UnderDev] - D2GS (Death to Gear Score)
  2. #2
    Unholyshaman's Avatar ★ Elder ★
    Reputation
    1517
    Join Date
    Jun 2007
    Posts
    2,827
    Thanks G/R
    20/20
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can't wait to see, but what do you mean only works via guild to see?

  3. #3
    Skuddle's Avatar Elite User

    CoreCoins Purchaser
    Reputation
    515
    Join Date
    May 2008
    Posts
    287
    Thanks G/R
    4/11
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The way that GS works now is sharing information Via Guild, and Group Channels. It used to be via the main channel.

    Right now whats put in is faking your gearscore to your Guild, in which case when your guild members go to other groups your gearscore gets passed along the hidden channel to the other Gearscore users.


    Example:

    Your GS is faked at 5600.
    BOB is in your guild, he gets your new GS of 5600.
    BOB goes to a RAID of 24 others which all of them are using GS.
    BOB synchs his database based off Timestamps with the other 24.
    The other 24 then get loaded with your GS of 5600 without ever seeing you.

    Until someone actually mouses or inspects you, that fake GS that is passed along is what is sent. Its so that when you post in Trade or whisper someone, your fake GS will be sent. Essentially when you whisper if they have your fake GS it would show:

    [Unholy](5600): Hi

    as apposed to
    [Unholy](3389): Hi
    Still working :-P

  4. #4
    Zantas's Avatar Contributor
    Reputation
    258
    Join Date
    Dec 2007
    Posts
    1,114
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just like underachiever =)
    https://i45.tinypic.com/157df7r.jpg


  5. #5
    [Sadistic]'s Avatar Member
    Reputation
    42
    Join Date
    Sep 2009
    Posts
    247
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Skuddle[Mynt] View Post
    MMOwned,

    Currently under development by me and another unamed programmer is an addon which will be used to destroy gearscore. The current gearscore only works now by sharing via guild what you see.

    Attached is the current copy that works about 30% of the time. Since I am working on it. I would love to have help with the LUA as I need to figure a way to bypass the Auth part.
    Code:
    local frmD2GS = CreateFrame("Frame")
    frmD2GS:RegisterEvent("ADDON_LOADED")
    frmD2GS:RegisterEvent("CHAT_MSG_ADDON")
    local tblTemp = {}
    function frmD2GS:OnEvent(event, prefix, message, channel, sender)
    	if (event == "ADDON_LOADED") and (prefix == "D2GS") then		     		print("Thanks for trying out D2GS!")
    			elseif (event == "CHAT_MSG_ADDON" and prefix == "GSY" and sender ~= UnitName("player"))  then
    prefix == "GSY_Request"	
    		table.wipe(tblTemp)
    		local strTemp = ""
    				for s in string.gmatch(message, "[^$]+") do
     			tinsert(tblTemp, s)
    		end
    		if tblTemp[#tblTemp] ~= "22281:0" then
    			tblTemp[2] = tostring(math.random(5500, 6500))
    			tblTemp[3] = tostring(tonumber(tblTemp[3] + 1))
    			tblTemp[5] = tostring(math.random(250, 300))
    			tblTemp[11] = UnitName("player")
    			tblTemp[#tblTemp] = "22281:0"
    						for i = 1, getn(tblTemp) do
    				strTemp = strTemp..tblTemp[i].."$"
    			end
    					if (string.len(strTemp) <= 251) then
    				SendAddonMessage(prefix, strTemp, channel)
    			else
    				tblTemp[11] = ""
    				SendAddonMessage(prefix, strTemp, channel)
    			end
    		end
    	end
    -------------
    elseif (event == "CHAT_MSG_ADDON" and prefix == "GSY_Request" and sender ~= UnitName("player"))  then	
    		table.wipe(tblTemp)
    		local strTemp = ""
    				for s in string.gmatch(message, "[^$]+") do
     			tinsert(tblTemp, s)
    		end
    		if tblTemp[#tblTemp] ~= "22281:0" then
    			tblTemp[2] = tostring(math.random(5500, 6500))
    			tblTemp[3] = tostring(tonumber(tblTemp[3] + 1))
    			tblTemp[5] = tostring(math.random(250, 300))
    			tblTemp[11] = UnitName("player")
    			tblTemp[#tblTemp] = "22281:0"
    						for i = 1, getn(tblTemp) do
    				strTemp = strTemp..tblTemp[i].."$"
    			end
    					if (string.len(strTemp) <= 251) then
    				SendAddonMessage(prefix, strTemp, channel)
    			else
    				tblTemp[11] = ""
    				SendAddonMessage(prefix, strTemp, channel)
    			end
    		end
    	end
    --------------
    elseif (event == "CHAT_MSG_ADDON" and prefix == "GearScore" and sender ~= UnitName("player"))  then	
    		table.wipe(tblTemp)
    		local strTemp = ""
    				for s in string.gmatch(message, "[^$]+") do
     			tinsert(tblTemp, s)
    		end
    		if tblTemp[#tblTemp] ~= "22281:0" then
    			tblTemp[2] = tostring(math.random(5500, 6500))
    			tblTemp[3] = tostring(tonumber(tblTemp[3] + 1))
    			tblTemp[5] = tostring(math.random(250, 300))
    			tblTemp[11] = UnitName("player")
    			tblTemp[#tblTemp] = "22281:0"
    						for i = 1, getn(tblTemp) do
    				strTemp = strTemp..tblTemp[i].."$"
    			end
    					if (string.len(strTemp) <= 251) then
    				SendAddonMessage(prefix, strTemp, channel)
    			else
    				tblTemp[11] = ""
    				SendAddonMessage(prefix, strTemp, channel)
    			end
    		end
    	end
    
    -------------
    end
    
    frmD2GS:SetScript("OnEvent", frmD2GS.OnEvent)
    A working copy will be finished tonight for all to use!
    have a under geared toon? cant raid icc? so your gonna lie to your guild.. if there a raiding guild lol yall get gkick instantly, lol they will see that your gearscore is a fake due to all your blues...this is pointless if you know the fight in icc tell them that, or get on your main and show them your achievements
    Last edited by [Sadistic]; 04-11-2010 at 01:56 AM.

  6. #6
    Skuddle's Avatar Elite User

    CoreCoins Purchaser
    Reputation
    515
    Join Date
    May 2008
    Posts
    287
    Thanks G/R
    4/11
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ^,

    I have a 5890 GS tank. I don't need to fake anything. In case you forgot where you were, your on a website called MMOwned, which is WoW Exploits / Hacks / Bots and Emulation.

    I am not sure if you forgot why your here, maybe to exploit...

    Your post was meaningless, as are 90% of your other posts after reviewing them. Are you a post increaser or are you actually here to contribute to Exploiting WoW.. Elitest Jerks is that way btw -->
    Still working :-P

  7. #7
    Cruelness's Avatar Member OVERBoost CoreCoins Purchaser
    Reputation
    2
    Join Date
    Aug 2009
    Posts
    96
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I pray for this. GL

  8. #8
    [Sadistic]'s Avatar Member
    Reputation
    42
    Join Date
    Sep 2009
    Posts
    247
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Skuddle[Mynt] View Post
    ^,

    I have a 5890 GS tank. I don't need to fake anything. In case you forgot where you were, your on a website called MMOwned, which is WoW Exploits / Hacks / Bots and Emulation.

    I am not sure if you forgot why your here, maybe to exploit...

    Your post was meaningless, as are 90% of your other posts after reviewing them. Are you a post increaser or are you actually here to contribute to Exploiting WoW.. Elitest Jerks is that way btw -->
    then why fake your Gs then if its 5890? maybe you should review some of the post... lol who does that

  9. #9
    Skuddle's Avatar Elite User

    CoreCoins Purchaser
    Reputation
    515
    Join Date
    May 2008
    Posts
    287
    Thanks G/R
    4/11
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by [Sadistic] View Post
    then why fake your Gs then if its 5890? maybe you should review some of the post... lol who does that
    Why are you here.
    Still working :-P

  10. #10
    Remus's Avatar Banned

    Reputation
    402
    Join Date
    Nov 2007
    Posts
    1,697
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Perhaps you haven't read through the thread itself Sadistic.. DEATH to gearscore.. what is thrown around every chance you talk to someone, how big their epeen gearscore is. You are most likely someone who kicks a 2600GS healer out of say ... Pit of Saron, btw I might add he healed perfectly, without giving the person a chance because your time is OH so valuable.

    I hope for the death of gearscore so that times can attempt to return to BC raiding. Where it was skill that was brought, not gear to compensate your stupidity. Prebc im not a fan of raiding, too big- unruly ass hats were often encountered.

  11. #11
    [Sadistic]'s Avatar Member
    Reputation
    42
    Join Date
    Sep 2009
    Posts
    247
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Remus View Post
    Perhaps you haven't read through the thread itself Sadistic.. DEATH to gearscore.. what is thrown around every chance you talk to someone, how big their epeen gearscore is. You are most likely someone who kicks a 2600GS healer out of say ... Pit of Saron, btw I might add he healed perfectly, without giving the person a chance because your time is OH so valuable.

    I hope for the death of gearscore so that times can attempt to return to BC raiding. Where it was skill that was brought, not gear to compensate your stupidity. Prebc im not a fan of raiding, too big- unruly ass hats were often encountered.
    1. your wrong about my gs lol try n beat a 6k buddy lolz
    2. armory link my epeen lol The World of Warcraft Armory - Zorash @ Maiev - Profile think again dont talk about stuff u dont know...
    Last edited by [Sadistic]; 04-14-2010 at 04:01 PM.

  12. #12
    Remus's Avatar Banned

    Reputation
    402
    Join Date
    Nov 2007
    Posts
    1,697
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I never said you, idiot. called RL experience seeing it happen. take your shit elsewhere, which you OBVIOUSLY missed the point.
    [spoiler]
    and good for you, you got pixels man, how does it feel? Care to keep saying your better than us and trying to say GS should stay? I can keep up with 6k gs people, the premise that GS has replaced taking peoples knowledge of gear and how to actually play, into a form of HAI I CAN SPAM HEROIX and get 5k GS. Grats now you can fail pug ninja loot your way 5.5-6k.

    Maye you have missed the OS3D zergs where a 5k gs warlock is doing barely 2k dps. or when a friend constantly nags you why he can't get his dps higher than 3.8 to my 6.8 during raids, GS means you can farm your way through shit and still does not guarantee the person knows how to play, but what is this.... people ASSUME it does.

    So yes I do fkn know. It's the internet you can't know who sits behind the other screen, I never said YOU or said anything against YOU. it is experience in the actual casual areas that you lack because you think yourself so uppity that you base skill on gearscore itself. you can be the shittiest warlock ever and still manage to get to 5200 GS.

    Take your "6k buddy lolz", and shove it up your *** where it belongs.
    http://www.wowarmory.com/character-s...od&cn=Celebren Laugh at it all you want, I didn't spam raids at the start of wrath, much more enjoyable to play with friends and dink around while they finally get to 80. This is a topic on death to GS not your personal epeen thread.
    [/spoiler]

    If I had to say anything towards you, it would, GRATS BRO you got to ICC25 and healed some people. Did you enjoy your stupid post trying to disdain people?
    Last edited by Remus; 04-14-2010 at 04:34 PM.

  13. #13
    [Sadistic]'s Avatar Member
    Reputation
    42
    Join Date
    Sep 2009
    Posts
    247
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Remus View Post
    I never said you, idiot. called RL experience seeing it happen. take your shit elsewhere, which you OBVIOUSLY missed the point.

    and good for you, you got pixels man, how does it feel? Care to keep saying your better than us and trying to say GS should stay? I can keep up with 6k gs people, the premise that GS has replaced taking peoples knowledge of gear and how to actually play, into a form of HAI I CAN SPAM HEROIX and get 5k GS. Grats now you can fail pug ninja loot your way 5.5-6k.

    Maye you have missed the OS3D zergs where a 5k gs warlock is doing barely 2k dps. or when a friend constantly nags you why he can't get his dps higher than 3.8 to my 5.8 during raids, GS means you can farm your way through shit and still does not guarantee the person knows how to play, but what is this.... people ASSUME it does.

    So yes I do fkn know. It's the internet you can't know who sits behind the other screen, I never said YOU or said anything against YOU. it is experience in the actual casual areas that you lack because you think yourself so uppity that you base skill on gearscore itself. you can be the shittiest warlock ever and still manage to get to 5200 GS.

    Go back on ****ing topic.
    wow i loled so hard!!! gs is about the players experience, and where they've been hints achievements? gs show what the players know about his/her class maybe you should /gs on a target you will learn more.... if they player knows what they are doing, they can link achievements to the raid leader and get a inv that way they dont have to fake something they dont have, becuase the person who uses may not know any of the fights THATS WHY NUFF SAID KTHXBI btw check teh achievements all hard modes in icc 10 bruh i know what i am talking about maybe you should read this and stop editing your post maybe?
    Last edited by [Sadistic]; 04-14-2010 at 04:39 PM.

  14. #14
    Remus's Avatar Banned

    Reputation
    402
    Join Date
    Nov 2007
    Posts
    1,697
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sadistic you have BLATANTLY MISSED THE ****ING POINT. almost not worth fkn talking to much less trying to provide another look at things.
    [spoiler]
    NO I WAS NOT TALKING ABOUT YOU if you read.. he healed just fine... HO SHIT A PRIEST of 2600GS healing PoS, your 6k attitude shows that you would have kicked him for that alone, as what's this ... HE JUST DINGED 80 omfg, no achievements.
    [/spoiler]

    protip- dbl posting is stupid and there is a edit feature; HEY DURP.. your being an idiot.

  15. #15
    [Sadistic]'s Avatar Member
    Reputation
    42
    Join Date
    Sep 2009
    Posts
    247
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Remus View Post
    I never said you, idiot. called RL experience seeing it happen. take your shit elsewhere, which you OBVIOUSLY missed the point.
    [spoiler]
    and good for you, you got pixels man, how does it feel? Care to keep saying your better than us and trying to say GS should stay? I can keep up with 6k gs people, the premise that GS has replaced taking peoples knowledge of gear and how to actually play, into a form of HAI I CAN SPAM HEROIX and get 5k GS. Grats now you can fail pug ninja loot your way 5.5-6k.

    Maye you have missed the OS3D zergs where a 5k gs warlock is doing barely 2k dps. or when a friend constantly nags you why he can't get his dps higher than 3.8 to my 6.8 during raids, GS means you can farm your way through shit and still does not guarantee the person knows how to play, but what is this.... people ASSUME it does.

    So yes I do fkn know. It's the internet you can't know who sits behind the other screen, I never said YOU or said anything against YOU. it is experience in the actual casual areas that you lack because you think yourself so uppity that you base skill on gearscore itself. you can be the shittiest warlock ever and still manage to get to 5200 GS.

    Take your "6k buddy lolz", and shove it up your *** where it belongs.
    The World of Warcraft Armory - Celebren @ Duskwood - Profile Laugh at it all you want, I didn't spam raids at the start of wrath, much more enjoyable to play with friends and dink around while they finally get to 80. This is a topic on death to GS not your personal epeen thread.
    [/spoiler]

    If I had to say anything towards you, it would, GRATS BRO you got to ICC25 and healed some people. Did you enjoy your stupid post trying to disdain people?
    Originally Posted by Remus View Post
    Sadistic you have BLATANTLY MISSED THE ****ING POINT. almost not worth fkn talking to much less trying to provide another look at things.
    [spoiler]
    NO I WAS NOT TALKING ABOUT YOU if you read.. he healed just fine... HO SHIT A PRIEST of 2600GS healing PoS, your 6k attitude shows that you would have kicked him for that alone, as what's this ... HE JUST DINGED 80 omfg, no achievements.
    [/spoiler]

    protip- dbl posting is stupid and there is a edit feature; HEY DURP.. your being an idiot.
    hahahah wut?

    "I can keep up with 6k gs people" no way in hell can you keep up with 12k dps no way in hell
    Last edited by [Sadistic]; 04-14-2010 at 04:47 PM.

Page 1 of 3 123 LastLast

Similar Threads

  1. [Trading] 5343 gear score lvl 80 Reribution Paladin
    By Spartacusz in forum World of Warcraft Buy Sell Trade
    Replies: 0
    Last Post: 07-12-2010, 09:35 PM
  2. [Trading] Trading 80 Mage 5k+ Gear score (Not a hard request)
    By Stormxlz in forum Members Only Accounts And CD Keys Buy Sell
    Replies: 2
    Last Post: 06-30-2010, 07:06 AM
  3. [SQL] Death Knight Gear & Charger Upon Creation
    By pubicbear in forum WoW EMU General Releases
    Replies: 11
    Last Post: 12-16-2009, 10:05 AM
  4. [Reskin] Green Death Knight Gear + Mount
    By jackknife35 in forum World of Warcraft Model Editing
    Replies: 6
    Last Post: 03-15-2009, 01:13 AM
  5. Priest 'cheat' death in battlegrounds score
    By dark0star in forum World of Warcraft Exploits
    Replies: 12
    Last Post: 08-03-2007, 11:33 AM
All times are GMT -5. The time now is 03:43 PM. 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