Dayron1234
Rapnameiszero,cuzIhavezero,toleranceforidiots
- Jun 30, 2010
- 772
- 35
Sup guys so I'm getting bored of doing nothing on Friday's,Saturday's,& Sunday's except for playing black ops .Anyways since I have been coding in C# for a year now I think I should do a cool game in C# where you can pick a monster to fight for example the current 3 monsters are Slime, Mage, & Barbarian.You may ask why I picked these names will I picked them because they came to my mind and you can edit the names if you would like.
When will this be release?
Whenever I'm done DUH!
Can I help with this project?
If you know C# but I don't think I would need any help with this but if I do I will ask you.
Why C#?
Well I picked C# because it's the coding languages that I like plus I like python so deal with it!
Credit(s):
Me - coding
I will post updates on this project
When will this be release?
Whenever I'm done DUH!
Can I help with this project?
If you know C# but I don't think I would need any help with this but if I do I will ask you.
Why C#?
Well I picked C# because it's the coding languages that I like plus I like python so deal with it!
Pictures:
coming soon?
coming soon?
Snippets:
Code:
using System;
using System.Collections.Generic;
using System.Text;
namespace Rpg
{
public class Hero : Character
{
public List<string> items;
public Hero()
{
items = new List<string>();
}
public static void Initialize(Hero hero)
{
hero.CurrentHealth = 18;
hero.MaxHealth = 18;
hero.CurrentMagic = 8;
hero.MaxMagic = 8;
hero.Strength = 10;
hero.Defense = 3;
hero.Agility = 6;
hero.Experience = 0;
hero.Gold = 0;
while (hero.Identifier == null || hero.Identifier == "" ||
hero.Identifier == " ")
{
Console.WriteLine("Type in your hero name to fight!:");
hero.Identifier = Console.ReadLine();
}
hero.isAlive = true;
hero.AttackDamage = hero.Strength;
}
public bool CheckItems(string item)
{
if (items.Contains(item))
{
return true;
}
else
{
return false;
}
}
}
}
Credit(s):
Me - coding
I will post updates on this project