Looks good keep it up.OK Finally got back into the swimg of development...
Not much but RP Class is implemeneted; will be programming some commands now!
User RP Information will be saved on client disconnect; meaning RP information will not be accidently lost!
Now... I know this isn't exciting but, hitting is complete
So... When dead you're transported to hospital, this now means I'll be coding the timers!
Timers have been coded... 10 ticks = 60 seconds
You have 'neen' released from Hospital. 10/10 Grammar!OK Finally got back into the swimg of development...
Not much but RP Class is implemeneted; will be programming some commands now!
User RP Information will be saved on client disconnect; meaning RP information will not be accidently lost!
Now... I know this isn't exciting but, hitting is complete
So... When dead you're transported to hospital, this now means I'll be coding the timers!
Timers have been coded... 10 ticks = 60 seconds
Does it really matter?You have 'neen' released from Hospital. 10/10 Grammar!
I was just joking around, calm down.Does it really matter?
This is looking really good and if you can get this stable and with the features you want, this could be excellent.Allowed 'x' to be used to repeat last command :]
Join.me session on Lumisota currently open:
You must be registered for see links
internal Wanted_list()
{
this.LoadOffences();
this.LoadWl();
Out.WriteLine("Wanted list loaded.", " RP ", ConsoleColor.DarkGreen);
}
private void LoadWl()
{
using(IQueryAdapter k = Lumisota.GetDatabaseManager().GetQueryReactor())
{
k.SetQuery("SELECT * FROM rp_wanted_users");
foreach (DataRow r in k.GetTable().Rows)
this.Wu.Add((string)r["Name"], this.GetOffenceByName((string)r["Offence"]));
}
Out.WriteLine("Loaded a total of " + this.Wu.Keys.Count + " Wanted users.", " RP ", ConsoleColor.DarkGreen);
}
internal Corp(int Id, string Name, string Owner, int HomeRoom, int Balance)
{
this.Id = Id;
this.Name = Name;
this.Owner = Owner;
this.HomeRoom = HomeRoom;
this.Balance = Balance;
this.LoadRanks();
}
private void LoadRanks()
{
using(IQueryAdapter k = Lumisota.GetDatabaseManager().GetQueryReactor())
{
k.SetQuery("SELECT * FROM rp_corp_ranks WHERE cId = '" + this.Id + "'");
foreach (DataRow row in k.GetTable().Rows)
this.Ranks.Add((int)row["Id"], new Rank.Rank((int)row["cId"], (int)row["rId"], (string)row["Name"], (int)row["Pay"], (string)row["Type"]));
}
}
There is?Are there even any r63B EMU's released?