TGC Codebase Backup



life or death by Slayer93

6th Sep 2004 14:56
Summary

It's a simple life or death program



Description

It's a simple life or death program for Fighting games or any game that envolves life and death.



Code
                                    ` This code was downloaded from The Game Creators
                                    ` It is reproduced here with full permission
                                    ` http://www.thegamecreators.com
                                    
                                    life=999
do
input "How much do you want to take away? ";gone
away = life-gone
if away < 0 
text 100,100,"dead"
sleep 2000
else
text 100,100,"not dead"
endif
sleep 2000
cls
loop