Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Shaiya
You last visited: Today at 14:24

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Shaiya Packet Editor

Discussion on Shaiya Packet Editor within the Shaiya forum part of the MMORPGs category.

Reply
 
Old   #1
 
Da Boss's Avatar
 
elite*gold: 0
Join Date: Apr 2011
Posts: 202
Received Thanks: 66
Shaiya Packet Editor

Is it possible to send 1 packet, that NPC's my whole inventory? If so may someone please post the code for it, ty much would be appreciated.
Da Boss is offline  
Old 06/25/2011, 12:53   #2
 
Snaffy's Avatar
 
elite*gold: 0
Join Date: Apr 2010
Posts: 115
Received Thanks: 65
No. you will need to send a packet for each inventory slot.
Snaffy is offline  
Old 06/25/2011, 12:56   #3
 
Da Boss's Avatar
 
elite*gold: 0
Join Date: Apr 2011
Posts: 202
Received Thanks: 66
Mmmm, but in the Shaiya Viper program, made by Synsia, has a button you push on the program which has an option to NPC everything in inventory.
Da Boss is offline  
Old 06/25/2011, 14:28   #4
 
Snaffy's Avatar
 
elite*gold: 0
Join Date: Apr 2010
Posts: 115
Received Thanks: 65
Quote:
Originally Posted by Faggyboy23 View Post
Mmmm, but in the Shaiya Viper program, made by Synsia, has a button you push on the program which has an option to NPC everything in inventory.
Which probably sends a packet for each inventory slot....
Snaffy is offline  
Old 06/26/2011, 11:16   #5
 
elite*gold: 0
Join Date: Sep 2006
Posts: 774
Received Thanks: 8,576
Code:
void SellItem(int nBagNum, int nBagSlot, int nAmount)
{
	BYTE* tmp = new BYTE[5];

	*reinterpret_cast<WORD*>(tmp) = 0x0703;
	*static_cast<BYTE*>(tmp + 2) = nBagNum;
	*static_cast<BYTE*>(tmp + 3) = nBagSlot;
	*static_cast<BYTE*>(tmp + 4) = nAmount;

	SendPacket(tmp, 5);

	delete[] tmp;
}
phize is offline  
Thanks
3 Users
Old 06/27/2011, 11:07   #6
 
Da Boss's Avatar
 
elite*gold: 0
Join Date: Apr 2011
Posts: 202
Received Thanks: 66
ty

What program do you code it with?
Da Boss is offline  
Old 06/28/2011, 16:57   #7
 
elite*gold: 0
Join Date: Sep 2006
Posts: 774
Received Thanks: 8,576
The hack was written in C++. For IDE I use Visual Studio 2010.
phize is offline  
Old 06/28/2011, 17:00   #8
 
Da Boss's Avatar
 
elite*gold: 0
Join Date: Apr 2011
Posts: 202
Received Thanks: 66
I got the packets for All 5 inventories and every slot, How can I send it all at once?
Da Boss is offline  
Old 06/28/2011, 17:22   #9
 
elite*gold: 0
Join Date: Sep 2006
Posts: 774
Received Thanks: 8,576
Loop through every bag slot and send a packet.
phize is offline  
Thanks
1 User
Old 06/28/2011, 17:29   #10
 
Da Boss's Avatar
 
elite*gold: 0
Join Date: Apr 2011
Posts: 202
Received Thanks: 66
Ummm...i dont understand, here are the packets, can ya make something that will work plz :P ty

btw, e.g 5.12 means 5th Inventory, 12th slot

Code:
SEND>>02 26 42 32 5F 4D 76 62 6D 30 30 31 30 00 00 00 00 00 83 BA 1D 16 00 - AH Runes
===========================================
Inventory 1

