"He picks " + object.article + " up." "He can't take " + object.article + "." WriteVerb(object, "be") + " too heavy to be taken." "He can't carry any more items." "He can't put more items in " + object.article + "." "He drops " + object.article + "." "He can't drop " + object.article + "." "He is already carrying " + object.article + "." "He is not carrying " + object.article + "." "He can't use " + object.article + "." "He can't give " + object.article + "." WriteVerb(object, "say") + " nothing." CapFirst(GetDisplayAlias(object)) + " " + Conjugate(object, "be") + " not open." WriteVerb(object, "be") + " already open." WriteVerb(object, "be") + " already closed." "He can't open " + object.article + "." "He can't close " + object.article + "." "He opens " + object.article + "." "He closes " + object.article + "." WriteVerb(object, "be") + " already there." WriteVerb(object, "contain") WriteVerb(object, "be") + " full." "Please choose which '" + text + "' you mean:" "Undo: " + text WriteVerb(object, "do") + " not reply." WriteVerb(object, "do") + " not reply." WriteVerb(object, "be") + " locked." WriteVerb(object, "be") + " already locked." WriteVerb(object, "be") + " already unlocked." "He cannot lock " + object.article + " when " + object.gender + " " + Conjugate(object, "be") + " open." WriteVerb(object, "be") + " already switched on."" WriteVerb(object, "be") + " already switched off."" "He switches " + object.article + " on." "He switches " + object.article + " off." "He eats " + object.article + "." CapFirst(GetDisplayAlias(object1)) + " " + Conjugate(object1, "do") + " not contain " + GetDisplayAlias(object2) + "." "He is looking " + text +"." "It is too dark to make anything out." look at x examine exam ex take get pick up drop use speak to speak talk to talk open close buy "He can't buy " + object.article + "." climb "He can't climb " + object.article + "." drink "He can't drink " + object.article + "." eat "He can't eat " + object.article + "." give WriteVerb(object1, "do") + " not want " + object2.article + "." hit "He can't hit " + object.article + "." kill "He can't kill " + object.article + "." kiss "He can't kiss " + object.article + "." knock "He can't knock " + object.article + "." lick "He can't lick " + object.article + "." lie on lie upon lie down on lie down upon "He can't lie on " + object.article + "." listen to "He listens, but " + object.article + " makes no sound." lock "He can't lock " + object.article + "." move "He can't move " + object.article + "." pull "He can't pull " + object.article + "." push "He can't push " + object.article + "." read "He can't read " + object.article + "." search "He` can't search " + object.article + "." show "He can't show " + object.article + "." sit on sit upon sit down on sit down upon "He can't sit on " + object.article + "." smell sniff "He sniffs, but " + object.article + " doesn't smell of much." taste "He can't taste " + object.article + "." throw "He can't throw " + object.article + "." tie "He can't tie " + object.article + "." touch "He can't touch " + object.article + "." turn on turn #object# on switch on switch #object# on "He can't turn " + object.article + " on." turn off turn #object# off switch off switch #object# off "He can't turn " + object.article + " off." turn "He can't turn " + object.article + "." unlock "He can't unlock " + object.article + "." untie "He can't untie " + object.article + "." "He can't use " + object2.article + " that way." wear "He can't wear " + object.article + "." --> if (Instr("aeiou", LCase(Left(GetDisplayAlias(obj), 1))) > 0) { return ("an") } else { return ("a") } return (CapFirst(obj.gender) + " " + Conjugate(obj, verb)) gender = obj.gender if (gender = "he" or gender = "she") { gender = "it" } switch (verb) { case ("be") { switch (gender) { case ("i") { return ("am") } case ("you") { return ("are") } case ("it") { return ("is") } case ("we") { return ("are") } case ("they") { return ("are") } default { return ("is") } } } case ("do") { switch (gender) { case ("i") { return ("do") } case ("you") { return ("do") } case ("it") { return ("does") } case ("we") { return ("do") } case ("they") { return ("do") } default { return ("do") } } } default { if (gender = "it") { return (verb + "s") } else { return (verb) } } }