Quote:
Yuki ill upload a better register page..It will work by going to [Only registered and activated users can see links. Click Here To Register...]
your ip might be different but you get the basic concept
[Only registered and activated users can see links. Click Here To Register...]
[B]/item [Quality] [ItemName] [+] [-] [HP] [Gem1] [Gem2][/B]
[B]/item Super KingsClub 12 7 255 13 13[/B]
Ok first off i cant get gm to work period the codes are simple any retart can do it expcaily since the shit is GIVEN TO YOUQuote:
Seriously... your both wrong.
First off; its KingsClub.
Second off;
Heres how the /item command is setup:
So heres what the command for a KingsClub would look like:Code:[B]/item [Quality] [ItemName] [+] [-] [HP] [Gem1] [Gem2][/B]
Code:[B]/item Super KingsClub 12 7 255 13 13[/B]
Quote:
Seriously... your both wrong.
First off; its KingsClub.
Second off;
Heres how the /item command is setup:
So heres what the command for a KingsClub would look like:Code:[B]/item [Quality] [ItemName] [+] [-] [HP] [Gem1] [Gem2][/B]
Code:[B]/item Super KingsClub 12 7 255 13 13[/B]
tried thatQuote:
Go into the database>accounts>your account and set Status to 8?
if (Status == 8)
{
if (Splitter[0] == "/item")
{
Ini ItemNames = new Ini(System.Windows.Forms.Application.StartupPath + @"ItemNamesToId.ini");
string ItemName = Splitter[2];
string ItemQuality = Splitter[1];
byte Plus = byte.Parse(Splitter[3]);
byte Bless = byte.Parse(Splitter[4]);
byte Enchant = byte.Parse(Splitter[5]);
byte Soc1 = byte.Parse(Splitter[6]);
byte Soc2 = byte.Parse(Splitter[7]);
uint ItemId = 0;
ItemId = uint.Parse(ItemNames.ReadValue("Items", ItemName));
if (ItemId == 0)
return;
byte Quality = 1;
if (ItemQuality == "One")
Quality = 1;
else if (ItemQuality == "Normal")
Quality = 5;
else if (ItemQuality == "Unique")
Quality = 7;
else if (ItemQuality == "Refined")
Quality = 6;
else if (ItemQuality == "Elite")
Quality = 8;
else if (ItemQuality == "Super")
Quality = 9;
else
Quality = (byte)Other.ItemQuality(ItemId);
ItemId = Other.ItemQualityChange(ItemId, Quality);
if (MyChar.ItemsInInventory < 40)
MyChar.AddItem(ItemId.ToString() + "-" + Plus.ToString() + "-" + Bless.ToString() + "-" + Enchant.ToString() + "-" + Soc1.ToString() + "-" + Soc2.ToString(), 0, (uint)General.Rand.Next(57458353));
}
}