You can send yourself most items via the jones blessing website.
Build yourself a webproxy that changes the ITEMID= within the URL POST request and viola ...... here are the items i know work.
Getting a proxy that does this is up to you...i just provide the info.
28098 Demon/Sage Event Card (50 Event Gold)
31129 Shadow Fox Mount
27999 White Sage Tiger Mount
24725 Scroll of Tome (love up and Down / other tomes)
25150 Wing Trophy Lunar Glade
23972 Cube of Fate Stamp (Neck)
25151 Warsong Marshall Badge (Belt)
23251 Lunar Glade Insignia Ornament (Rings)
18813 Excitement Card (5 mil coins)
30991 Gift Tag - Garnet
30992 Gift Tag - Primeval
31133 Uncanny Ticket (1 uncanny)
31132 Rapture Ticket (1 Rapture)
15049 (+12) Dragon Flame Orb
27761 VIP Diamond Ticket (10 Lucky Coral)
28350 Medal Of Glory
28641 Gen. Summer Token
nope, i take a look in the code of the pages.
jb has crypted item id "it seams" for me, since it nots the id from database.
dq page has normal item ids inside the javascript, like the ids from database.
i did not check the exploit and wont be doing this.
i would love to have some great items like love up and down...but not this way.
for me botting is only to not spend real money to the game.
but this...is like buying a game, use from 1 time a cheat and play the game in 1 hour.
wasted time...
yea i agree if this was abused it would be pointless even log onto the game the next day. and i hope they get this corrected soon. it could ruin the game (more than it is)
this exploit was known surfaced only recently, but the Jones Blessing website was already up for quite a long time, do you ppl think many of those with fully refined armors and weapons at +12 already using this since ***-knows-how-long ?
this exploit was known surfaced only recently, but the Jones Blessing website was already up for quite a long time, do you ppl think many of those with fully refined armors and weapons at +12 already using this since ***-knows-how-long ?
I don't think a lot of them, but definitely some yeah. I mean, these things you usually don't spread around too much.
the best is how easy it was, since u i never tought to change the item id in the script and see whats happend.
im realy to lazy to make a new account, farm some dragon points and see whats happend on the reward page.
maybe the items are bound to character...but some 100 eventgold cards, change to stuff to sell in the boutique can made it.
if u use ff and greasemonkey it will go fast to change the script^^
but for me, thats to easy if it work and destroy my gameplay.
i dont realy play pwi like a mmorpg, i play it more like a financial game.
makes much fun trading, with botting i get some stuff to sell and the needed money to start selling good stuff.
but days later, its unbelivable for me...what the monkey had coded there -.-
ps: Interest07, u can plz help me out with the packet number for buy/sell to catshop ?
the best is how easy it was, since u i never tought to change the item id in the script and see whats happend.
im realy to lazy to make a new account, farm some dragon points and see whats happend on the reward page.
maybe the items are bound to character...but some 100 eventgold cards, change to stuff to sell in the boutique can made it.
if u use ff and greasemonkey it will go fast to change the script^^
but for me, thats to easy if it work and destroy my gameplay.
i dont realy play pwi like a mmorpg, i play it more like a financial game.
makes much fun trading, with botting i get some stuff to sell and the needed money to start selling good stuff.
but days later, its unbelivable for me...what the monkey had coded there -.-
ps: Interest07, u can plz help me out with the packet number for buy/sell to catshop ?
Yeah, i got em somewher ein my catshop bot I'll dig em up later
Code:
private int sellSingleCatShopItemAddress;
private byte[] sellSingleCatShopItemAddressRev;
private byte[] sellSingleCatShopItemPkt = new byte[]
{
0x25, 0x00, //Header
0x15, 0x00, 0x00, 0x00, //npcInteraction type
0x1A, 0x00, 0x00, 0x00, //nBytes following
0x00, 0x00, 0x00, 0x00, //catshopId [player + C4C]
0x00, 0x00, 0x00, 0x00,
0xA8, 0x00, 0x50, 0x39,
0x01, 0x00, 0x00, 0x00, //nItems Sold
0x00, 0x00, 0x00, 0x00, //typeId
0x00, 0x00, //shopIndex
0x00, 0x00, //inv index
0x00, 0x00 //amount
};
public void sellSingleCatShopItem(int typeId, int shopIndex, short amount, int catShopId, short invIndex)
{
//Get size of the packet
int packetSize = sellSingleCatShopItemPkt.Length;
if (sellSingleCatShopItemAddress == 0)
{
//load packet in memory
loadPacket(sellSingleCatShopItemPkt, ref sellSingleCatShopItemAddress, ref sellSingleCatShopItemAddressRev);
}
byte[] catShopIdRev = BitConverter.GetBytes(catShopId);
catShopIdRev.Reverse();
MemFunctions.MemWriteBytes(pr_processHandle, sellSingleCatShopItemAddress + 10, catShopIdRev);
byte[] typeIdRev = BitConverter.GetBytes(typeId);
typeIdRev.Reverse();
MemFunctions.MemWriteBytes(pr_processHandle, sellSingleCatShopItemAddress + 26, typeIdRev);
byte[] shopIndexRev = BitConverter.GetBytes(shopIndex);
shopIndexRev.Reverse();
MemFunctions.MemWriteBytes(pr_processHandle, sellSingleCatShopItemAddress + 30, shopIndexRev);
byte[] invIndexRev = BitConverter.GetBytes(invIndex);
invIndexRev.Reverse();
MemFunctions.MemWriteBytes(pr_processHandle, sellSingleCatShopItemAddress + 32, invIndexRev);
byte[] amountRev = BitConverter.GetBytes(amount);
amountRev.Reverse();
MemFunctions.MemWriteBytes(pr_processHandle, sellSingleCatShopItemAddress + 34, amountRev);
sendPacket(sellSingleCatShopItemAddressRev, packetSize);
}
private int buySingleCatShopItemAddress;
private byte[] buySingleCatShopItemAddressRev;
private byte[] buySingleCatShopItemPkt = new byte[]
{
0x25, 0x00, //Header
0x13, 0x00, 0x00, 0x00, //npcInteraction type
0x1A, 0x00, 0x00, 0x00, //nBytes following
0x00, 0x00, 0x00, 0x00, //catshopId [player + C4C]
0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00,
0x01, 0x00, 0x00, 0x00, //nItems Sold
0x00, 0x00, 0x00, 0x00, //typeId
0x00, 0x00, 0x00, 0x00, //shopIndex
0x00, 0x00 //amount
};
public void buySingleCatShopItem(int typeId, int shopIndex, short amount, int catShopId)
{
//Get size of the packet
int packetSize = buySingleCatShopItemPkt.Length;
if (buySingleCatShopItemAddress == 0)
{
//load packet in memory
loadPacket(buySingleCatShopItemPkt, ref buySingleCatShopItemAddress, ref buySingleCatShopItemAddressRev);
}
byte[] catShopIdRev = BitConverter.GetBytes(catShopId);
catShopIdRev.Reverse();
MemFunctions.MemWriteBytes(pr_processHandle, buySingleCatShopItemAddress + 10, catShopIdRev);
byte[] typeIdRev = BitConverter.GetBytes(typeId);
typeIdRev.Reverse();
MemFunctions.MemWriteBytes(pr_processHandle, buySingleCatShopItemAddress + 26, typeIdRev);
byte[] shopIndexRev = BitConverter.GetBytes(shopIndex);
shopIndexRev.Reverse();
MemFunctions.MemWriteBytes(pr_processHandle, buySingleCatShopItemAddress + 30, shopIndexRev);
byte[] amountRev = BitConverter.GetBytes(amount);
amountRev.Reverse();
MemFunctions.MemWriteBytes(pr_processHandle, buySingleCatShopItemAddress + 34, amountRev);
sendPacket(buySingleCatShopItemAddressRev, packetSize);
}
Much can probably be exploited with mixing files 06/04/2008 - RF Online - 0 Replies Not sure if this (title) is common knowledge or what, but by doing so I was able to create different racial characters in one account in RFO-ph (which officially, is locked only to one race per account) just a few moments ago. For a full TUT on this go to the forum where you can hide stuff, sorry but I just hate spoonfeeding (you already got your clue from this topic's title).
Thanks to zereke for this idea though, his alleged item spawn hack got me into working on this line of exploits.
new thing to maybe get exploited 09/04/2007 - Conquer Online 2 - 19 Replies -------------------------------------------------- ------------------------------
We are proud to announce an incredible opportunity to all our loyal fans. We are giving away double EXP points!
Event Duration:
Beginning on Sept. 7th at 18:30 and ending on Sept. 9th at 23:59 (2 days)
Find GuruTodd in the Twin City (438,377) and he will invite you to join in the double EXP training. Each time, you will receive an hour's worth of double EXP. During the event, you can join in the...
Make 1 mil Gold in 1 hour exploited 06/11/2006 - General Gaming Discussion - 13 Replies Hi all sry for my bad english cause not my primary language , i'll describe u all how to make ur GB char rich a few hours and lvlup ur GB char from noobs to Sapphire Wand just a few days , but i recommend u dont try it every day ,actualy im using 2 comp for it i got 1 mil every 1 hour, and dont blame me if u got banned .
Tools
======
XFS2 = .xfs Decompiler ( googling it for that tool )
B43bot = bot ur gb char while u sleep
Vbot = another bot with ideath, auto ready fuction
1st...