1,1 = SEND>>03 07 01 00 FF 
1,2 = SEND>>03 07 01 01 FF 
1,3 = SEND>>03 07 01 02 FF
1,4 = SEND>>03 07 01 03 FF 
1,5 = SEND>>03 07 01 04 FF
1,6 = SEND>>03 07 01 05 FF
1,7 = SEND>>03 07 01 06 FF
1,8 = SEND>>03 07 01 07 FF
1,9 = SEND>>03 07 01 08 FF
1,10 = SEND>>03 07 01 09 FF
1,11 = SEND>>03 07 01 0A FF 
1,12 = SEND>>03 07 01 0B FF 
1,13 = SEND>>03 07 01 0C FF
1,14 = SEND>>03 07 01 0D FF
1,15 = SEND>>03 07 01 0E FF
1,16 = SEND>>03 07 01 0F FF
1,17 = SEND>>03 07 01 10 FF
1,18 = SEND>>03 07 01 11 FF
1,19 = SEND>>03 07 01 12 FF 
1,20 = SEND>>03 07 01 13 FF
1,21 = SEND>>03 07 01 14 FF
1,22 = SEND>>03 07 01 15 FF
1,23 = SEND>>03 07 01 16 FF
1,24 = SEND>>03 07 01 17 FF

===========================================
Inventory 2

2,1 = SEND>>03 07 02 00 FF 
2,2 = SEND>>03 07 02 01 FF 
2,3 = SEND>>03 07 02 02 FF
2,4 = SEND>>03 07 02 03 FF 
2,5 = SEND>>03 07 02 04 FF
2,6 = SEND>>03 07 02 05 FF
2,7 = SEND>>03 07 02 06 FF
2,8 = SEND>>03 07 02 07 FF
2,9 = SEND>>03 07 02 08 FF
2,10 = SEND>>03 07 02 09 FF
2,11 = SEND>>03 07 02 0A FF 
2,12 = SEND>>03 07 02 0B FF 
2,13 = SEND>>03 07 02 0C FF
2,14 = SEND>>03 07 02 0D FF
2,15 = SEND>>03 07 02 0E FF
2,16 = SEND>>03 07 02 0F FF
2,17 = SEND>>03 07 02 10 FF
2,18 = SEND>>03 07 02 11 FF
2,19 = SEND>>03 07 02 12 FF 
2,20 = SEND>>03 07 02 13 FF
2,21 = SEND>>03 07 02 14 FF
2,22 = SEND>>03 07 02 15 FF
2,23 = SEND>>03 07 02 16 FF
2,24 = SEND>>03 07 02 17 FF

===========================================

Inventory 3

3,1 = SEND>>03 07 03 00 FF 
3,2 = SEND>>03 07 03 01 FF 
3,3 = SEND>>03 07 03 02 FF
3,4 = SEND>>03 07 03 03 FF 
3,5 = SEND>>03 07 03 04 FF
3,6 = SEND>>03 07 03 05 FF
3,7 = SEND>>03 07 03 06 FF
3,8 = SEND>>03 07 03 07 FF
3,9 = SEND>>03 07 03 08 FF
3,10 = SEND>>03 07 03 09 FF
3,11 = SEND>>03 07 03 0A FF 
3,12 = SEND>>03 07 03 0B FF 
3,13 = SEND>>03 07 03 0C FF
3,14 = SEND>>03 07 03 0D FF
3,15 = SEND>>03 07 03 0E FF
3,16 = SEND>>03 07 03 0F FF
3,17 = SEND>>03 07 03 10 FF
3,18 = SEND>>03 07 03 11 FF
3,19 = SEND>>03 07 03 12 FF 
3,20 = SEND>>03 07 03 13 FF
3,21 = SEND>>03 07 03 14 FF
3,22 = SEND>>03 07 03 15 FF
3,23 = SEND>>03 07 03 16 FF
3,24 = SEND>>03 07 03 17 FF

===========================================

Inventory 4

