home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / magazyn_amiga / 0896 / ami002_2.gif < prev    next >
Graphics Interchange Format  |  1998-03-20  |  169KB  |  627x464  |  8-bit (46 colors)
Labels: text | screenshot | font | black and white
OCR: * Amiga MUD * Copyright (c) 1994 by Chris Gray */ /× * simple.m - a very simple text-only adventure. Mostly just a tutorial. */ /* First, define the basic "properties" that we will use in this world */ /* Properties on rooms: * / public north CreateThingProp(). /* the room to the north (if any) */ -- public south CreateThingProp(), public east CreateThingProp(). /* the room to the south (if any) * public west CreateThingProp(), /* the room to the east (if any) */ public desc CreateStringProp(), /* the room to the west (if any) */ /* the description of the room */ public contents CreateThingListProp(), /* the list of stuff in the room */ /* Properties on players: * / public carrying CreateThingListProp()./* the list of stuff being carried */ /* Properties on objects: * / public name CreateS ...