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

CAOS2PRAY

From Creatures Wiki
Revision as of 23:01, 13 April 2020 by Ligfx (talk | contribs)
Jump to navigation Jump to search

CAOS2PRAY is a format for embedding PRAY information into COS files, so that the coder doesn't have to write a separate PRAY file. It was invented by RProgrammer, and can be compiled into a .agents file using Jagent.

Sample

An example CAOS2PRAY source file for a .agents file containing a new snake agent and spritefile might be:

  **CAOS2PRAY
  *# Pray-File "Snakey.agents"
  *# C3-Name "Snakey C3"
  *# DS-Name "Snakey DS"
  *# attach snke.s16
  *# desc = "A polite critter"
  *# Agent Animation File = "snke.s16"
  *# Agent Animation String = "0"
  *# Agent Sprite First Image = 0
  *# Agent Animation Gallery = "snke"
  *# Web URL = "creatures.wiki"
  *# Web Label = "Creatures Wiki"
 
  inst
  new: simp 2 15 1000 "snke" 16 0 3500
  
  * etc...

External Links