I need to know the all probabilities for items , potions , scrolls , pets , etc ... , if you know
To work out what is what, you need to also have a client open which you are packet sniffing, to see what causes certain packets to be sent/received. Get to work.
Problem with 3013 Packet (Inventory) 10/17/2012 - SRO Coding Corner - 16 Replies Hi , i'm Analyzing Silkroad OPcode 3013 (for Inv. items and skills etc)
and have problem , which is making function to read the Inv. items.
i know that every item have its details " can read the items but if have same type (details)".
but if have Set items , Silk items , Alchemy items .... in Inv.
how to read different type items in Inv. ???
Guys i need an answer !!!
Inventory Packet , type , usage id ?? 05/24/2012 - CO2 Private Server - 12 Replies Hello guys , dose there any packet or usage type or ID for Inventories source 5017 ?
i searched all sources but found nothing , most using Dictionary for and 40 solts . Lol
i would like to know if there a packet or anything else for the Inventory , i also checked ConquerWiki , but nothing was helpfully there with what i am looking for.
Inventory packet 02/07/2012 - SRO Coding Corner - 3 Replies hii al . i will be fast _ i'm trying to get the items in my Inventory but i cant find my max Slot and item number .. any one can tell me where are there
PS : i have the packet but i don't know how find them on it ^^
packet for lvl 1 character have 32 slot only 4 slots are not empty
...
Get item by id in inventory. 10/05/2011 - CO2 Private Server - 5 Replies This is how I do it in my source.
Is it a fine way to do it?
public Item GetItemInInventoryByID(uint ID)
{
var ret = from item
in this.Inventory
where item.ID == ID
select item;
foreach (Item retitem in ret)
Inventory list packet 03/02/2011 - CO2 Programming - 18 Replies I am wondering which packet tells you the list of items avaible in inventory.
Maybe i am careless, i ididn't see a packet structure on korvac's page that describes what i want.