Quote from: Zooty on Wed 04/01/2006 20:41:01
not to contradict you, but this version fo your sprite only has 256 colours. I see little difference.
Get that freak of nature out of my face.
Edited by mod: don't quote images!
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 MenuQuote from: Zooty on Wed 04/01/2006 20:41:01
not to contradict you, but this version fo your sprite only has 256 colours. I see little difference.
Quote from: Barbarian on Thu 29/12/2005 13:19:21
PS: Feel welcome to contact me again if ya need any more help with fixing up any more "bugs" or with da programmin' stuff, and I'll see what I can do ya for.![]()
Quote from: Haddas on Tue 27/12/2005 18:16:22
and if you don't want to search the whole image thread there's this.
http://img344.imageshack.us/img344/9710/collection6ra.jpg
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 == 4) {
if (button == 0) { // show inventory
GUIOn(2);
}
}
Quote from: Darth Mandarb on Tue 20/12/2005 05:23:13
JP from The Adventures of JP & Cosmo: A Friend Indeed.
Clever name, GREAT game!!
Quote from: MrColossal on Fri 16/12/2005 20:49:39
Also, if you've met the writing crew and sat in on a session and went through whatever process Family Guy goes through to get a script approved and finalized maybe then you'd be able to make a random assumption on someone you've never met!
Quote from: Thomas Voà Ÿ on Fri 16/12/2005 17:39:17Quote from: HillBilly on Fri 16/12/2005 17:33:02
The first season of Family Guy was great, but now it's just a big mush of randomness, "remember that time when..." and broadway music. Seth is just a mediocre writer who got lucky.
Blasphemy!
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.187 seconds with 15 queries.