How To: Cache edit; Use any spell in the game. menu

Shout-Out

User Tag List

Page 2 of 5 FirstFirst 12345 LastLast
Results 16 to 30 of 70
  1. #16
    Mrjohnnyboi's Avatar Member
    Reputation
    1
    Join Date
    Aug 2009
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Holy Shyte! This is epic ima try this when i get home. If i can i will +Rep^.^

    I was very popular among the Emu community once..

    How To: Cache edit; Use any spell in the game.
  2. #17
    Patchumz's Avatar Active Member
    Reputation
    43
    Join Date
    Oct 2007
    Posts
    503
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by johm2 View Post
    Yea thats what I did. I'm using Hex Workshop and you can just change the text on the right hand side manually and see how many spaces you need to add. Still trying to figure out how to get the 3part hex code working. Thinking maybe the 11th,12th,13th codes are there? or the 10th,11th,12th.
    Yeah, what I think I'm going to do is find a low spell id use effect, find it in game, and see how they store it in the cache.

    Originally Posted by Yohny View Post
    nice guide but its useless (fixed on 90% servers).
    There are hundreds of servers out there, 10% is huge... And this works on things on the top 50 of xtremetop100, that's all that matters. Not useless at all.

  3. #18
    Confucius's Avatar Super Moderator Don't Look Back in Anger


    CoreCoins Purchaser Authenticator enabled
    Reputation
    1418
    Join Date
    Oct 2007
    Posts
    2,818
    Thanks G/R
    304/311
    Trade Feedback
    7 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Stop flaming him, most of you want this removed because now that you know how to do this you don't want anyone else to have this advantage too.

    The idiot who said to have at least 15 rep to make sure it's not an admin is a complete imbecile... do you not think some of the people here who contribute don't own servers?

    If you think it's useless then don't post, you're just spamming to get your post count up so please, stfu.

    He didn't work hard on this guide just to listen to a bunch of flamers who make MMOwned less great of a place by discouraging others from contributing.

    If you have nothing nice or good to say then don't say anything at all.

    It just makes me sick reading a good guide then seeing nothing but flamers and bullies so please just stfu or gtfo.

    This applies to everywhere not just this thread.

    /flame off :wave:

    Poor you forgot the popcorn

  4. #19
    Doubleerror's Avatar Member
    Reputation
    16
    Join Date
    Sep 2007
    Posts
    117
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Patchumz View Post
    I don't know, I'm still trying to figure that out.. i'll definitely post it once I do. But what I assume you need to do is replace the words with what you want, and replace the extra spaces that you didn't use with 00's, or vice versa if your name is longer than the original.

    EDIT: I attempted that and it gave me a BAD_ACCESS error hen I tried logging in, so I have no clue, lol. I'll still keep trying to find out how though.

    EDIT2: Try making it the same length as the old name, and if it's too short replace all the extra with spaces (Space = 20 in hex). I don't think you can make it longer though.
    To make it longer, create new bytes by the length of the "extra" (1 letter - 1 byte - 2 diggits (like 4B ). To shorten it, take some away.

    Replacing something with 00s just f#&@s up the whole system since it navigates via the last filled byte.
    Like: Name - # of empty locations - next info.
    Having 4B 68 6F 6E 7A 61 00 00 00 00 FF FF (4 empty locations) replaced by 72 6F 63 6B 73 00 00 00 00 00 FF FF (5 empty locations) makes it look at the 00 FF (location 10 & 11) except of FF FF (location 11 & 12). Needless to say, this will just make a shitload of errors raining straight down on you.
    So the best way is to get a Hex Editor that's capable of adding/removing bytes and shorten it to 72 6F 63 6B 73 00 00 00 00 FF FF (see, 4 empty locations. WoW reads FF FF. You win.)

    PS: Elitepwner's way included swapping the whole itemID with the spellID which kind of... didn't work, shouldn't work and most likely can't work since no spells exist in the item-tables that I know of.
    I for my part think he's just out for the rep.
    So in my opinion this one's as much of a repost as the pope is a heavy metal fan girl.

  5. #20
    Zeedoox's Avatar Member
    Reputation
    1
    Join Date
    Jan 2007
    Posts
    23
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Orinth View Post
    So what do I do if the hex only has three numbers, such as Uber heal over time?
    for 3 digit hex's such as uber heal over time you add a 0 infront of the first number. For example uber heal over time's hex is 774, which really is 0774 and you would enter it in wow as 74 07. Hope this helps.

  6. #21
    Patchumz's Avatar Active Member
    Reputation
    43
    Join Date
    Oct 2007
    Posts
    503
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Doubleerror View Post
    To make it longer, create new bytes by the length of the "extra" (1 letter - 1 byte - 2 diggits (like 4B ). To shorten it, take some away.

    Replacing something with 00s just f#&@s up the whole system since it navigates via the last filled byte.
    Like: Name - # of empty locations - next info.
    Having 4B 68 6F 6E 7A 61 00 00 00 00 FF FF (4 empty locations) replaced by 72 6F 63 6B 73 00 00 00 00 00 FF FF (5 empty locations) makes it look at the 00 FF (location 10 & 11) except of FF FF (location 11 & 12). Needless to say, this will just make a shitload of errors raining straight down on you.
    So the best way is to get a Hex Editor that's capable of adding/removing bytes and shorten it to 72 6F 63 6B 73 00 00 00 00 FF FF (see, 4 empty locations. WoW reads FF FF. You win.)

    PS: Elitepwner's way included swapping the whole itemID with the spellID which kind of... didn't work, shouldn't work and most likely can't work since no spells exist in the item-tables that I know of.
    I for my part think he's just out for the rep.
    So in my opinion this one's as much of a repost as the pope is a heavy metal fan girl.
    Originally Posted by Zeedoox View Post
    for 3 digit hex's such as uber heal over time you add a 0 infront of the first number. For example uber heal over time's hex is 774, which really is 0774 and you would enter it in wow as 74 07. Hope this helps.
    Thanks a ton to both of you, I'll put that on the first post and credit you guys.. Helped a lot for further customization.
    Last edited by Patchumz; 08-12-2009 at 12:26 AM.

  7. #22
    weswes007123's Avatar Member
    Reputation
    2
    Join Date
    Aug 2009
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ty alot mate but i want more explain

  8. #23
    Patchumz's Avatar Active Member
    Reputation
    43
    Join Date
    Oct 2007
    Posts
    503
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Heh, editing names just eventually ****s up my cache and makes me redo it all :P Not even going to bother with it. I can get through like 5 items and then suddenly I mess up somewhere along the line.

  9. #24
    Deject3d's Avatar Member
    Reputation
    1
    Join Date
    Jul 2009
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Or you could spend 3 seconds making a WPE filter for a received packet to mod the item client-side, then have a second filter to cast the modified spell ID.

    More efficient, less error prone.

    Just sayin'.

  10. #25
    Patchumz's Avatar Active Member
    Reputation
    43
    Join Date
    Oct 2007
    Posts
    503
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Deject3d View Post
    Or you could spend 3 seconds making a WPE filter for a received packet to mod the item client-side, then have a second filter to cast the modified spell ID.

    More efficient, less error prone.

    Just sayin'.
    I use a Mac (No flames now :P), so I work with what I can get ahold of, WPE Pro isn't one of those things :P Although it would be nice to be able to use WPE.

  11. #26
    Deject3d's Avatar Member
    Reputation
    1
    Join Date
    Jul 2009
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Patchumz View Post
    I use a Mac (No flames now :P), so I work with what I can get ahold of, WPE Pro isn't one of those things :P Although it would be nice to be able to use WPE.
    Eh.. I would have spent my time learning how to use a mac-compatible packet editor then.

    I personally use Redox for windoze, anyways.

  12. #27
    Patchumz's Avatar Active Member
    Reputation
    43
    Join Date
    Oct 2007
    Posts
    503
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Deject3d View Post
    Eh.. I would have spent my time learning how to use a mac-compatible packet editor then.

    I personally use Redox for windoze, anyways.
    I've attempted to find a well made Packet Editor for Mac but nothing works like the Windows ones do, and I don't care enough to really find one. I don't play Retail anymore, and I'm only playing Private servers until Aion is released (Betas got boring, didn't wanna play my main so I didn't burn out on him for retail).

    If I planned on doing some hardcore stuff I might try a bit harder.. but I've tried at least 3 times (Extensively) to find worthwhile Packet Editors, to no avail.

  13. #28
    Traviswowlol's Avatar Member
    Reputation
    28
    Join Date
    Apr 2009
    Posts
    43
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    patch your using neo hex editer? Cuz its like 4 steps in neo 0.o
    I just noticed my join date is 4/20 =]

    First item catch edit posted on server by me =]

  14. #29
    johm2's Avatar Active Member CoreCoins Purchaser
    Reputation
    48
    Join Date
    Nov 2007
    Posts
    214
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Doubleerror View Post
    To make it longer, create new bytes by the length of the "extra" (1 letter - 1 byte - 2 diggits (like 4B ). To shorten it, take some away.

    Replacing something with 00s just f#&@s up the whole system since it navigates via the last filled byte.
    Like: Name - # of empty locations - next info.
    Having 4B 68 6F 6E 7A 61 00 00 00 00 FF FF (4 empty locations) replaced by 72 6F 63 6B 73 00 00 00 00 00 FF FF (5 empty locations) makes it look at the 00 FF (location 10 & 11) except of FF FF (location 11 & 12). Needless to say, this will just make a shitload of errors raining straight down on you.
    So the best way is to get a Hex Editor that's capable of adding/removing bytes and shorten it to 72 6F 63 6B 73 00 00 00 00 FF FF (see, 4 empty locations. WoW reads FF FF. You win.)

    PS: Elitepwner's way included swapping the whole itemID with the spellID which kind of... didn't work, shouldn't work and most likely can't work since no spells exist in the item-tables that I know of.
    I for my part think he's just out for the rep.
    So in my opinion this one's as much of a repost as the pope is a heavy metal fan girl.
    See that works for the names, but how do you add in a spell that is a 3-part hex (20 20 20) where it is only 2-parts in your guide (20 20)? I fell asleep early yesterday and never tried. will work on figuring it out today.

  15. #30
    Rec Alpam's Avatar Contributor CoreCoins Purchaser
    Reputation
    125
    Join Date
    Mar 2007
    Posts
    304
    Thanks G/R
    3/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    +Rep for the effort of posting.

Page 2 of 5 FirstFirst 12345 LastLast

Similar Threads

  1. [New way] Shadowfang exploration # Any version of the game!
    By yunalol22 in forum World of Warcraft Exploration
    Replies: 4
    Last Post: 09-15-2012, 03:07 PM
  2. Integrate any Guide into the game.
    By Deranged in forum World of Warcraft Guides
    Replies: 32
    Last Post: 04-27-2008, 12:46 PM
  3. how do i put my custom item into the game?
    By soapygrinda in forum World of Warcraft Emulator Servers
    Replies: 6
    Last Post: 02-11-2008, 04:56 PM
  4. [POSSIBLY NEW]How to run while casting *ANY SPELL*?
    By Bareno in forum World of Warcraft Exploits
    Replies: 103
    Last Post: 01-29-2008, 07:13 PM
All times are GMT -5. The time now is 04:45 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