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

URGE SIGN

From Creatures Wiki
Jump to navigation Jump to search

URGE SIGN is a CAOS command that can encourage creatures who can see OWNR to perform a certain action on the OWNR object.

Description[edit]

Syntax: URGE SIGN (command) noun_stim (float) verb_id (integer) verb_stim (float)

Urge all creatures who can see OWNR to perform an action on OWNR.

Verb IDs (C3/DS)[edit]

  • 0 - Look
  • 1 - Push
  • 2 - Pull
  • 3 - Deactivate (unused)
  • 4 - Approach
  • 5 - Retreat
  • 6 - Get
  • 7 - Drop
  • 8 - Express
  • 9 - Rest
  • 10 - Go east
  • 11 - Go west
  • 12 - Eat
  • 13 - Hit
  • 14 - Up (unused)
  • 15 - Down (unused)
  • 16 - Exit (unused)

Example[edit]

It is used in the Space Toy to get creatures to look at the toy while it is in flight.

**space toy activate
scrp 2 21 9 2
	stim writ from 97 1
	sndc "st_1"
* look at me:
	urge sign 0.5 -1 0.0
	anim [0 1 2 3 4 5 6 7]
	setv vely -10
	over
**ov99 is how long flight will last
	setv ov99 rand 30 60
**ov10 is direction flight will go
	setv ov10 rand 0 1
	doif ov10 eq 0
		setv ov10 -1
	endi
	anim [8 9 10 11 12 13 14 15 16 17 255]
	sndl "st_2"
	tick 2
endm

See also[edit]