I'm afraid I haven't uploaded any screenshots of the game. I don't have a site and I don't think there is another way of posting 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 Menu
if (interface == BAG) {
// They clicked a button on the bag
if (button==0) { // the retrieve code
int count=0;
int item=1;
string retrieve;
string additem;
ListBoxGetItemText (6,0,ListBoxGetSelected(6,0),retrieve);
Display ("You retrieve the %s from the trashcan.", retrieve);
ListBoxRemove (6, 0, ListBoxGetSelected(6,0));
// AddInventory check
while (count==0) {
GetInvName (item, additem);
if (StrComp(additem, retrieve)==0) {
count=1;
}
else item++;
}
AddInventory(item);
}
if (button == 1) { // exit bag
GUIOff(BAG);
SetCursorMode(MODE_WALK);
}
} // end if interface BAG
// deposit items (use inv on the bag)
string bag;
GetInvName (player.activeinv, bag);
Display("You deposit the %s in the bag.", bag);
LoseInventory(character[EGO].activeinv);
ListBoxAdd (6, 0, bag);
// look bag
Display ("A bag.");
GUIOn (BAG);
SetCursorMode(6);
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.077 seconds with 14 queries.