Welcome to the Creatures Wiki! Log in and join the community.

VOCB

From Creatures Wiki
Jump to navigation Jump to search

VOCB is a CAOS command for instantly teaching a creature all vocabulary.

Usage[edit]

Syntax: VOCB

This immediately teaches the currently selected target (TARG) all of the in-game vocabulary.

Using VOCB on a target that is not a creature has no known effect.

Examples[edit]

By enumerating (ENUM) all creatures, teach every creature a complete vocabulary:

enum 4 0 0
   vocb
next

Note that 0 is a wildcard in the ENUM command. You can decrease the scope of the enumeration by replacing one or both wildcards with a valid genus and/or species number (see Classification System). For example, using enum 4 3 1 would only target male ettins.


Assuming your agent is Food and is already injected in the game, demonstrate how to make the Food teach a full vocabulary when it is eaten, in addition to giving the correct stimulus with STIM WRIT. The unique species number of your agent is 17805.

scrp 2 11 17805 12
stim writ from 79 1
   targ from
   vocb
   kill ownr
endm

See also[edit]