View Single Post
  #19  
Unread 01-26-2009, 03:19 AM
dragowulf's Avatar
dragowulf dragowulf is offline
A man among men
This person is a EQ2Map developer.
Interface Author - Click to view interfaces
 
Join Date: Dec 2004
Server: Nagafen
Posts: 934
Default

What I'm trying to say is that with a composite, the page that comes first will always be on top of the page that follows. This means, with my mod, that whenever a new spell timer is added, there is huge chance that a previous page's slot will be taken by the new timer, assuming that the new spell timer page comes before the old page (in the code).

Example. This is how it looks in the code:
Page1
Page2

So Page 2 is Visible:
Page2=Visible

Now Page1 becomes visible as well, but it comes before Page2 because it is first in the code, which is my problem:
Page1=Visible
Page2=Visible

It should be (since Page2 was visible first):
Page2=Visible
Page1=Visible


Maybe I'm overlooking something or thinking too hard?
__________________
May Jesus Have Mercy On Us
Reply With Quote