What's new

Search results for query: *

  1. Stormboy

    C/C++ Journey To Mars (Game)

    Ugh..I hate it when that happens. Try using this link: http://www.mediafire.com/download/ynnhh1vdznimegi/JourneyToMars-v1.4.2.zip
  2. Stormboy

    C/C++  Journey To Mars (Game)

    Hey all, After a very long time, I want to share with you guys my very first 2D game. Its a space shooter game created using C++ with the SFML 2.1 library. Here are the screenshots: Splash: In game: Controls: If you prefer the keyboard, then the Arrow keys are for movement and Space Bar for...
  3. Stormboy

    C/C++  CLI RPG

    Program Name: The Adventures of Chemistry Genius Habibur Program Description: This is just a CLI game that I'm making to improve my C skills as I am learning it. The current version has only two stages but you can expect more in every new version. This is more of a story than a game but still...
  4. Stormboy

    [C#] Tell Me Your Name! Source Code

    using System; public class Chill { public static void Main() { Console.WriteLine("Guys chill and have a soda!"); Console.ReadKey(); } }
  5. Stormboy

    [Perl][Source] Decimal -> Binary

    Hi, This is a decimal (base-10) to binary (base-2) converter. I just made it and I don't really know a lot of Perl. So feedback, suggestions and improvements are really appreciated. :) use 5.010; use strict; use integer; use warnings; sub to_base2 { my $num = shift; my $result = ""...
  6. Stormboy

    Pokemon You Hate To Battle?

    I hate the ones that keep popping up again and again when ever I am in a cave or forest. Especially the ones that use Stun Spore and/or Sleep Powder.
  7. Stormboy

    [TUTORIAL] Make a Number Guessing Game

    Thanks for writing a VB one. I guess the FreeBASIC code wouldn't work in VB because VB uses the .NET and so its a bit different.
  8. Stormboy

    [C#] Tell Me Your Name! Source Code

    Lol this is pretty cool. xD I made this myself in the "C-Like" languages. In C (Za father of zem C-Like languages!): #include <stdio.h> int main() { char name[65]; printf("What is your name?"); fgets(name, 65, stdin); printf("Your name is %s", name)...
  9. Stormboy

    C/C++  Line Number counter

    Hi, I just made this little program in C because I started learning it a few days. This program opens a file (it opens the file in read-only mode) eg: .txt, .c, .cpp, .py, etc and returns the total number of lines in the file. It also has error handling, so instead of crashing when the input...
  10. Stormboy

    C/C++ Number Echoer

    I don't use any IDE. I just write the sources with Notepad++. I have MSVC2010, but I use its command line tools to compile the source. VC doesn't support C99 :(. I used break to break out of the while loop and then exit it from the main body. Else, it would be looping until the end of time. I...
  11. Stormboy

    C/C++ Number Echoer

    1) I'm declaring true/false because my compiler supports C89 not C99. 2) I used pointers because I just checked out the topic on pointers and my concept of it was not somewhat clear LOL. I thought it would serve the same thing as a variable with special stuff and my program would crash if I used...
  12. Stormboy

    C/C++ Number Echoer

    Here is my implementation of your program in C: #include <stdio.h> #include <stdlib.h> #define false 0 #define true 1 int main() { unsigned long *x_loc = malloc(sizeof(*x_loc)); while(true) { printf("Enter a number (0 to end): "); scanf("%d", x_loc)...
  13. Stormboy

    Python Stormboy's Rock Paper Scissors Game

    That's cool you guys. Oh and I've updated the game to v1.1 with bug fixes. Try it out guys.
  14. Stormboy

    Python  Stormboy's Rock Paper Scissors Game

    Program Description This is the implementation of the traditional Rock Paper Scissors game in Python. This isn't like the other CLI games that messes up the whole Command Line with lots of messages. This removes the previous messages and updates them with new ones in a fraction of a second...
  15. Stormboy

    .NET Choice Maker

    Thank you :D.
  16. Stormboy

    .NET Choice Maker

    Haha, that was just an example xD.
  17. Stormboy

    .NET  Choice Maker

    Program Details Choice maker is a program that takes several choices from the user and returns a random choice from the input(s). For example, if you want to buy chocolate and you choose several ones: Galaxy, Cadbury, Snickers and Mars. Too bad you can only buy one. But which one? You can use...
  18. Stormboy

    [TUTORIAL] Make a Number Guessing Game

    Hi, I'm new to this community and I'd like to start off with a tutorial :). In this you will make a "Number guessing" game. Requirements: 1) A Computer (Thats obvious xD) 2) A BASIC compiler like FreeBASIC, etc. 3) Patience First off, open up your favourite editor. I use Notepad++. Then type...
Top Bottom
Login
Register