home *** CD-ROM | disk | FTP | other *** search
/ Amiga Special: Spiele Hits / Hits-CD.iso / aminet / spiele / ammud1_1.lha / AmigaMUD / Src / Tiles / README next >
Text File  |  1997-07-06  |  1KB  |  29 lines

  1. To try out this little tiles example, create an empty AmigaMUD database
  2. using MUDCre, and start MUDServ on it. Then, run the full "MUD" client
  3. program, in low-res custom-screen mode. Log in as "SysAdmin" with the
  4. default "SysAdminPassword" password and enter:
  5.  
  6.     source amigamud:src/tiles/tiles.m
  7.  
  8. and, when it is done, to display the simple tile view, enter:
  9.  
  10.     drawTiles()$
  11.  
  12. When you are done marvelling at the glory of the image, enter:
  13.  
  14.     ShutDown(true)$
  15.  
  16. to make the server ready to exit, then:
  17.  
  18.     bye
  19.  
  20. to shutdown MUD, and hence the server (you were the only client).
  21.  
  22. The difference between this tiny example and the larger "castle"
  23. example, is that here we actually use the tile facility of the system,
  24. so that the definition of the tiles is sent to the client from the
  25. server and cached in the client. The "castle" example does not
  26. actually use the tiles facility; instead it uses the builtin
  27. "GShowImagePixels" to display rectangular tiles from the "tiles.iff"
  28. file which must be available on the client machine.
  29.