CodeBase - Tic-Tac-Toe with 3D Text

Return to the CodeBase listing

Category: Complete Applications

Version: 1.1

0
0

Information

Uploaded: 6th Mar 2011 18:35

Modified: 9th Sep 2011 23:14

Author:  Webber

Summary

Tic-Tac-Toe using a 3D text subroutine. No media needed.

Full Description

The 3D text subroutine can easily add 3D text to your game<br /> It only makes capital letters, numbers, and symbols; almost everything on the keyboard<br /> The "&" sign is a little sloppy, but it's kind of hard to make letters using boxes<br /> <br /> `Variables/Arrays needed for making 3D text<br /> Text3D$ as String `String used to create 3D text<br /> Dim D$(4) `Text Data Reading array<br /> TObj = 2 `A temporary object number for the 3D text (this can be any object number that is not used)<br /> <br /> Obj = 3 `The object number of the 3D text that you are making<br /> Text3D$ = "3D TEXT" `this is what the 3D text will display<br /> Gosub Make_Object_3DText `this will create the 3D text<br /> <br /> `Don't forget to add the subroutine at the end of the program<br /> `It is at the end of the program in the source code<br /> <br /> The Tic-Tac-Toe Game has 4 difficulty options: Easy, Normal, Hard, and Impossible.<br /> <br /> There's NO MEDIA so if you want music and sound effects your going to have to add them.<br /> <br /> It's a great example of making 3D text with boxes, and the Tic-Tac-Toe game has some good artificial intelligence.<br /> <br /> Credit to The Game Guy would be appreciated, but is not required.<br />

Comments

No comments yet.