Results 1 to 11 of 11
  1. #1
    testthisaccount123's Avatar
    Join Date
    Mar 2019
    Gender
    male
    Posts
    37
    Reputation
    10
    Thanks
    42

    Smile Help me work out how to exploit shops

    Hi,

    Guys, let's all work together!
    I am trying to find a way to exploit shops to open shops by not technically being in that map.
    What I have learned so far:

    1. It is the SERVER that kicks you out if you open a shop inappropriately, NOT the client
    2. You can OPEN ANY shop using the packet tamperer (even rare/seasonal ones I believe), but if you buy something and the server checks that you are not on the correct map, then you get kicked out
    3. The client stores the shop(s?) that you have previously loaded (to your cache?) so you can OPEN (load) them again even if you go to a different map, but if you try and buy something from them, it's the same as point number 2

    Anyone else want to join and we can work together to find out how this shop thing works and what the boundaries are, so we can find a way to exploit it and load shops from where you shouldn't be able to?
    We will be legends if we manage to work it out!

    Thanks
    Last edited by testthisaccount123; 04-02-2020 at 05:06 AM.

  2. The Following User Says Thank You to testthisaccount123 For This Useful Post:

    jhozem (04-02-2020)

  3. #2
    Geeld's Avatar
    Join Date
    Jan 2020
    Gender
    male
    Posts
    120
    Reputation
    10
    Thanks
    18
    you cant, because we cant send 2 packets quickly like server do it

    Code:
    Cilent:
    %xt%zm%buyItem%130531%46758%712%6171%
    
    Server:
    {"t":"xt","b":{"r":-1,"o":{"cmd":"buyItem","bitSuccess":1,"bBank":0,"CharItemID":1.528506001E9}}}
    Code:
    Cilent:
    <msg t='sys'><body action='joinOK' r='131554'><pid id='1'/><vars /><uLs r='131554'><u i='25587' m='0' s='0' p='1'><n><![CDATA[char name]]></n><vars></vars></u></uLs></body></msg>
    
    Server:
    {"t":"xt","b":{"r":-1,"o":{"cmd":"moveToArea","areaName":"doom-31423","uoBranch":[{"strFrame":"Enter","intMP":100,"intLevel":1,"entID":25587,"strPad":"Spawn","intMPMax":100,"intHP":395,"afk":false,"intHPMax":395,"ty":0,"tx":0,"intState":1,"entType":"p","showHelm":true,"showCloak":true,"strUsername":"char name","uoName":"char name"}],"strMapFileName":"WheelOfDoom/town-WheelOfDoom-18Nov19.swf","intType":"1","monBranch":[],"sExtra":"","areaId":131554,"strMapName":"doom"}}}
    i think if it can, the old botters will do it

  4. #3
    testthisaccount123's Avatar
    Join Date
    Mar 2019
    Gender
    male
    Posts
    37
    Reputation
    10
    Thanks
    42
    Quote Originally Posted by Geeld View Post
    you cant, because we cant send 2 packets quickly like server do it

    Code:
    Cilent:
    %xt%zm%buyItem%130531%46758%712%6171%
    
    Server:
    {"t":"xt","b":{"r":-1,"o":{"cmd":"buyItem","bitSuccess":1,"bBank":0,"CharItemID":1.528506001E9}}}
    Code:
    Cilent:
    <msg t='sys'><body action='joinOK' r='131554'><pid id='1'/><vars /><uLs r='131554'><u i='25587' m='0' s='0' p='1'><n><![CDATA[char name]]></n><vars></vars></u></uLs></body></msg>
    
    Server:
    {"t":"xt","b":{"r":-1,"o":{"cmd":"moveToArea","areaName":"doom-31423","uoBranch":[{"strFrame":"Enter","intMP":100,"intLevel":1,"entID":25587,"strPad":"Spawn","intMPMax":100,"intHP":395,"afk":false,"intHPMax":395,"ty":0,"tx":0,"intState":1,"entType":"p","showHelm":true,"showCloak":true,"strUsername":"char name","uoName":"char name"}],"strMapFileName":"WheelOfDoom/town-WheelOfDoom-18Nov19.swf","intType":"1","monBranch":[],"sExtra":"","areaId":131554,"strMapName":"doom"}}}
    i think if it can, the old botters will do it
    I mean, to be fair, there are multiple things that people only found out years into the game and publicised -- e.g. the old AC exploit, the temp items and items glitch etc.
    So it's also possible that someone has found a way, but just kept it to themselves?

    We just need one vulnerability
    One flaw
    And we will be in

    Even if there is no way to force buy shop items, if we just find some way to get us into a seasonal/rare map -- even for 1 second or so, we could blast this thing wide open and do so much with it potentially.

    I feel like if someone ever finds a way to join locked zones such as Tercess from battleon itself, we might be able to apply similar principles to get into seasonal/rare maps too

  5. #4
    unsainted's Avatar
    Join Date
    Jun 2019
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    I would encourage you to keep looking and trying things. If there is one thing I have learned while messing with this game, it's that whoever wrote the server software did not know what they were doing. It's extremely buggy and unpredictable.

    To give you an idea of just how poorly written it is, here is how the latest AC exploit worked (patched now, so don't attempt it):

    1. Buy an AC item and log the packet, or construct such a packet manually
    2. Place a space in the item id (which is a numeric value) in the packet. For example, "1234" would be changed to "12 34"
    3. Send it

    This resulted in you receiving the item while your ACs remained untouched, and you could sell the item for ACs.
    As a programmer, this might be the funniest thing I have ever seen so far. There are so many things you have to mess up in the code for something like this to happen.

    Good luck.

  6. #5
    ROBUT's Avatar
    Join Date
    Oct 2017
    Gender
    male
    Posts
    69
    Reputation
    10
    Thanks
    717
    I think that you have visit that place once in order to open the shop in different map, I don't know if my way of thinking is right tho!
    Last edited by ROBUT; 04-04-2020 at 12:54 PM.

  7. #6
    testthisaccount123's Avatar
    Join Date
    Mar 2019
    Gender
    male
    Posts
    37
    Reputation
    10
    Thanks
    42
    Quote Originally Posted by unsainted View Post
    I would encourage you to keep looking and trying things. If there is one thing I have learned while messing with this game, it's that whoever wrote the server software did not know what they were doing. It's extremely buggy and unpredictable.

    To give you an idea of just how poorly written it is, here is how the latest AC exploit worked (patched now, so don't attempt it):

    1. Buy an AC item and log the packet, or construct such a packet manually
    2. Place a space in the item id (which is a numeric value) in the packet. For example, "1234" would be changed to "12 34"
    3. Send it

    This resulted in you receiving the item while your ACs remained untouched, and you could sell the item for ACs.
    As a programmer, this might be the funniest thing I have ever seen so far. There are so many things you have to mess up in the code for something like this to happen.

    Good luck.
    Haha, thank you for that explanation!!! I'd always wondered exactly how that one worked!
    That's HILARIOUS!

    Exactly, that's the spirit! Perhaps, we can explore and find some more things!

  8. #7
    EvilErgoth's Avatar
    Join Date
    Apr 2018
    Gender
    male
    Posts
    24
    Reputation
    10
    Thanks
    106
    My Mood
    Bitchy

    Red face Helpe

    Quote Originally Posted by testthisaccount123 View Post
    Haha, thank you for that explanation!!! I'd always wondered exactly how that one worked!
    That's HILARIOUS!

    Exactly, that's the spirit! Perhaps, we can explore and find some more things!
    I have a theory that I will practice you said it reminded me of put an item id, Put Spacket Buy To see what happens
    DESCONECT 'NOT FUCKING BUT NOT AND IMMUNE SYSTEM
    Last edited by EvilErgoth; 04-04-2020 at 10:52 PM.

  9. #8
    testthisaccount123's Avatar
    Join Date
    Mar 2019
    Gender
    male
    Posts
    37
    Reputation
    10
    Thanks
    42
    Quote Originally Posted by EvilErgoth View Post
    I have a theory that I will practice you said it reminded me of put an item id, Put Spacket Buy To see what happens
    DESCONECT 'NOT FUCKING BUT NOT AND IMMUNE SYSTEM
    Sorry, man
    I didn't understand what you meant

  10. #9
    Dr@ke's Avatar
    Join Date
    Dec 2019
    Gender
    male
    Location
    Delaware
    Posts
    16
    Reputation
    10
    Thanks
    4
    My Mood
    Devilish
    contact me on im testthisaccount123

  11. #10
    meme's Avatar
    Join Date
    Jan 2016
    Gender
    male
    Location
    42.434720, -83.985
    Posts
    8,050
    Reputation
    1403
    Thanks
    2,410
    My Mood
    Lurking
    why do i get the feeling that this should actually be titled "tell me how to exploit shops or find a new exploit and give it to me"
    Quote Originally Posted by Hennessy View Post
    meme is shittiest general mod ever.
     
    dd/mm/yy
    Member | 28/1/16 - ∞
    Premium | 20/3/16 - ∞
    BattleOn Minion | 24/12/17 - 21/7/21
    Minion+ | 4/4/19 - 11/12/20
    Other MMMORPG Minion | 10/11/19 - 21/7/21
    Publicist | 7/2/20 - Unknown
    Minecraft Minion | 10/12/20 - 21/7/21
    General Minion | 10/12/20 - 21/7/21

    Moderator | 11/12/20 - 21/7/21
    Princess | 5/1/21 - 30/6/21
    Global Moderator | 21/7/21 - ∞
    Pharaoh | 30/1/22 - ∞
    Trusted Member | 16/3/23 - ∞

  12. The Following 3 Users Say Thank You to meme For This Useful Post:

    kayronsuo (04-05-2020),luis001 (04-17-2020),Poonce (04-05-2020)

  13. #11
    sokoroto's Avatar
    Join Date
    Jun 2016
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    1
    My Mood
    Amused
    Contact me I'm interested working with you and help you.

Similar Threads

  1. [Help] Can somone please help me work out how to setup and use Nippy's Fishbot?
    By bobdylanfrank in forum Trove Hacks & Cheats
    Replies: 3
    Last Post: 06-30-2020, 02:49 PM
  2. Anyone worked out how to play the same character?
    By MasterDMFour in forum Apex Legends Hacks & Cheats
    Replies: 4
    Last Post: 03-02-2019, 02:55 PM
  3. Anyone worked out how to reliably do the new castle glitch on PC?
    By NewSpawnedFodder in forum Rainbow Six: Siege
    Replies: 7
    Last Post: 10-18-2017, 07:25 AM
  4. Hey guys i found out how to work wallhack but may d/c you!
    By killingfly in forum Combat Arms Hacks & Cheats
    Replies: 21
    Last Post: 05-03-2009, 11:40 AM
  5. Help i cant figure out how to use public hack on combat arms
    By bkyourway in forum Suggestions, Requests & General Help
    Replies: 2
    Last Post: 10-25-2008, 06:35 PM