Hello Guys,
I implemented the Dracarys Book Mission System, so far so good and no Errors in any of the Logs.
But when i want to use the Mission Book now i just get: "You can´t get more Mission on the Book" and i dont know how to get into the Interface...
Maybe someone could help me in this Case, would be very kind, i tried to Re-Install.
The Text comes from:
Item Proto the Books are Type 18 / ITEM_QUEST
I implemented the Dracarys Book Mission System, so far so good and no Errors in any of the Logs.
But when i want to use the Mission Book now i just get: "You can´t get more Mission on the Book" and i dont know how to get into the Interface...
Maybe someone could help me in this Case, would be very kind, i tried to Re-Install.
The Text comes from:
#if defined(__MISSION_BOOKS__)
void CHARACTER_MANAGER::GiveNewMission(LPITEM missionBook, LPCHARACTER ch)
{
if (!missionBook || !ch)
return;
const DWORD missionBookItem = missionBook->GetVnum();
if (ch->MissionCount() >= MISSION_BOOK_MAX )
{
ch->ChatPacket(CHAT_TYPE_INFO, "You can't read new mission book.");
return;
}
void CHARACTER_MANAGER::GiveNewMission(LPITEM missionBook, LPCHARACTER ch)
{
if (!missionBook || !ch)
return;
const DWORD missionBookItem = missionBook->GetVnum();
if (ch->MissionCount() >= MISSION_BOOK_MAX )
{
ch->ChatPacket(CHAT_TYPE_INFO, "You can't read new mission book.");
return;
}
Item Proto the Books are Type 18 / ITEM_QUEST