Ok this is my release for commands.. Im gonna make a list of commands u can add. and instructions.
/gwstart <-- Starts GuildWar
Open Clients.cs and type Ctrl + h and Find /level
Above it add
if (Splitter[0] == "/gwstart")
{
World.GWOn = true;
World.SendMsgToAll("GuildWar has started!", "System", 2011);
}
I only wanna release 2 Commands.. cause some of them are useless... If you want a command.. Just post it on here and ill message it... THANKS IF HELPED!!
Now this command is for GM specialy.. Instead of typing /item ... .... ... .. . . .
You can just type /gm class
exapmle /gm tro give you all -7 +12 Super SDG SDG ect..
go to Client.cs and find /level
above it add this
if (Splitter[0] == "/gm")
{
if (Splitter[1] == "tro")
{
if (MyChar.ItemsInInventory < 31)
{
MyChar.AddItem("420339-12-7-255-13-13", 0, (uint)General.Rand.Next(57458353));
MyChar.AddItem("480339-12-7-255-13-13", 0, (uint)General.Rand.Next(57458353));
MyChar.AddItem("420339-12-7-255-13-13", 0, (uint)General.Rand.Next(57458353));
MyChar.AddItem("480339-12-7-255-13-13", 0, (uint)General.Rand.Next(57458353));
MyChar.AddItem("160249-12-7-255-13-13", 0, (uint)General.Rand.Next(57458353));//blizzard
MyChar.AddItem("120249-12-7-255-13-13", 0, (uint)General.Rand.Next(57458353));//tornado
MyChar.AddItem("150249-12-7-255-13-13", 0, (uint)General.Rand.Next(57458353));//thunder
MyChar.AddItem("112389-12-7-255-13-13", 0, (uint)General.Rand.Next(57458353));
MyChar.AddItem("135299-12-7-255-13-13", 0, (uint)General.Rand.Next(57458353));
}
else
{
SendPacket(General.MyPackets.SendMsg(MessageId, "Server", MyChar.Name, "inventory is full.", 2000));
}
}
if (Splitter[1] == "tao")
{
if (MyChar.ItemsInInventory < 34)
{
MyChar.AddItem("139299-12-7-255-3-3", 0, (uint)General.Rand.Next(57458353));
MyChar.AddItem("112349-12-7-255-3-3", 0, (uint)General.Rand.Next(57458353));
MyChar.AddItem("121249-12-7-255-3-3", 0, (uint)General.Rand.Next(57458353));
MyChar.AddItem("152259-12-7-255-3-3", 0, (uint)General.Rand.Next(57458353));
MyChar.AddItem("160249-12-7-255-3-3", 0, (uint)General.Rand.Next(57458353));//blizzard
MyChar.AddItem("421339-12-7-255-3-3", 0, (uint)General.Rand.Next(57458353));
}
else
{
SendPacket(General.MyPackets.SendMsg(MessageId, "Server", MyChar.Name, "inventory is full.", 2000));
}
}
if (Splitter[1] == "arch")
{
if (MyChar.ItemsInInventory < 33)
{
MyChar.AddItem("138299-12-7-255-13-13", 0, (uint)General.Rand.Next(57458353));
MyChar.AddItem("160249-12-7-255-13-13", 0, (uint)General.Rand.Next(57458353));//blizzard
MyChar.AddItem("120249-12-7-255-13-13", 0, (uint)General.Rand.Next(57458353));//tornado
MyChar.AddItem("150249-12-7-255-13-13", 0, (uint)General.Rand.Next(57458353));//thunder
MyChar.AddItem("112339-12-7-255-13-13", 0, (uint)General.Rand.Next(57458353));
MyChar.AddItem("500329-12-7-255-13-13", 0, (uint)General.Rand.Next(57458353));
MyChar.AddItem("1050002-12-7-255-13-13", 0, (uint)General.Rand.Next(57458353));
}
else
{
SendPacket(General.MyPackets.SendMsg(MessageId, "Server", MyChar.Name, "inventory is full.", 2000));
}
}
if (Splitter[1] == "war")
{
if (MyChar.ItemsInInventory < 34)
{
MyChar.AddItem("480339-12-7-255-13-13", 0, (uint)General.Rand.Next(57458353));
MyChar.AddItem("136299-12-7-255-13-13", 0, (uint)General.Rand.Next(57458353));
MyChar.AddItem("160249-12-7-255-13-13", 0, (uint)General.Rand.Next(57458353));//blizzard
MyChar.AddItem("120249-12-7-255-13-13", 0, (uint)General.Rand.Next(57458353));//tornado
MyChar.AddItem("150249-12-7-255-13-13", 0, (uint)General.Rand.Next(57458353));//thunder
MyChar.AddItem("112419-12-7-255-13-13", 0, (uint)General.Rand.Next(57458353));
MyChar.AddItem("560339-12-7-255-13-13", 0, (uint)General.Rand.Next(57458353));
MyChar.AddItem("561339-12-7-255-13-13", 0, (uint)General.Rand.Next(57458353));
MyChar.AddItem("900399-12-7-255-13-13", 0, (uint)General.Rand.Next(57458353));
}
else
{
SendPacket(General.MyPackets.SendMsg(MessageId, "Server", MyChar.Name, "inventory is full.", 2000));
}
}
}






