Wow, the grass looks really nice. How did you do it?
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuoteI also condensed the tables on the side so they're not so seperated. I think I like it more ... but what do you guys think?
Quotethe tiled collage looks quite repetitive, and I'm viewing it at 1024x768.
QuoteAlso the top logo, with the games banner aligned left, and the AGS logo aligned right.
QuoteAll your code seems to be missing those brackets.
if (interface == INVENTORY) { // They clicked a button on the Inventory GUI if (button == 1) { // They pressed SELECT, so switch to the Get cursor SetCursorMode (MODE_USE); // But, override the appearance to look like the arrow SetMouseCursor (6); } if (button == 2) { // They pressed LOOK, so switch to that mode SetActiveInventory(-1); SetCursorMode(MODE_LOOK); } if (button == 3) { // They pressed the OK button, close the GUI GUIOff (INVENTORY); SetDefaultCursor(); } if ((button == 4) && (game.top_inv_item < game.num_inv_items - game.num_inv_displayed)) { // scroll down game.top_inv_item = game.top_inv_item + game.items_per_line; } if ((button == 5) && (game.top_inv_item > 0)){ // scroll up game.top_inv_item = game.top_inv_item - game.items_per_line; } if (interface == QUITGUI) { if (button == 0) { QuitGame (0); } if (button == 2) { GUIOff (QUITGUI); } if (button == 1) { Display("WHAT!? ARE YOU TRYING TO CHEAT!!! Save often"); GUIOff (QUITGUI); } } }
Quote(...) but any other browers who haven't got their heads outta their butts uses a boring nav.
Quotedots to a blue color instead of green
Quotedoes the nav-system work?
QuoteDo we want drop downs?
QuoteDo we want to restructure the nav system?
QuoteDoing a 'Game of the Month' feature on top of the Games table
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these.
Page created in 0.456 seconds with 15 queries.