Poster: Tem at 9/11/2005 9:10:03 PM PDT Subject: Slouken: I found another way to crash WoW |
| |
getmetatable(UIParent).__index(UIParent,nil). Since all xml elements share the same metatable, what you put in place of UIParent doesn't matter. It's just an example in this case. The following have the same result:
getmetatable(GameTooltip).__index(GameTooltip,nil)
getmetatable(GameTooltip).__index(UIParent,nil)
getmetatable(GameTooltip).__index(nil,nil)
However, the following do *not* crash the client:
getmetatable(GameTooltip).__index(GameTooltip,"WTFBBQ!")
getmetatable(GameTooltip).__index(UIParent,"AddLine")
getmetatable(GameTooltip).__index(nil,"GetText")
What more work?
I don't wanna do that.
Yes m'Lord.
|
| | http://forums.worldofwarcraft.com/thread.aspx?fn=wow-interface-customization&t=214164&p=#post214164 |
| |
Poster: slouken at 9/11/2005 9:53:07 PM PDT Subject: Re: Slouken: I found another way to crash WoW |
| |
Two things:
1. This is fixed for 1.8
2. Quit it! :)
|
| | http://forums.worldofwarcraft.com/thread.aspx?fn=wow-interface-customization&t=214164&p=#post214180 |
Poster: slouken at 9/12/2005 9:36:01 AM PDT Subject: Re: Slouken: I found another way to crash WoW |
| |
No problem, I think you can still crash WoW with nil in the second paramter in 1.7 though. I fixed that on Friday for 1.8.
I shudder to wonder why you're even trying this though. :)
|
| | http://forums.worldofwarcraft.com/thread.aspx?fn=wow-interface-customization&t=214164&p=#post214357 |