Skip to main content
itch.io
Browse Games
Game Jams
Upload Game
Developer Logs
Community
Log in
Register
Indie game store
Free games
Fun games
Horror games
Game development
Assets
Comics
Sales
Bundles
Jobs
Tags
Game Engines
Robodog646
2
Posts
A member registered
Oct 16, 2021
More
Block account
Recent community posts
Car Cone Game comments
·
Posted in
Car Cone Game comments
Robodog646
1 year ago
movie.color = "cyan";
var my_text = text("What is your name?");
my_text.color = "green";
my_text.font = "Comic Sans MS";
my_text.size = 30
my_text.y = 30;
var nameinput = textInput(0, 70);
var my_text1 = text("What is your address?");
my_text1.color = "green";
my_text1.font = "Comic Sans MS";
my_text1.size = 30;
my_text1.y = 120;
var addressinput = textInput(0, 160);
var smile = graphic("th-removebg-preview.png");
smile.x = 340;
smile.y = 180;
smile.scale = 0.6
var my_text2 = text("What is your age?");
my_text2.font = "Comic Sans MS";
my_text2.color = "green";
my_text2.size = 30;
my_text2.y = 210;
var ageinput = textInput(0, 250);
movie.whenMouseClicked = function() {
my_text.message = "That is a nice name, " + nameinput.message;
my_text1.message = "Sending Hitman at " + addressinput.message;
my_text2.message = "So your age is " + ageinput.message;
};
Fox Platformer comments
·
Posted in
Fox Platformer comments
Robodog646
1 year ago
This game is the definition of a masterpiece in game design. The first level is easy then from now on, the levels are ramping up in difficulty and the final level is a relaxing point.