Hi all. I am coding the quest board and i am really stuck at the packets, first i edited the QuestInfo.ini to have only 1 test quest like here:
[Only registered and activated users can see links. Click Here To Register...]
I get it that that the packet 1134 is sent at client login and it contains some info what quests u have accepted and what u can accept or something like that, so far i only did this
And i get it that the type 4 sends the quest id, like when i click accept on the quest board always prints out QuestID: ID. So now, someone mind explaining me the packets, sub packets for the quest board so i can advance like accepting quest and getting it into accepted quests, or removing finished quest from the board?
-Cheers, Wolfy.
[Only registered and activated users can see links. Click Here To Register...]
I get it that that the packet 1134 is sent at client login and it contains some info what quests u have accepted and what u can accept or something like that, so far i only did this
Code:
case 1134:
{
GC.AddSend(Packets.ChatMessage(0, "SYSTEM", GC.MyChar.Name, "QuestID: " + Data[4], 2001, 0));
break;
}
-Cheers, Wolfy.