4,1 = SEND>>03 07 04 00 FF 
4,2 = SEND>>03 07 04 01 FF 
4,3 = SEND>>03 07 04 02 FF
4,4 = SEND>>03 07 04 03 FF 
4,5 = SEND>>03 07 04 04 FF
4,6 = SEND>>03 07 04 05 FF
4,7 = SEND>>03 07 04 06 FF
4,8 = SEND>>03 07 04 07 FF
4,9 = SEND>>03 07 04 08 FF
4,10 = SEND>>03 07 04 09 FF
4,11 = SEND>>03 07 04 0A FF 
4,12 = SEND>>03 07 04 0B FF 
4,13 = SEND>>03 07 04 0C FF
4,14 = SEND>>03 07 04 0D FF
4,15 = SEND>>03 07 04 0E FF
4,16 = SEND>>03 07 04 0F FF
4,17 = SEND>>03 07 04 10 FF
4,18 = SEND>>03 07 04 11 FF
4,19 = SEND>>03 07 04 12 FF 
4,20 = SEND>>03 07 04 13 FF
4,21 = SEND>>03 07 04 14 FF
4,22 = SEND>>03 07 04 15 FF
4,23 = SEND>>03 07 04 16 FF
4,24 = SEND>>03 07 04 17 FF

===========================================

Inventory 5

5,1 = SEND>>03 07 05 00 FF 
5,2 = SEND>>03 07 05 01 FF 
5,3 = SEND>>03 07 05 02 FF
5,4 = SEND>>03 07 05 03 FF 
5,5 = SEND>>03 07 05 04 FF
5,6 = SEND>>03 07 05 05 FF
5,7 = SEND>>03 07 05 06 FF
5,8 = SEND>>03 07 05 07 FF
5,9 = SEND>>03 07 05 08 FF
5,10 = SEND>>03 07 05 09 FF
5,11 = SEND>>03 07 05 0A FF 
5,12 = SEND>>03 07 05 0B FF 
5,13 = SEND>>03 07 05 0C FF
5,14 = SEND>>03 07 05 0D FF
5,15 = SEND>>03 07 05 0E FF
5,16 = SEND>>03 07 05 0F FF
5,17 = SEND>>03 07 05 10 FF
5,18 = SEND>>03 07 05 11 FF
5,19 = SEND>>03 07 05 12 FF 
5,20 = SEND>>03 07 05 13 FF
5,21 = SEND>>03 07 05 14 FF
5,22 = SEND>>03 07 05 15 FF
5,23 = SEND>>03 07 05 16 FF
5,24 = SEND>>03 07 05 17 FF
Da Boss is offline  
Old 05/20/2012, 20:32   #11
 
elite*gold: 0
Join Date: Apr 2012
Posts: 2
Received Thanks: 0
can you tell me some string for a file or link that contienne many useful items of Sahiya by putting then in Shaiya Pachet editor plese
giupix is offline  
Reply

Tags
help needed


Similar Threads Similar Threads
[Release]Shaiya Packet Editor
09/26/2016 - Shaiya Hacks, Bots, Cheats & Exploits - 212 Replies
Just a small remade of my old packet editor in this thread. I've just tested it on the German client, but it searches for signatures which means it should also work with other clients. If it doesn't, please upload the game.exe so I can fix it. Usage: 1. Run the launcher of Shaiya. 2. Execute "injector.exe" in the RAR-archive attached. 3. Start the game. Source Code:
packet editor...
03/09/2011 - 4Story - 1 Replies
I was wondering if there is a packet editor for this game. I dont mean WPE .. i mean a real one that decrypts the packets. If not i will try to program a dll that will do this. Im also wondering what hacks are out there.. is there a godmode, 1 hit, teleport.. etc etc.. I will try to search and relase hacks that arnt already out there.. i am greatful for answers. /zowex
[REQUEST] Shaiya Packet Editor Mod
12/20/2010 - Shaiya Hacks, Bots, Cheats & Exploits - 3 Replies
Well, I would like to know if lilprohacker(or anyone that know it well enought) could make for shaiya community a modification on shaiya packet editor tool. The point is.. I would like to be able to make myself a tool, but I dont know C and other applications programming languages.. So I would have wanted, if possible, that someone modify Shaiya Packet Editor tool of lilprohacker, so it could output to a file all the packets received ingame. No need to integrate packet filtering. Plus.. It...
PACKET EDITOR s4??
05/07/2010 - S4 League - 6 Replies
Espaņol. Alguien Sabe De Algun Editor de Paquetes para el s4? English. Someone know an packet editor for s4??



All times are GMT +2. The time now is 14:24.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.