Re: Lobby Room List Position
Re: Lobby Room List Position
Yes i know its in there, but i dont think i make the list go down instead of sideways, it seems to be hard coded elsewhere, unless i just havnt messed with the coding enough to figure that out, thanks pain, you will make me go look again :)
Edit: yea there is nothing there that allows me to move the actual stagelist downward instead of side-ways, they got the coding for 1-6 buttons, and the stagelist itself, only gives 1 coding option for the first one, but no other coding to tell it where to go afterwards, unless im missing something?
Re: Lobby Room List Position
Quote:
Originally Posted by
Equilizer17
Yes i know its in there, but i dont think i make the list go down instead of sideways, it seems to be hard coded elsewhere, unless i just havnt messed with the coding enough to figure that out, thanks pain, you will make me go look again :)
Edit: yea there is nothing there that allows me to move the actual stagelist downward instead of side-ways, they got the coding for 1-6 buttons, and the stagelist itself, only gives 1 coding option for the first one, but no other coding to tell it where to go afterwards, unless im missing something?
You're correct. Unfortunately, this is as much help as I can be. :P
Re: Lobby Room List Position
o well, i tried to be different, just seems its almost impossible to make the lobby look different, its no wonder all these servers still look the same after 10 + years..
Re: Lobby Room List Position
I haven't actually built anything to confirm, but looking at the source for ZRoomList, it looks like the parts you'll need to edit are here:
Code:
(line 79) int width = (int)( m_iGapWidth + ( m_RoomWidth + m_iGapWidth*2 + m_iGapCenter ) * ( index%2 ) );
Code:
(line 314) int width = (int)((m_RoomWidth + ROOM_WIDTH)*(i%2)+ ROOM_WIDTH);
Code:
(line 337) int width = (int)((m_RoomWidth + ROOM_WIDTH)*(i%2)+ ROOM_WIDTH);
You'll probably have to edit the i%2 parts, and also edit the following lines for the height variable too.
It also looks like the variables width and height are actually the x/y coordinates of the room list box, rather than it's width and height. I could be wrong though.
Re: Lobby Room List Position
Quote:
Originally Posted by
Mark
I haven't actually built anything to confirm, but looking at the source for ZRoomList, it looks like the parts you'll need to edit are here:
Code:
(line 79) int width = (int)( m_iGapWidth + ( m_RoomWidth + m_iGapWidth*2 + m_iGapCenter ) * ( index%2 ) );
Code:
(line 314) int width = (int)((m_RoomWidth + ROOM_WIDTH)*(i%2)+ ROOM_WIDTH);
Code:
(line 337) int width = (int)((m_RoomWidth + ROOM_WIDTH)*(i%2)+ ROOM_WIDTH);
You'll probably have to edit the
i%2 parts, and also edit the following lines for the
height variable too.
It also looks like the variables
width and
height are actually the x/y coordinates of the room list box, rather than it's width and height. I could be wrong though.
awesome! i appreciate that help, ill start messing with that tonight and see where i get, really appreciate it!
Re: Lobby Room List Position
I have also messed with this, be careful as it can screw up the actual size of the room listing image. Hard to explain >.< @Mark, Long time no see!