also note, that a lot of the Tabs are toggled on and off (the default is for them to be off~hidden, as over the versions of quest, the Tabs started clustering up the screen, so now you got to toggle them on, for the tabs to appear for use in the GUI~Editor):
http://docs.textadventures.co.uk/quest/ ... notes.htmlif you need any help, let me know, if the above link is too vague for helping you with it
--------------------------
anyways, about finding the 'autogenerate verb' thingy:
I messed up, it's found here:
'game' Game Object (left side's "tree of stuff" - click on 'game' so it is highlighted) -> 'Room Descriptions' Tab (on the right side - click on this Tab) -> uncheck the checkbox called: 'automatically generate object display verbs list'.
This Tab (the 'room descriptions' Tab in the 'game' Game Object) also, as you can see, has a lot of possibly other very useful features-options-settings too that you may need-want for your game design.
ALSO:
for each individual Object:
(for example)
'player' Player Object -> 'Object' Tab -> has more of like-features which will just affect that specific Object too.
----------------------
unfortunately, by turning off the 'autogenerate verbs', it's a bit more complicated to add the verbs as you want.
you're going to have to understand the 'displayverbs' and 'inventoryverbs' Stringlists, which also means understanding List Attributes:
http://docs.textadventures.co.uk/quest/ ... lists.htmland here's Pixie's (and one of mine too) guides to help on this stuff as well:
viewtopic.php?f=18&t=5023viewtopic.php?f=18&t=4953viewtopic.php?f=18&t=5137---------------
generally you add~remove your verbs as you want-need from the 'whatever' Object's 'inventoryverbs' and~or 'displayverbs', for a simple example using the default Verbs 'take' and 'drop' :
'take' Verb's scripting:
list remove (this.displayverbs, "take")
list add (this.inventoryverbs, "drop")
'drop' Verb's scripting:
list add (this.displayverbs, "take")
list remove (this.inventoryverbs, "drop")
hopefully you understand this stupid example that I used (it's a very poor-bad example on my part), lol, and if not, then ask as it's not something easy to understand.
or another example:
'open' Verb:
list remove (this.displayverbs, "open")
list remove (this.inventoryverbs, "open")
list add (this.displayverbs, "close")
list add (this.inventoryverbs, "close")
'close' Verb:
list remove (this.displayverbs, "close")
list remove (this.inventoryverbs, "close")
list add (this.displayverbs, "open")
list add (this.inventoryverbs, "open")
---------
and there's still a few more things involved with Verbs, than what I mentioned here...
------------------
P.S.
if you don't already know about it, there is a tutorial that helps you with using the quest GUI~Editor:
http://docs.textadventures.co.uk/quest/tutorial/it at least is good for helping you learn your way around the GUI~Editor.