Donation NPC Explained/How to Prepare for 2x Donate Events

The donation NPC uses a Queue structure for the donation list. In Computer Science terms, it follows a FIFO (first in, first out) structure. There are two things at the bottom of the donation list that should be noted: 1. The Current Order count which shows the maximum amount of items that can be put on the list. 2. The Timer that runs for 6 hours. This determines when a new item will be added to the list. This means that when the timer runs and : 1. the list is full, the bottom item is pushed out of the
Back to Top