• New Horizons on Maelstrom
    Maelstrom New Horizons


    Visit our website www.piratehorizons.com to quickly find download links for the newest versions of our New Horizons mods Beyond New Horizons and Maelstrom New Horizons!

Feature Request Questbook new entries on top

Levis

Find(Rum) = false;
Staff member
Administrator
Creative Support
Programmer
Storm Modder
Hi!
- I think it can be better to have quests logs displaying from bottom to top, so we haven't to scroll to the bottom to see the lastest updates

New entries are now put under the old ones right?
For realism sake this might be good but he might have a point its easier to have it the other way round
 
I wouldn't complain if that were done. But I doubt it would be easy and the system isn't broken.
So as nice as this might be, I'd assign it a very low priority.
 
wouldn't be that hard.
its done here
Code:
    int nrecord = GetQuestRecord(idQuest, 1);
    int i = 1;
    while (nrecord > 0) {
        text = GetQuestBookText(idQuest, nrecord);
        SendMessage(&GameInterface, "lsle", MSG_INTERFACE_MSG_TO_NODE, "QUEST_TEXT", 0, &text);
        text = " ";
        SendMessage(&GameInterface, "lsle", MSG_INTERFACE_MSG_TO_NODE, "QUEST_TEXT", 0, &text);
        i++;
        nrecord = GetQuestRecord(idQuest, i);
    }

hard part is to find out the last record.
But you could use the while loop for that and then just use that number and use a forloop counting back to fill the text.
So not that high of a priority but if someone wants to try it to pracitse some modding be my guest :).
 
Back
Top