Increased MAX_QUEST_OBJECTIVES

Virtue

New member
Messages
259
Points
0
I tried doing higher quest limits but it doesn't seem to work, no error on compiling but when taking on the quest I get this.

mmo.h

#ifndef MAX_QUEST_OBJECTIVES
#define MAX_QUEST_OBJECTIVES 11


How do we do this properly though? Anything else to modify?

questerror.png

 
I tried changing the packet size, but what should be the correct one? I'm trying to utilize the quest log system for like up to 5 objectives and more

 
you cant change packet size, without updating size in client also.

Issue here because constant MAX_QUEST_OBJECTIVES used in server internals and in packet.

second error probably because you not compiled char server with changed constant?

In other words if change hercules in some way, in server side you can get more objectives, but client this not see extra objectives in all or some cases.

 
you cant change packet size, without updating size in client also.

Issue here because constant MAX_QUEST_OBJECTIVES used in server internals and in packet.

second error probably because you not compiled char server with changed constant?

In other words if change hercules in some way, in server side you can get more objectives, but client this not see extra objectives in all or some cases.
I tried playing with it, the server has been recompiled and all. the default setting for max quest objectives is 3. but you can only put around 2 objectives. same thing happens with a clean src and putting in the 3 quest objectives

 
Back
Top