Page 1 of 1
[Solved] Old file needs updated.
PostPosted: Sun Nov 11, 2012 10:09 pm
by Bones
While i was researching formation commands and such to make my PVE zerg for new frontiers I came across this file from 2004.
I loaded it up and it is full of errors and won't compile in the latest svn. I know its an old file, but I think it is doing things I want my pve zerg to do. Summon more mobs, keep them in formations, and marching orders. It is currently beyond my capabilities to update it to the latest svn coding. Could someone take a peak at it to see if they are willing to update it so it is functional?
Heres the code:
- Code: Select all
using System;
using System.Reflection;
using System.Collections;
using DOL.GS;
using DOL.Database;
using DOL.GS.PacketHandler;
using System.Threading;
using System.Timers;
namespace DOL.GS.Scripts
{
[CmdAttribute("&undead", //command to handle
(uint)ePrivLevel.GM, //minimum privelege level
"summons ybdead", //command description
"'/undead' summons the undead summoner")]
public class UndeadCommandHandler : ICommandHandler
{
const int cROWS=4;
const int cCOLS=16;
const int cMOBS=64;
public GameMob[] mob;
public UndeadCommanderNPC commanderMob;
// This is the summoner that /undead will summon
public class UndeadSummonerNPC: GameNPC
{
public UndeadCommandHandler UndeadCH;
public UndeadSummonerNPC() : base()
{
//First, we set the position of this
//npc in the constructor. You can set
//the npc position, model etc. in the
//StartEvent() method too if you want.
Heading=0x0;
Name="Ostego";
GuildName="Undead Horde";
Model=107;
Size=50;
Level=10;
Realm=1;
CurrentRegionID=1;
}
//This function is the callback function that is called when
//a player right clicks on the npc
public override bool Interact(GamePlayer player)
{
if(!base.Interact(player)) return false;
//Now we turn the npc into the direction of the person it is
//speaking to.
TurnTo(player.X,player.Y);
//We send a message to player and make it appear in a popup
//window. Text inside the [brackets] is clickable in popup
//windows and will generate a &whis text command!
player.Out.SendMessage(
"Hello "+player.Name+" shale I [summon] the Horde, or [banish] them back to hell?",
eChatType.CT_Say,eChatLoc.CL_PopupWindow);
return true;
}
//This function is the callback function that is called when
//someone whispers something to this mob!
public override bool WhisperReceive(GameLiving source, string str)
{
if(!base.WhisperReceive(source,str)) return false;
//If the source is no player, we return false
if(!(source is GamePlayer)) return false;
//We cast our source to a GamePlayer object
GamePlayer t = (GamePlayer) source;
//Now we turn the npc into the direction of the person it is
//speaking to.
TurnTo(t.X,t.Y);
//We test what the player whispered to the npc and
//send a reply. The Method SendReply used here is
//defined later in this class ... read on
switch(str)
{
case "summon":
SendReply(t, "Very well, Behold, the Undead Horde!");
UndeadCH.SummonHorde(this);
break;
case "banish":
SendReply(t, "Their purpose fullfilled, I shall return them to the grave!");
UndeadCH.BannishHorde();
break;
default: break;
}
return true;
}
//This function sends some text to a player and makes it appear
//in a popup window. We just define it here so we can use it in
//the WhisperToMe function instead of writing the long text
//everytime we want to send some reply!
private void SendReply(GamePlayer target, string msg)
{
target.Out.SendMessage(msg, eChatType.CT_Say,eChatLoc.CL_PopupWindow);
}
} // end undead summoner
// This is the commander that Ostego will summon to order the troops
public class UndeadCommanderNPC: GameNPC
{
public UndeadCommandHandler UndeadCH;
public UndeadCommanderNPC() : base()
{
//First, we set the position of this
//npc in the constructor. You can set
//the npc position, model etc. in the
//StartEvent() method too if you want.
Heading=0x0;
Name="Undead Commander";
GuildName="Undead Horde";
Model=106;
Size=60;
Level=10;
Realm=1;
CurrentRegionID=1;
}
//This function is the callback function that is called when
//a player right clicks on the npc
public override bool Interact(GamePlayer player)
{
if(!base.Interact(player)) return false;
//Now we turn the npc into the direction of the person it is
//speaking to.
//TurnTo(player.X,player.Y);
//We send a message to player and make it appear in a popup
//window. Text inside the [brackets] is clickable in popup
//windows and will generate a &whis text command!
player.Out.SendMessage(
"Undead Commander Reporting, "+player.Name+". What is your command? [Prepare to move] [move out] [halt] [halt charge] [formation] [charge] [align]",
eChatType.CT_Say,eChatLoc.CL_PopupWindow);
return true;
}
//This function is the callback function that is called when
//someone whispers something to this mob!
public override bool WhisperReceive(GameLiving source, string str)
{
if(!base.WhisperReceive(source,str)) return false;
//If the source is no player, we return false
if(!(source is GamePlayer)) return false;
//We cast our source to a GamePlayer object
GamePlayer t = (GamePlayer) source;
//We test what the player whispered to the npc and
//send a reply. The Method SendReply used here is
//defined later in this class ... read on
switch(str)
{
case "Prepare to move":
SendReply(t, "Aye Sir! We will make ready!");
UndeadCH.MobRightFace();
break;
case "move out":
SendReply(t, "Aye Sir! We March!!");
UndeadCH.MobForwardMarch();
break;
case "halt":
SendReply(t, "Aye Sir! We Hold!");
UndeadCH.MobHalt();
break;
case "halt charge":
SendReply(t, "Aye Sir! We Hold!");
UndeadCH.MobHaltCharge();
break;
case "formation":
SendReply(t, "Aye Sir!");
UndeadCH.MobFallIn();
break;
case "charge":
SendReply(t, "Aye Sir! None shall be left standing!");
// perform charge animation
UndeadCH.MobCharge();
break;
case "align":
SendReply(t, "Aye Sir! Forming Up on you.");
TurnTo(t.X,t.Y);
UndeadCH.MobFallIn();
break;
default: break;
}
return true;
}
//This function sends some text to a player and makes it appear
//in a popup window. We just define it here so we can use it in
//the WhisperToMe function instead of writing the long text
//everytime we want to send some reply!
private void SendReply(GamePlayer target, string msg)
{
target.Out.SendMessage(msg, eChatType.CT_Say,eChatLoc.CL_PopupWindow);
}
} // end undead commander
//200
public void LeftFace(GameNPC toon)
{
int FaceHeading = Convert.ToInt32(toon.Heading + 1024);
if (FaceHeading > 4096)
{
FaceHeading -= 4096;
}
toon.Heading = Convert.ToUInt16(FaceHeading);
}
public void RightFace(GameNPC toon)
{
int FaceHeading = Convert.ToInt32(toon.Heading - 1024);
if (FaceHeading < 0)
{
FaceHeading += 4096;
}
toon.Heading = Convert.ToUInt16(FaceHeading);
}
public void AboutFace(GameNPC toon)
{
int FaceHeading = Convert.ToInt32(toon.Heading + 2048);
if (FaceHeading > 4096)
{
FaceHeading -= 4096;
}
toon.Heading = Convert.ToUInt16(FaceHeading);
}
//243
public void MobRightFace()
{
if (commanderMob != null)
{
AboutFace(commanderMob);
commanderMob.Yell("Right-Face!");
for (int i=0; i<cMOBS; i++)
{
try
{
RightFace(mob[i]);
mob[i].BroadcastUpdate();
}
catch
{
}
}
}
}
public void MobForwardMarch()
{
if (commanderMob != null)
{
commanderMob.Yell("Forward-March!");
for (int i=0; i<cMOBS; i++)
{
try
{
mob[i].Walk(100);
mob[i].BroadcastUpdate();
}
catch
{
}
}
LeftFace(commanderMob);
commanderMob.Walk(100);
commanderMob.BroadcastUpdate();
}
}
public void MobHalt()
{
if (commanderMob != null)
{
commanderMob.Yell("Company!");
commanderMob.Yell("Halt!");
for (int i=0; i<cMOBS; i++)
{
try
{
mob[i].StopMoving();
mob[i].BroadcastUpdate();
}
catch
{
}
}
commanderMob.StopMoving();
RightFace(commanderMob);
commanderMob.Yell("Left-Face!");
MobLeftFace();
}
}
public void MobHaltCharge()
{
if (commanderMob != null)
{
commanderMob.Yell("Company!");
commanderMob.Yell("Halt!");
for (int i=0; i<cMOBS; i++)
{
try
{
mob[i].StopMoving();
mob[i].BroadcastUpdate();
}
catch
{
}
}
commanderMob.StopMoving();
}
}
public void MobLeftFace()
{
if (commanderMob != null)
{
commanderMob.Yell("Right-Face!");
for (int i=0; i<cMOBS; i++)
{
try
{
LeftFace(mob[i]);
mob[i].BroadcastUpdate();
}
catch
{
}
}
AboutFace(commanderMob);
}
}
public void MobCharge()
{
if (commanderMob != null)
{
commanderMob.Yell("Charge!");
for (int i=0; i<cMOBS; i++)
{
mob[i].Walk((int)mob[i].MaxSpeed);
}
commanderMob.Walk((int)commanderMob.MaxSpeed);
}
}
public void MobFallIn()
{
uint BasePosX;
uint BasePosY;
uint MobPosX=0;
uint MobPosY=0;
int MobNumber;
double MidPoint = (cCOLS/2) -.5;
if (commanderMob != null)
{
int FormationHeading = commanderMob.Heading+2048;
if (FormationHeading >= 4096)
{
FormationHeading -= 4096;
}
commanderMob.Yell("Company!");
commanderMob.Yell("Fall-In!");
for (int i=0; i<cROWS; i++)
{
BasePosX = Convert.ToUInt32(commanderMob.X + Math.Sin(0.00153398078856 * commanderMob.Heading) * (150 +(50*i)));
BasePosY = Convert.ToUInt32(commanderMob.Y - Math.Cos(0.00153398078856 * commanderMob.Heading) * (150 +(50*i)));
for (int j= 0; j<cCOLS; j++)
{
// Instantiate mob
MobNumber = Convert.ToUInt16(((i*cCOLS)+j+1)-1);
// Build the mob position
if (j>MidPoint)
{
FormationHeading+=1024;
if (FormationHeading >= 4096)
{
FormationHeading = FormationHeading - 4096;
}
MobPosX = Convert.ToUInt32(BasePosX - Math.Sin(0.00153398078856 * FormationHeading) * ((j-MidPoint) * 50));
MobPosY = Convert.ToUInt32(BasePosY + Math.Cos(0.00153398078856 * FormationHeading) * ((j-MidPoint) * 50));
FormationHeading-=1024;
if (FormationHeading < 0)
{
FormationHeading = FormationHeading + 4096;
}
}
if (j<MidPoint)
{
FormationHeading-=1024;
if (FormationHeading < 0)
{
FormationHeading = FormationHeading + 4096;
}
MobPosX = Convert.ToUInt32(BasePosX - Math.Sin(0.00153398078856 * FormationHeading) * ((MidPoint-j) * 50));
MobPosY = Convert.ToUInt32(BasePosY + Math.Cos(0.00153398078856 * FormationHeading) * ((MidPoint-j) * 50));
FormationHeading+=1024;
if (FormationHeading >= 4096)
{
FormationHeading = FormationHeading - 4096;
}
}
if (j==MidPoint)
{
MobPosX = BasePosX;
MobPosY = BasePosY;
}
mob[MobNumber].WalkTo(MobPosX, MobPosY, commanderMob.Z, mob[MobNumber].MaxSpeed);
mob[MobNumber].Heading=Convert.ToUInt16(commanderMob.Heading);
mob[MobNumber].BroadcastUpdate();
mob[MobNumber].Heading=Convert.ToUInt16(commanderMob.Heading);
mob[MobNumber].BroadcastUpdate();
}
}
commanderMob.Yell("Attention!");
}
}
public int OnCommand(GameClient client, string[] args)
{
if(args.Length!=1)
{
client.Out.SendMessage("'/undead summons the undead summoner",eChatType.CT_System,eChatLoc.CL_SystemWindow);
return 1;
}
UndeadSummonerNPC m_npc = new UndeadSummonerNPC();
m_npc.UndeadCH = this;
m_npc.X = client.Player.X;
m_npc.Y = client.Player.Y;
m_npc.Z = client.Player.Z;
m_npc.AddToWorld();
client.Out.SendMessage("Mob created: OID="+m_npc.ObjectID + " at: " + m_npc.X + " " + m_npc.Y,eChatType.CT_System,eChatLoc.CL_SystemWindow);
return 1;
} // End command /undead
public void SummonHorde(UndeadSummonerNPC HordeMaster)
{
Random m_rnd;
m_rnd = new Random();
string theType="DOL.GS.GameMob";
uint Rows = cROWS;
uint Cols = cCOLS;
uint MobNumber = 0;
mob = new GameMob[cMOBS];
uint BasePosX = Convert.ToUInt32(HordeMaster.X + Math.Sin(0.00153398078856 * HordeMaster.Heading) * 150);
uint BasePosY = Convert.ToUInt32(HordeMaster.Y - Math.Cos(0.00153398078856 * HordeMaster.Heading) * 150);
uint BaseHeading=1;
uint FormationHeading = 1;
uint MobPosX = 1;
uint MobPosY = 1;
double MidPoint = (Cols/2) -.5;
if (HordeMaster.Heading >= 2048)
{
BaseHeading = Convert.ToUInt16(HordeMaster.Heading - 2048);
}
else
{
BaseHeading = Convert.ToUInt16(HordeMaster.Heading + 2048);
}
//****************************************************
// Create Leader Mob
//****************************************************
commanderMob = new UndeadCommanderNPC();
commanderMob.UndeadCH = this;
//Fill the object variables
commanderMob.X = BasePosX;
commanderMob.Y = BasePosY;
commanderMob.Z = HordeMaster.Z;
commanderMob.CurrentRegion=HordeMaster.CurrentRegion;
commanderMob.Heading=Convert.ToUInt16(BaseHeading);
commanderMob.Level=1;
commanderMob.Realm=0;
commanderMob.Name="Horde Commander";
commanderMob.Model=106;
//Fill the living variables
commanderMob.CurrentSpeed=0;
commanderMob.MaxSpeed=200;
commanderMob.GuildName="Undead Horde";
commanderMob.Size=60;
commanderMob.AddToWorld();
AboutFace(commanderMob);
//****************************************************
// Create Follower Mobs
//****************************************************
BaseHeading = HordeMaster.Heading;
FormationHeading = BaseHeading;
for (double i = 0; i < Rows; i++)
{
BasePosX = Convert.ToUInt32(HordeMaster.X + Math.Sin(0.00153398078856 * HordeMaster.Heading) * (300 +(50*i)));
BasePosY = Convert.ToUInt32(HordeMaster.Y - Math.Cos(0.00153398078856 * HordeMaster.Heading) * (300 +(50*i)));
for (double j = 0; j < Cols; j++)
{
// Instantiate mob
DOLConsole.WriteInit("MobNumber: " + MobNumber,false);
DOLConsole.WriteInit("/ti: " + i + " j: " + j + " cROWS: " + cROWS + " Calc: " + (((i*cROWS)+j+1)-1) ,false);
MobNumber = Convert.ToUInt16(((i*cCOLS)+j+1)-1);
try
{
mob[MobNumber] = new GameMob();
// Build the mob position
if (j>MidPoint)
{
FormationHeading+=1024;
if (FormationHeading >= 4096)
{
FormationHeading = FormationHeading - 4096;
}
MobPosX = Convert.ToUInt32(BasePosX - Math.Sin(0.00153398078856 * FormationHeading) * ((j-MidPoint) * 50));
MobPosY = Convert.ToUInt32(BasePosY + Math.Cos(0.00153398078856 * FormationHeading) * ((j-MidPoint) * 50));
FormationHeading-=1024;
if (FormationHeading < 0)
{
FormationHeading = FormationHeading + 4096;
}
}
if (j<MidPoint)
{
FormationHeading-=1024;
if (FormationHeading < 0)
{
FormationHeading = FormationHeading + 4096;
}
MobPosX = Convert.ToUInt32(BasePosX - Math.Sin(0.00153398078856 * FormationHeading) * ((MidPoint-j) * 50));
MobPosY = Convert.ToUInt32(BasePosY + Math.Cos(0.00153398078856 * FormationHeading) * ((MidPoint-j) * 50));
FormationHeading+=1024;
if (FormationHeading >= 4096)
{
FormationHeading = FormationHeading - 4096;
}
}
if (j==MidPoint)
{
MobPosX = BasePosX;
MobPosY = BasePosY;
}
mob[MobNumber].X = MobPosX;
mob[MobNumber].Y = MobPosY;
mob[MobNumber].Z = HordeMaster.Z;
mob[MobNumber].CurrentRegion = HordeMaster.CurrentRegion;
mob[MobNumber].Heading=Convert.ToUInt16(BaseHeading);
mob[MobNumber].Level = 1;
mob[MobNumber].Realm = 0;
mob[MobNumber].Name = "Hordie "+ MobNumber;
mob[MobNumber].Model = 108;
//Fill the living variables
mob[MobNumber].CurrentSpeed = 0;
mob[MobNumber].MaxSpeed = Convert.ToByte(180+m_rnd.Next(40));
mob[MobNumber].GuildName = "Undead Horde";
mob[MobNumber].Size = Convert.ToByte(48 + m_rnd.Next(7));
mob[MobNumber].AddToWorld();
//mob[MobNumber].SaveIntoDatabase();
}
catch
{
DOLConsole.WriteInit("Horde Mob [" + MobNumber + "]:",false);
}
}
}
DOLConsole.WriteInit("\tHorde Summoned:",true);
} // End SummonHorde
public void BannishHorde()
{
if (commanderMob != null)
{
try
{
commanderMob.DeleteFromDatabase();
commanderMob.Delete(false);
commanderMob = null;
DOLConsole.WriteInit("Horde Commander deleted:",true);
}
catch (Exception e)
{
DOLConsole.WriteInit("Horde Commander deleted:",false);
DOLConsole.WriteInit("\t" + e.Message,false);
}
}
for(int i=0; i<cMOBS; i++)
{
//Thread.Sleep(100);
if (mob[i] != null)
{
try
{
mob[i].DeleteFromDatabase();
mob[i].Delete(true);
mob[i]=null;
DOLConsole.WriteInit("Horde Mob[" + i + "] deleted:",true);
}
catch
{
DOLConsole.WriteInit("Horde Mob[" + i + "] deleted:",false);
}
}
else
{
DOLConsole.WriteInit("Horde Mob[" + i + "] Is already Null", false);
}
}
} // End BannishHorde
} // End UndeadCommandHelper class
} // End Namespace
Here's the file.
- summonundead.txt
- Old file not functional with current svn
- (17.76 KiB) Downloaded 182 times
edit: updated [Solved]
Re: Old file needs updated.
PostPosted: Thu Nov 15, 2012 3:52 am
by rdsandersjr
No idea if this will work (no errors) and it compiles. I am rusty with DOL haven't don't much with it in a couple years. I will try to setup a test server tomorrow sometime.
- Code: Select all
using System;
using System.Reflection;
using System.Collections;
using DOL.GS;
using DOL.Database;
using DOL.GS.PacketHandler;
using System.Threading;
using System.Timers;
using DOL.GS.Commands;
namespace DOL.GS.Scripts
{
[CmdAttribute("&undead", //command to handle
ePrivLevel.GM, //minimum privelege level
"summons ybdead", //command description
"'/undead' summons the undead summoner")]
public class UndeadCommandHandler
{
const int cROWS = 4;
const int cCOLS = 16;
const int cMOBS = 64;
public GameNPC[] mob;
public UndeadCommanderNPC commanderMob;
// This is the summoner that /undead will summon
public class UndeadSummonerNPC : GameNPC
{
public UndeadCommandHandler UndeadCH;
public UndeadSummonerNPC()
: base()
{
//First, we set the position of this
//npc in the constructor. You can set
//the npc position, model etc. in the
//StartEvent() method too if you want.
Heading = 0x0;
Name = "Ostego";
GuildName = "Undead Horde";
Model = 107;
Size = 50;
Level = 10;
Realm = eRealm.Albion;
CurrentRegionID = 1;
}
//This function is the callback function that is called when
//a player right clicks on the npc
public override bool Interact(GamePlayer player)
{
if (!base.Interact(player)) return false;
//Now we turn the npc into the direction of the person it is
//speaking to.
TurnTo(player.X, player.Y);
//We send a message to player and make it appear in a popup
//window. Text inside the [brackets] is clickable in popup
//windows and will generate a &whis text command!
player.Out.SendMessage(
"Hello " + player.Name + " shale I [summon] the Horde, or [banish] them back to hell?",
eChatType.CT_Say, eChatLoc.CL_PopupWindow);
return true;
}
//This function is the callback function that is called when
//someone whispers something to this mob!
public override bool WhisperReceive(GameLiving source, string str)
{
if (!base.WhisperReceive(source, str)) return false;
//If the source is no player, we return false
if (!(source is GamePlayer)) return false;
//We cast our source to a GamePlayer object
GamePlayer t = (GamePlayer)source;
//Now we turn the npc into the direction of the person it is
//speaking to.
TurnTo(t.X, t.Y);
//We test what the player whispered to the npc and
//send a reply. The Method SendReply used here is
//defined later in this class ... read on
switch (str)
{
case "summon":
SendReply(t, "Very well, Behold, the Undead Horde!");
UndeadCH.SummonHorde(this);
break;
case "banish":
SendReply(t, "Their purpose fullfilled, I shall return them to the grave!");
UndeadCH.BannishHorde();
break;
default: break;
}
return true;
}
//This function sends some text to a player and makes it appear
//in a popup window. We just define it here so we can use it in
//the WhisperToMe function instead of writing the long text
//everytime we want to send some reply!
private void SendReply(GamePlayer target, string msg)
{
target.Out.SendMessage(msg, eChatType.CT_Say, eChatLoc.CL_PopupWindow);
}
} // end undead summoner
// This is the commander that Ostego will summon to order the troops
public class UndeadCommanderNPC : GameNPC
{
public UndeadCommandHandler UndeadCH;
public UndeadCommanderNPC()
: base()
{
//First, we set the position of this
//npc in the constructor. You can set
//the npc position, model etc. in the
//StartEvent() method too if you want.
Heading = 0x0;
Name = "Undead Commander";
GuildName = "Undead Horde";
Model = 106;
Size = 60;
Level = 10;
Realm = eRealm.Albion;
CurrentRegionID = 1;
}
//This function is the callback function that is called when
//a player right clicks on the npc
public override bool Interact(GamePlayer player)
{
if (!base.Interact(player)) return false;
//Now we turn the npc into the direction of the person it is
//speaking to.
//TurnTo(player.X,player.Y);
//We send a message to player and make it appear in a popup
//window. Text inside the [brackets] is clickable in popup
//windows and will generate a &whis text command!
player.Out.SendMessage(
"Undead Commander Reporting, " + player.Name + ". What is your command? [Prepare to move] [move out] [halt] [halt charge] [formation] [charge] [align]",
eChatType.CT_Say, eChatLoc.CL_PopupWindow);
return true;
}
//This function is the callback function that is called when
//someone whispers something to this mob!
public override bool WhisperReceive(GameLiving source, string str)
{
if (!base.WhisperReceive(source, str)) return false;
//If the source is no player, we return false
if (!(source is GamePlayer)) return false;
//We cast our source to a GamePlayer object
GamePlayer t = (GamePlayer)source;
//We test what the player whispered to the npc and
//send a reply. The Method SendReply used here is
//defined later in this class ... read on
switch (str)
{
case "Prepare to move":
SendReply(t, "Aye Sir! We will make ready!");
UndeadCH.MobRightFace();
break;
case "move out":
SendReply(t, "Aye Sir! We March!!");
UndeadCH.MobForwardMarch();
break;
case "halt":
SendReply(t, "Aye Sir! We Hold!");
UndeadCH.MobHalt();
break;
case "halt charge":
SendReply(t, "Aye Sir! We Hold!");
UndeadCH.MobHaltCharge();
break;
case "formation":
SendReply(t, "Aye Sir!");
UndeadCH.MobFallIn();
break;
case "charge":
SendReply(t, "Aye Sir! None shall be left standing!");
// perform charge animation
UndeadCH.MobCharge();
break;
case "align":
SendReply(t, "Aye Sir! Forming Up on you.");
TurnTo(t.X, t.Y);
UndeadCH.MobFallIn();
break;
default: break;
}
return true;
}
//This function sends some text to a player and makes it appear
//in a popup window. We just define it here so we can use it in
//the WhisperToMe function instead of writing the long text
//everytime we want to send some reply!
private void SendReply(GamePlayer target, string msg)
{
target.Out.SendMessage(msg, eChatType.CT_Say, eChatLoc.CL_PopupWindow);
}
} // end undead commander
//200
public void LeftFace(GameNPC toon)
{
int FaceHeading = Convert.ToInt32(toon.Heading + 1024);
if (FaceHeading > 4096)
{
FaceHeading -= 4096;
}
toon.Heading = Convert.ToUInt16(FaceHeading);
}
public void RightFace(GameNPC toon)
{
int FaceHeading = Convert.ToInt32(toon.Heading - 1024);
if (FaceHeading < 0)
{
FaceHeading += 4096;
}
toon.Heading = Convert.ToUInt16(FaceHeading);
}
public void AboutFace(GameNPC toon)
{
int FaceHeading = Convert.ToInt32(toon.Heading + 2048);
if (FaceHeading > 4096)
{
FaceHeading -= 4096;
}
toon.Heading = Convert.ToUInt16(FaceHeading);
}
//243
public void MobRightFace()
{
if (commanderMob != null)
{
AboutFace(commanderMob);
commanderMob.Yell("Right-Face!");
for (int i = 0; i < cMOBS; i++)
{
try
{
RightFace(mob[i]);
mob[i].BroadcastUpdate();
}
catch
{
}
}
}
}
public void MobForwardMarch()
{
if (commanderMob != null)
{
commanderMob.Yell("Forward-March!");
for (int i = 0; i < cMOBS; i++)
{
try
{
mob[i].Walk(100);
mob[i].BroadcastUpdate();
}
catch
{
}
}
LeftFace(commanderMob);
commanderMob.Walk(100);
commanderMob.BroadcastUpdate();
}
}
public void MobHalt()
{
if (commanderMob != null)
{
commanderMob.Yell("Company!");
commanderMob.Yell("Halt!");
for (int i = 0; i < cMOBS; i++)
{
try
{
mob[i].StopMoving();
mob[i].BroadcastUpdate();
}
catch
{
}
}
commanderMob.StopMoving();
RightFace(commanderMob);
commanderMob.Yell("Left-Face!");
MobLeftFace();
}
}
public void MobHaltCharge()
{
if (commanderMob != null)
{
commanderMob.Yell("Company!");
commanderMob.Yell("Halt!");
for (int i = 0; i < cMOBS; i++)
{
try
{
mob[i].StopMoving();
mob[i].BroadcastUpdate();
}
catch
{
}
}
commanderMob.StopMoving();
}
}
public void MobLeftFace()
{
if (commanderMob != null)
{
commanderMob.Yell("Right-Face!");
for (int i = 0; i < cMOBS; i++)
{
try
{
LeftFace(mob[i]);
mob[i].BroadcastUpdate();
}
catch
{
}
}
AboutFace(commanderMob);
}
}
public void MobCharge()
{
if (commanderMob != null)
{
commanderMob.Yell("Charge!");
for (int i = 0; i < cMOBS; i++)
{
mob[i].Walk((short)mob[i].MaxSpeed);
}
commanderMob.Walk((short)commanderMob.MaxSpeed);
}
}
public void MobFallIn()
{
int BasePosX;
int BasePosY;
int MobPosX = 0;
int MobPosY = 0;
int MobNumber;
double MidPoint = (cCOLS / 2) - .5;
if (commanderMob != null)
{
int FormationHeading = commanderMob.Heading + 2048;
if (FormationHeading >= 4096)
{
FormationHeading -= 4096;
}
commanderMob.Yell("Company!");
commanderMob.Yell("Fall-In!");
for (int i = 0; i < cROWS; i++)
{
BasePosX = Convert.ToInt16(commanderMob.X + Math.Sin(0.00153398078856 * commanderMob.Heading) * (150 + (50 * i)));
BasePosY = Convert.ToInt16(commanderMob.Y - Math.Cos(0.00153398078856 * commanderMob.Heading) * (150 + (50 * i)));
for (int j = 0; j < cCOLS; j++)
{
// Instantiate mob
MobNumber = Convert.ToUInt16(((i * cCOLS) + j + 1) - 1);
// Build the mob position
if (j > MidPoint)
{
FormationHeading += 1024;
if (FormationHeading >= 4096)
{
FormationHeading = FormationHeading - 4096;
}
MobPosX = Convert.ToInt16(BasePosX - Math.Sin(0.00153398078856 * FormationHeading) * ((j - MidPoint) * 50));
MobPosY = Convert.ToInt16(BasePosY + Math.Cos(0.00153398078856 * FormationHeading) * ((j - MidPoint) * 50));
FormationHeading -= 1024;
if (FormationHeading < 0)
{
FormationHeading = FormationHeading + 4096;
}
}
if (j < MidPoint)
{
FormationHeading -= 1024;
if (FormationHeading < 0)
{
FormationHeading = FormationHeading + 4096;
}
MobPosX = Convert.ToInt16(BasePosX - Math.Sin(0.00153398078856 * FormationHeading) * ((MidPoint - j) * 50));
MobPosY = Convert.ToInt16(BasePosY + Math.Cos(0.00153398078856 * FormationHeading) * ((MidPoint - j) * 50));
FormationHeading += 1024;
if (FormationHeading >= 4096)
{
FormationHeading = FormationHeading - 4096;
}
}
if (j == MidPoint)
{
MobPosX = BasePosX;
MobPosY = BasePosY;
}
mob[MobNumber].WalkTo(MobPosX, MobPosY, commanderMob.Z, mob[MobNumber].MaxSpeed);
mob[MobNumber].Heading = Convert.ToUInt16(commanderMob.Heading);
mob[MobNumber].BroadcastUpdate();
mob[MobNumber].Heading = Convert.ToUInt16(commanderMob.Heading);
mob[MobNumber].BroadcastUpdate();
}
}
commanderMob.Yell("Attention!");
}
}
public int OnCommand(GameClient client, string[] args)
{
if (args.Length != 1)
{
client.Out.SendMessage("'/undead summons the undead summoner", eChatType.CT_System, eChatLoc.CL_SystemWindow);
return 1;
}
UndeadSummonerNPC m_npc = new UndeadSummonerNPC();
m_npc.UndeadCH = this;
m_npc.X = client.Player.X;
m_npc.Y = client.Player.Y;
m_npc.Z = client.Player.Z;
m_npc.AddToWorld();
client.Out.SendMessage("Mob created: OID=" + m_npc.ObjectID + " at: " + m_npc.X + " " + m_npc.Y, eChatType.CT_System, eChatLoc.CL_SystemWindow);
return 1;
} // End command /undead
public void SummonHorde(UndeadSummonerNPC HordeMaster)
{
Random m_rnd;
m_rnd = new Random();
string theType = "DOL.GS.GameNPC";
int Rows = cROWS;
int Cols = cCOLS;
int MobNumber = 0;
mob = new GameNPC[cMOBS];
int BasePosX = Convert.ToInt16(HordeMaster.X + Math.Sin(0.00153398078856 * HordeMaster.Heading) * 150);
int BasePosY = Convert.ToInt16(HordeMaster.Y - Math.Cos(0.00153398078856 * HordeMaster.Heading) * 150);
int BaseHeading = 1;
int FormationHeading = 1;
int MobPosX = 1;
int MobPosY = 1;
double MidPoint = (Cols / 2) - .5;
if (HordeMaster.Heading >= 2048)
{
BaseHeading = Convert.ToInt16(HordeMaster.Heading - 2048);
}
else
{
BaseHeading = Convert.ToInt16(HordeMaster.Heading + 2048);
}
//****************************************************
// Create Leader Mob
//****************************************************
commanderMob = new UndeadCommanderNPC();
commanderMob.UndeadCH = this;
//Fill the object variables
commanderMob.X = BasePosX;
commanderMob.Y = BasePosY;
commanderMob.Z = HordeMaster.Z;
commanderMob.CurrentRegion = HordeMaster.CurrentRegion;
commanderMob.Heading = (ushort)BaseHeading;
commanderMob.Level = 1;
commanderMob.Realm = 0;
commanderMob.Name = "Horde Commander";
commanderMob.Model = 106;
//Fill the living variables
commanderMob.CurrentSpeed = 0;
//commanderMob.MaxSpeed = 200;
commanderMob.GuildName = "Undead Horde";
commanderMob.Size = 60;
commanderMob.AddToWorld();
AboutFace(commanderMob);
//****************************************************
// Create Follower Mobs
//****************************************************
BaseHeading = HordeMaster.Heading;
FormationHeading = BaseHeading;
for (double i = 0; i < Rows; i++)
{
BasePosX = Convert.ToInt16(HordeMaster.X + Math.Sin(0.00153398078856 * HordeMaster.Heading) * (300 + (50 * i)));
BasePosY = Convert.ToInt16(HordeMaster.Y - Math.Cos(0.00153398078856 * HordeMaster.Heading) * (300 + (50 * i)));
for (double j = 0; j < Cols; j++)
{
// Instantiate mob
Console.Write("MobNumber: " + MobNumber, false);
Console.Write("/ti: " + i + " j: " + j + " cROWS: " + cROWS + " Calc: " + (((i * cROWS) + j + 1) - 1), false);
MobNumber = Convert.ToInt16(((i * cCOLS) + j + 1) - 1);
try
{
mob[MobNumber] = new GameNPC();
// Build the mob position
if (j > MidPoint)
{
FormationHeading += 1024;
if (FormationHeading >= 4096)
{
FormationHeading = FormationHeading - 4096;
}
MobPosX = Convert.ToInt16(BasePosX - Math.Sin(0.00153398078856 * FormationHeading) * ((j - MidPoint) * 50));
MobPosY = Convert.ToInt16(BasePosY + Math.Cos(0.00153398078856 * FormationHeading) * ((j - MidPoint) * 50));
FormationHeading -= 1024;
if (FormationHeading < 0)
{
FormationHeading = FormationHeading + 4096;
}
}
if (j < MidPoint)
{
FormationHeading -= 1024;
if (FormationHeading < 0)
{
FormationHeading = FormationHeading + 4096;
}
MobPosX = Convert.ToInt16(BasePosX - Math.Sin(0.00153398078856 * FormationHeading) * ((MidPoint - j) * 50));
MobPosY = Convert.ToInt16(BasePosY + Math.Cos(0.00153398078856 * FormationHeading) * ((MidPoint - j) * 50));
FormationHeading += 1024;
if (FormationHeading >= 4096)
{
FormationHeading = FormationHeading - 4096;
}
}
if (j == MidPoint)
{
MobPosX = BasePosX;
MobPosY = BasePosY;
}
mob[MobNumber].X = MobPosX;
mob[MobNumber].Y = MobPosY;
mob[MobNumber].Z = HordeMaster.Z;
mob[MobNumber].CurrentRegion = HordeMaster.CurrentRegion;
mob[MobNumber].Heading = Convert.ToUInt16(BaseHeading);
mob[MobNumber].Level = 1;
mob[MobNumber].Realm = 0;
mob[MobNumber].Name = "Hordie " + MobNumber;
mob[MobNumber].Model = 108;
//Fill the living variables
mob[MobNumber].CurrentSpeed = 0;
//mob[MobNumber].MaxSpeed = Convert.ToByte(180 + m_rnd.Next(40));
mob[MobNumber].GuildName = "Undead Horde";
mob[MobNumber].Size = Convert.ToByte(48 + m_rnd.Next(7));
mob[MobNumber].AddToWorld();
//mob[MobNumber].SaveIntoDatabase();
}
catch
{
Console.Write("Horde Mob [" + MobNumber + "]:", false);
}
}
}
Console.Write("\tHorde Summoned:", true);
} // End SummonHorde
public void BannishHorde()
{
if (commanderMob != null)
{
try
{
commanderMob.DeleteFromDatabase();
commanderMob.Delete();
commanderMob = null;
Console.Write("Horde Commander deleted:", true);
}
catch (Exception e)
{
Console.Write("Horde Commander deleted:", false);
Console.Write("\t" + e.Message, false);
}
}
for (int i = 0; i < cMOBS; i++)
{
//Thread.Sleep(100);
if (mob[i] != null)
{
try
{
mob[i].DeleteFromDatabase();
mob[i].Delete();
mob[i] = null;
Console.Write("Horde Mob[" + i + "] deleted:", true);
}
catch
{
Console.Write("Horde Mob[" + i + "] deleted:", false);
}
}
else
{
Console.Write("Horde Mob[" + i + "] Is already Null", false);
}
}
} // End BannishHorde
} // End UndeadCommandHelper class
} // End Namespace
Re: Old file needs updated.
PostPosted: Thu Nov 15, 2012 5:19 am
by Bones
sweet just got home. gonna test it out. Thanks for your efforts
Re: Old file needs updated.
PostPosted: Thu Nov 15, 2012 8:44 am
by Bones
Installed then compiled it. No errors compiled fine. Server started fine. typed /undead nothing.
So i made some adjustments i thought may help.
- Code: Select all
using System;
using DOL.GS.Commands;
using DOL.GS.PacketHandler;
namespace DOL.GS.Scripts
{
[CmdAttribute("&undead", //command to handle
ePrivLevel.GM, //minimum privilege level
"summons undead", //command description
"/undead - To summon the undead summoner")]
#region UndeadHandeler
public class UndeadCommandHandler : AbstractCommandHandler, ICommandHandler
{
const int cROWS = 4;
const int cCOLS = 16;
const int cMOBS = 64;
public GameNPC[] mob;
public UndeadCommanderNPC commanderMob;
// This is the summoner that /undead will summon
public class UndeadSummonerNPC : GameNPC
{
public UndeadCommandHandler UndeadCH;
public UndeadSummonerNPC()
: base()
{
//First, we set the position of this
//npc in the constructor. You can set
//the npc position, model etc. in the
//StartEvent() method too if you want.
Heading = 0x0;
Name = "Ostego";
GuildName = "Undead Horde";
Model = 107;
Size = 50;
Level = 10;
Realm = eRealm.Albion;
CurrentRegionID = 1;
}
#endregion UndeadHandeler
//This function is the callback function that is called when
//a player right clicks on the npc
#region Interact
public override bool Interact(GamePlayer player)
{
if (!base.Interact(player)) return false;
//Now we turn the npc into the direction of the person it is
//speaking to.
TurnTo(player.X, player.Y);
//We send a message to player and make it appear in a popup
//window. Text inside the [brackets] is clickable in popup
//windows and will generate a &whis text command!
player.Out.SendMessage(
"Hello " + player.Name + " shale I [summon] the Horde, or [banish] them back to hell?",
eChatType.CT_Say, eChatLoc.CL_PopupWindow);
return true;
}
//This function is the callback function that is called when
//someone whispers something to this mob!
public override bool WhisperReceive(GameLiving source, string str)
{
if (!base.WhisperReceive(source, str)) return false;
//If the source is no player, we return false
if (!(source is GamePlayer)) return false;
//We cast our source to a GamePlayer object
GamePlayer t = (GamePlayer)source;
//Now we turn the npc into the direction of the person it is
//speaking to.
TurnTo(t.X, t.Y);
//We test what the player whispered to the npc and
//send a reply. The Method SendReply used here is
//defined later in this class ... read on
switch (str)
{
case "summon":
SendReply(t, "Very well, Behold, the Undead Horde!");
UndeadCH.SummonHorde(this);
break;
case "banish":
SendReply(t, "Their purpose fullfilled, I shall return them to the grave!");
UndeadCH.BannishHorde();
break;
default: break;
}
return true;
}
//This function sends some text to a player and makes it appear
//in a popup window. We just define it here so we can use it in
//the WhisperToMe function instead of writing the long text
//everytime we want to send some reply!
private void SendReply(GamePlayer target, string msg)
{
target.Out.SendMessage(msg, eChatType.CT_Say, eChatLoc.CL_PopupWindow);
}
} // end undead summoner
#endregion Interact
// This is the commander that Ostego will summon to order the troops
public class UndeadCommanderNPC : GameNPC
{
public UndeadCommandHandler UndeadCH;
public UndeadCommanderNPC()
: base()
{
//First, we set the position of this
//npc in the constructor. You can set
//the npc position, model etc. in the
//StartEvent() method too if you want.
Heading = 0x0;
Name = "Undead Commander";
GuildName = "Undead Horde";
Model = 106;
Size = 60;
Level = 10;
Realm = eRealm.Albion;
CurrentRegionID = 1;
}
//This function is the callback function that is called when
//a player right clicks on the npc
public override bool Interact(GamePlayer player)
{
if (!base.Interact(player)) return false;
//Now we turn the npc into the direction of the person it is
//speaking to.
//TurnTo(player.X,player.Y);
//We send a message to player and make it appear in a popup
//window. Text inside the [brackets] is clickable in popup
//windows and will generate a &whis text command!
player.Out.SendMessage(
"Undead Commander Reporting, " + player.Name + ". What is your command? [Prepare to move] [move out] [halt] [halt charge] [formation] [charge] [align]",
eChatType.CT_Say, eChatLoc.CL_PopupWindow);
return true;
}
//This function is the callback function that is called when
//someone whispers something to this mob!
public override bool WhisperReceive(GameLiving source, string str)
{
if (!base.WhisperReceive(source, str)) return false;
//If the source is no player, we return false
if (!(source is GamePlayer)) return false;
//We cast our source to a GamePlayer object
GamePlayer t = (GamePlayer)source;
//We test what the player whispered to the npc and
//send a reply. The Method SendReply used here is
//defined later in this class ... read on
switch (str)
{
case "Prepare to move":
SendReply(t, "Aye Sir! We will make ready!");
UndeadCH.MobRightFace();
break;
case "move out":
SendReply(t, "Aye Sir! We March!!");
UndeadCH.MobForwardMarch();
break;
case "halt":
SendReply(t, "Aye Sir! We Hold!");
UndeadCH.MobHalt();
break;
case "halt charge":
SendReply(t, "Aye Sir! We Hold!");
UndeadCH.MobHaltCharge();
break;
case "formation":
SendReply(t, "Aye Sir!");
UndeadCH.MobFallIn();
break;
case "charge":
SendReply(t, "Aye Sir! None shall be left standing!");
// perform charge animation
UndeadCH.MobCharge();
break;
case "align":
SendReply(t, "Aye Sir! Forming Up on you.");
TurnTo(t.X, t.Y);
UndeadCH.MobFallIn();
break;
default: break;
}
return true;
}
//This function sends some text to a player and makes it appear
//in a popup window. We just define it here so we can use it in
//the WhisperToMe function instead of writing the long text
//everytime we want to send some reply!
private void SendReply(GamePlayer target, string msg)
{
target.Out.SendMessage(msg, eChatType.CT_Say, eChatLoc.CL_PopupWindow);
}
} // end undead commander
//200
public void LeftFace(GameNPC toon)
{
int FaceHeading = Convert.ToInt32(toon.Heading + 1024);
if (FaceHeading > 4096)
{
FaceHeading -= 4096;
}
toon.Heading = Convert.ToUInt16(FaceHeading);
}
public void RightFace(GameNPC toon)
{
int FaceHeading = Convert.ToInt32(toon.Heading - 1024);
if (FaceHeading < 0)
{
FaceHeading += 4096;
}
toon.Heading = Convert.ToUInt16(FaceHeading);
}
public void AboutFace(GameNPC toon)
{
int FaceHeading = Convert.ToInt32(toon.Heading + 2048);
if (FaceHeading > 4096)
{
FaceHeading -= 4096;
}
toon.Heading = Convert.ToUInt16(FaceHeading);
}
//243
public void MobRightFace()
{
if (commanderMob != null)
{
AboutFace(commanderMob);
commanderMob.Yell("Right-Face!");
for (int i = 0; i < cMOBS; i++)
{
try
{
RightFace(mob[i]);
mob[i].BroadcastUpdate();
}
catch
{
}
}
}
}
public void MobForwardMarch()
{
if (commanderMob != null)
{
commanderMob.Yell("Forward-March!");
for (int i = 0; i < cMOBS; i++)
{
try
{
mob[i].Walk(100);
mob[i].BroadcastUpdate();
}
catch
{
}
}
LeftFace(commanderMob);
commanderMob.Walk(100);
commanderMob.BroadcastUpdate();
}
}
public void MobHalt()
{
if (commanderMob != null)
{
commanderMob.Yell("Company!");
commanderMob.Yell("Halt!");
for (int i = 0; i < cMOBS; i++)
{
try
{
mob[i].StopMoving();
mob[i].BroadcastUpdate();
}
catch
{
}
}
commanderMob.StopMoving();
RightFace(commanderMob);
commanderMob.Yell("Left-Face!");
MobLeftFace();
}
}
public void MobHaltCharge()
{
if (commanderMob != null)
{
commanderMob.Yell("Company!");
commanderMob.Yell("Halt!");
for (int i = 0; i < cMOBS; i++)
{
try
{
mob[i].StopMoving();
mob[i].BroadcastUpdate();
}
catch
{
}
}
commanderMob.StopMoving();
}
}
public void MobLeftFace()
{
if (commanderMob != null)
{
commanderMob.Yell("Right-Face!");
for (int i = 0; i < cMOBS; i++)
{
try
{
LeftFace(mob[i]);
mob[i].BroadcastUpdate();
}
catch
{
}
}
AboutFace(commanderMob);
}
}
public void MobCharge()
{
if (commanderMob != null)
{
commanderMob.Yell("Charge!");
for (int i = 0; i < cMOBS; i++)
{
mob[i].Walk((short)mob[i].MaxSpeed);
}
commanderMob.Walk((short)commanderMob.MaxSpeed);
}
}
public void MobFallIn()
{
int BasePosX;
int BasePosY;
int MobPosX = 0;
int MobPosY = 0;
int MobNumber;
double MidPoint = (cCOLS / 2) - .5;
if (commanderMob != null)
{
int FormationHeading = commanderMob.Heading + 2048;
if (FormationHeading >= 4096)
{
FormationHeading -= 4096;
}
commanderMob.Yell("Company!");
commanderMob.Yell("Fall-In!");
for (int i = 0; i < cROWS; i++)
{
BasePosX = Convert.ToInt16(commanderMob.X + Math.Sin(0.00153398078856 * commanderMob.Heading) * (150 + (50 * i)));
BasePosY = Convert.ToInt16(commanderMob.Y - Math.Cos(0.00153398078856 * commanderMob.Heading) * (150 + (50 * i)));
for (int j = 0; j < cCOLS; j++)
{
// Instantiate mob
MobNumber = Convert.ToUInt16(((i * cCOLS) + j + 1) - 1);
// Build the mob position
if (j > MidPoint)
{
FormationHeading += 1024;
if (FormationHeading >= 4096)
{
FormationHeading = FormationHeading - 4096;
}
MobPosX = Convert.ToInt16(BasePosX - Math.Sin(0.00153398078856 * FormationHeading) * ((j - MidPoint) * 50));
MobPosY = Convert.ToInt16(BasePosY + Math.Cos(0.00153398078856 * FormationHeading) * ((j - MidPoint) * 50));
FormationHeading -= 1024;
if (FormationHeading < 0)
{
FormationHeading = FormationHeading + 4096;
}
}
if (j < MidPoint)
{
FormationHeading -= 1024;
if (FormationHeading < 0)
{
FormationHeading = FormationHeading + 4096;
}
MobPosX = Convert.ToInt16(BasePosX - Math.Sin(0.00153398078856 * FormationHeading) * ((MidPoint - j) * 50));
MobPosY = Convert.ToInt16(BasePosY + Math.Cos(0.00153398078856 * FormationHeading) * ((MidPoint - j) * 50));
FormationHeading += 1024;
if (FormationHeading >= 4096)
{
FormationHeading = FormationHeading - 4096;
}
}
if (j == MidPoint)
{
MobPosX = BasePosX;
MobPosY = BasePosY;
}
mob[MobNumber].WalkTo(MobPosX, MobPosY, commanderMob.Z, mob[MobNumber].MaxSpeed);
mob[MobNumber].Heading = Convert.ToUInt16(commanderMob.Heading);
mob[MobNumber].BroadcastUpdate();
mob[MobNumber].Heading = Convert.ToUInt16(commanderMob.Heading);
mob[MobNumber].BroadcastUpdate();
}
}
commanderMob.Yell("Attention!");
}
}
#region OnCommand /undead
public int OnCommand(GameClient client, string[] args)
{
if (args.Length != 1)
{
client.Out.SendMessage("'/undead summons the undead summoner", eChatType.CT_System, eChatLoc.CL_SystemWindow);
return 1;
}
UndeadSummonerNPC m_npc = new UndeadSummonerNPC();
m_npc.UndeadCH = this;
m_npc.X = client.Player.X;
m_npc.Y = client.Player.Y;
m_npc.Z = client.Player.Z;
m_npc.AddToWorld();
client.Out.SendMessage("Mob created: OID=" + m_npc.ObjectID + " at: " + m_npc.X + " " + m_npc.Y, eChatType.CT_System, eChatLoc.CL_SystemWindow);
return 1;
} // End command /undead
#endregion OnCommand /undead
public void SummonHorde(UndeadSummonerNPC HordeMaster)
{
Random m_rnd;
m_rnd = new Random();
string theType = "DOL.GS.GameNPC";
int Rows = cROWS;
int Cols = cCOLS;
int MobNumber = 0;
mob = new GameNPC[cMOBS];
int BasePosX = Convert.ToInt16(HordeMaster.X + Math.Sin(0.00153398078856 * HordeMaster.Heading) * 150);
int BasePosY = Convert.ToInt16(HordeMaster.Y - Math.Cos(0.00153398078856 * HordeMaster.Heading) * 150);
int BaseHeading = 1;
int FormationHeading = 1;
int MobPosX = 1;
int MobPosY = 1;
double MidPoint = (Cols / 2) - .5;
if (HordeMaster.Heading >= 2048)
{
BaseHeading = Convert.ToInt16(HordeMaster.Heading - 2048);
}
else
{
BaseHeading = Convert.ToInt16(HordeMaster.Heading + 2048);
}
//****************************************************
// Create Leader Mob
//****************************************************
commanderMob = new UndeadCommanderNPC();
commanderMob.UndeadCH = this;
//Fill the object variables
commanderMob.X = BasePosX;
commanderMob.Y = BasePosY;
commanderMob.Z = HordeMaster.Z;
commanderMob.CurrentRegion = HordeMaster.CurrentRegion;
commanderMob.Heading = (ushort)BaseHeading;
commanderMob.Level = 1;
commanderMob.Realm = 0;
commanderMob.Name = "Horde Commander";
commanderMob.Model = 106;
//Fill the living variables
commanderMob.CurrentSpeed = 0;
//commanderMob.MaxSpeed = 200;
commanderMob.GuildName = "Undead Horde";
commanderMob.Size = 60;
commanderMob.AddToWorld();
AboutFace(commanderMob);
//****************************************************
// Create Follower Mobs
//****************************************************
BaseHeading = HordeMaster.Heading;
FormationHeading = BaseHeading;
for (double i = 0; i < Rows; i++)
{
BasePosX = Convert.ToInt16(HordeMaster.X + Math.Sin(0.00153398078856 * HordeMaster.Heading) * (300 + (50 * i)));
BasePosY = Convert.ToInt16(HordeMaster.Y - Math.Cos(0.00153398078856 * HordeMaster.Heading) * (300 + (50 * i)));
for (double j = 0; j < Cols; j++)
{
// Instantiate mob
Console.Write("MobNumber: " + MobNumber, false);
Console.Write("/ti: " + i + " j: " + j + " cROWS: " + cROWS + " Calc: " + (((i * cROWS) + j + 1) - 1), false);
MobNumber = Convert.ToInt16(((i * cCOLS) + j + 1) - 1);
try
{
mob[MobNumber] = new GameNPC();
// Build the mob position
if (j > MidPoint)
{
FormationHeading += 1024;
if (FormationHeading >= 4096)
{
FormationHeading = FormationHeading - 4096;
}
MobPosX = Convert.ToInt16(BasePosX - Math.Sin(0.00153398078856 * FormationHeading) * ((j - MidPoint) * 50));
MobPosY = Convert.ToInt16(BasePosY + Math.Cos(0.00153398078856 * FormationHeading) * ((j - MidPoint) * 50));
FormationHeading -= 1024;
if (FormationHeading < 0)
{
FormationHeading = FormationHeading + 4096;
}
}
if (j < MidPoint)
{
FormationHeading -= 1024;
if (FormationHeading < 0)
{
FormationHeading = FormationHeading + 4096;
}
MobPosX = Convert.ToInt16(BasePosX - Math.Sin(0.00153398078856 * FormationHeading) * ((MidPoint - j) * 50));
MobPosY = Convert.ToInt16(BasePosY + Math.Cos(0.00153398078856 * FormationHeading) * ((MidPoint - j) * 50));
FormationHeading += 1024;
if (FormationHeading >= 4096)
{
FormationHeading = FormationHeading - 4096;
}
}
if (j == MidPoint)
{
MobPosX = BasePosX;
MobPosY = BasePosY;
}
mob[MobNumber].X = MobPosX;
mob[MobNumber].Y = MobPosY;
mob[MobNumber].Z = HordeMaster.Z;
mob[MobNumber].CurrentRegion = HordeMaster.CurrentRegion;
mob[MobNumber].Heading = Convert.ToUInt16(BaseHeading);
mob[MobNumber].Level = 1;
mob[MobNumber].Realm = 0;
mob[MobNumber].Name = "Hordie " + MobNumber;
mob[MobNumber].Model = 108;
//Fill the living variables
mob[MobNumber].CurrentSpeed = 0;
//mob[MobNumber].MaxSpeed = Convert.ToByte(180 + m_rnd.Next(40));
mob[MobNumber].GuildName = "Undead Horde";
mob[MobNumber].Size = Convert.ToByte(48 + m_rnd.Next(7));
mob[MobNumber].AddToWorld();
//mob[MobNumber].SaveIntoDatabase();
}
catch
{
Console.Write("Horde Mob [" + MobNumber + "]:", false);
}
}
}
Console.Write("\tHorde Summoned:", true);
} // End SummonHorde
public void BannishHorde()
{
if (commanderMob != null)
{
try
{
commanderMob.DeleteFromDatabase();
commanderMob.Delete();
commanderMob = null;
Console.Write("Horde Commander deleted:", true);
}
catch (Exception e)
{
Console.Write("Horde Commander deleted:", false);
Console.Write("\t" + e.Message, false);
}
}
for (int i = 0; i < cMOBS; i++)
{
//Thread.Sleep(100);
if (mob[i] != null)
{
try
{
mob[i].DeleteFromDatabase();
mob[i].Delete();
mob[i] = null;
Console.Write("Horde Mob[" + i + "] deleted:", true);
}
catch
{
Console.Write("Horde Mob[" + i + "] deleted:", false);
}
}
else
{
Console.Write("Horde Mob[" + i + "] Is already Null", false);
}
}
} // End BannishHorde
void ICommandHandler.OnCommand(GameClient client, string[] args)
{
throw new NotImplementedException();
}
} // End UndeadCommandHelper class
} // End Namespace
Now it spits out this error
- Code: Select all
2012-11-15 02:32:47,614 - [3] - ERROR - DOL.GS.ScriptMgr - HandleCommand
System.NotImplementedException: The method or operation is not implemented.
at DOL.GS.Scripts.UndeadCommandHandler.DOL.GS.Commands.ICommandHandler.OnCommand(GameClient client, String[] args)
at DOL.GS.ScriptMgr.ExecuteCommand(GameClient client, GameCommand myCommand, String[] pars)
at DOL.GS.ScriptMgr.HandleCommand(GameClient client, String cmdLine)
Time for bed work on it later. But i did see a lot of the changes you made vs. the old give me ideas.
Re: Old file needs updated.
PostPosted: Thu Nov 15, 2012 9:35 am
by Graveen
You must update the method declaration to match the one described in ICommandHandler.
Technically, you must change:
public int OnCommand(
to:
public void OnCommand(
Re: Old file needs updated.
PostPosted: Fri Nov 16, 2012 7:42 am
by Bones
Woooo Hooooo got it working now. Took me a bit Wish i knew more c#.
Fully functional with "/undead" command. Thanks rj and graveen.
Here's the code:
- Code: Select all
/*
* Original script by ThatRickGuy 2004
* Reworked by rdsandersjr 2012
* tweaked by Bones to work with current svn 10/16/2012
* SVN Revision 3129
* Useage: ingame type /undead
* TODO: tweak the marching orders, formations, add player following capabilities
*/
using System;
using DOL.GS.Commands;
using DOL.GS.PacketHandler;
namespace DOL.GS.Commands
{
[CmdAttribute(
"&undead", //command to handle
ePrivLevel.GM, //minimum privelege level
"summons undead", //command description
"/undead - To summon the undead summoner")]
#region UndeadHandeler
public class UndeadCommandHandler : AbstractCommandHandler, ICommandHandler
{
const int cROWS = 4;
const int cCOLS = 16;
const int cMOBS = 64;
public GameNPC[] mob;
public UndeadCommanderNPC commanderMob;
// This is the summoner that /undead will summon
public class UndeadSummonerNPC : GameNPC
{
public UndeadCommandHandler UndeadCH;
public UndeadSummonerNPC()
: base()
{
//First, we set the position of this
//npc in the constructor. You can set
//the npc position, model etc. in the
//StartEvent() method too if you want.
Heading = 0x0;
Name = "Ostego";
GuildName = "Undead Horde";
Model = 107;
Size = 50;
Level = 10;
Realm = eRealm.None;
CurrentRegionID = CurrentRegionID;
}
#endregion UndeadHandeler
//This function is the callback function that is called when
//a player right clicks on the npc
#region Interact
public override bool Interact(GamePlayer player)
{
if (!base.Interact(player)) return false;
//Now we turn the npc into the direction of the person it is
//speaking to.
TurnTo(player.X, player.Y);
//We send a message to player and make it appear in a popup
//window. Text inside the [brackets] is clickable in popup
//windows and will generate a &whis text command!
player.Out.SendMessage(
"Hello " + player.Name + " shale I [summon] the Horde, or [banish] them back to hell?",
eChatType.CT_Say, eChatLoc.CL_PopupWindow);
return true;
}
//This function is the callback function that is called when
//someone whispers something to this mob!
public override bool WhisperReceive(GameLiving source, string str)
{
if (!base.WhisperReceive(source, str)) return false;
//If the source is no player, we return false
if (!(source is GamePlayer)) return false;
//We cast our source to a GamePlayer object
GamePlayer t = (GamePlayer)source;
//Now we turn the npc into the direction of the person it is
//speaking to.
TurnTo(t.X, t.Y);
//We test what the player whispered to the npc and
//send a reply. The Method SendReply used here is
//defined later in this class ... read on
switch (str)
{
case "summon":
SendReply(t, "Very well, Behold, the Undead Horde!");
UndeadCH.SummonHorde(this);
break;
case "banish":
SendReply(t, "Their purpose fullfilled, I shall return them to the grave!");
UndeadCH.BannishHorde();
break;
default: break;
}
return true;
}
//This function sends some text to a player and makes it appear
//in a popup window. We just define it here so we can use it in
//the WhisperToMe function instead of writing the long text
//everytime we want to send some reply!
private void SendReply(GamePlayer target, string msg)
{
target.Out.SendMessage(msg, eChatType.CT_Say, eChatLoc.CL_PopupWindow);
}
} // end undead summoner
#endregion Interact
// This is the commander that Ostego will summon to order the troops
public class UndeadCommanderNPC : GameNPC
{
public UndeadCommandHandler UndeadCH;
public UndeadCommanderNPC()
: base()
{
//First, we set the position of this
//npc in the constructor. You can set
//the npc position, model etc. in the
//StartEvent() method too if you want.
Heading = 0x0;
Name = "Undead Commander";
GuildName = "Undead Horde";
Model = 106;
Size = 60;
Level = 10;
Realm = eRealm.None;
CurrentRegionID = 1;
}
//This function is the callback function that is called when
//a player right clicks on the npc
public override bool Interact(GamePlayer player)
{
if (!base.Interact(player)) return false;
//Now we turn the npc into the direction of the person it is
//speaking to.
//TurnTo(player.X,player.Y);
//We send a message to player and make it appear in a popup
//window. Text inside the [brackets] is clickable in popup
//windows and will generate a &whis text command!
player.Out.SendMessage(
"Undead Commander Reporting, " + player.Name + ". What is your command? [Prepare to move] [move out] [halt] [halt charge] [formation] [charge] [align]",
eChatType.CT_Say, eChatLoc.CL_PopupWindow);
return true;
}
//This function is the callback function that is called when
//someone whispers something to this mob!
public override bool WhisperReceive(GameLiving source, string str)
{
if (!base.WhisperReceive(source, str)) return false;
//If the source is no player, we return false
if (!(source is GamePlayer)) return false;
//We cast our source to a GamePlayer object
GamePlayer t = (GamePlayer)source;
//We test what the player whispered to the npc and
//send a reply. The Method SendReply used here is
//defined later in this class ... read on
switch (str)
{
case "Prepare to move":
SendReply(t, "Aye Sir! We will make ready!");
UndeadCH.MobRightFace();
break;
case "move out":
SendReply(t, "Aye Sir! We March!!");
UndeadCH.MobForwardMarch();
break;
case "halt":
SendReply(t, "Aye Sir! We Hold!");
UndeadCH.MobHalt();
break;
case "halt charge":
SendReply(t, "Aye Sir! We Hold!");
UndeadCH.MobHaltCharge();
break;
case "formation":
SendReply(t, "Aye Sir!");
UndeadCH.MobFallIn();
break;
case "charge":
SendReply(t, "Aye Sir! None shall be left standing!");
// perform charge animation
UndeadCH.MobCharge();
break;
case "align":
SendReply(t, "Aye Sir! Forming Up on you.");
TurnTo(t.X, t.Y);
UndeadCH.MobFallIn();
break;
default: break;
}
return true;
}
//This function sends some text to a player and makes it appear
//in a popup window. We just define it here so we can use it in
//the WhisperToMe function instead of writing the long text
//everytime we want to send some reply!
private void SendReply(GamePlayer target, string msg)
{
target.Out.SendMessage(msg, eChatType.CT_Say, eChatLoc.CL_PopupWindow);
}
} // end undead commander
#region Marching Orders
public void LeftFace(GameNPC toon)
{
int FaceHeading = Convert.ToInt32(toon.Heading + 1024);
if (FaceHeading > 4096)
{
FaceHeading -= 4096;
}
toon.Heading = Convert.ToUInt16(FaceHeading);
}
public void RightFace(GameNPC toon)
{
int FaceHeading = Convert.ToInt32(toon.Heading - 1024);
if (FaceHeading < 0)
{
FaceHeading += 4096;
}
toon.Heading = Convert.ToUInt16(FaceHeading);
}
public void AboutFace(GameNPC toon)
{
int FaceHeading = Convert.ToInt32(toon.Heading + 2048);
if (FaceHeading > 4096)
{
FaceHeading -= 4096;
}
toon.Heading = Convert.ToUInt16(FaceHeading);
}
public void MobRightFace()
{
if (commanderMob != null)
{
AboutFace(commanderMob);
commanderMob.Yell("Right-Face!");
for (int i = 0; i < cMOBS; i++)
{
try
{
RightFace(mob[i]);
mob[i].BroadcastUpdate();
}
catch
{
}
}
}
}
public void MobForwardMarch()
{
if (commanderMob != null)
{
commanderMob.Yell("Forward-March!");
for (int i = 0; i < cMOBS; i++)
{
try
{
mob[i].Walk(100);
mob[i].BroadcastUpdate();
}
catch
{
}
}
LeftFace(commanderMob);
commanderMob.Walk(100);
commanderMob.BroadcastUpdate();
}
}
public void MobHalt()
{
if (commanderMob != null)
{
commanderMob.Yell("Company!");
commanderMob.Yell("Halt!");
for (int i = 0; i < cMOBS; i++)
{
try
{
mob[i].StopMoving();
mob[i].BroadcastUpdate();
}
catch
{
}
}
commanderMob.StopMoving();
RightFace(commanderMob);
commanderMob.Yell("Left-Face!");
MobLeftFace();
}
}
public void MobHaltCharge()
{
if (commanderMob != null)
{
commanderMob.Yell("Company!");
commanderMob.Yell("Halt!");
for (int i = 0; i < cMOBS; i++)
{
try
{
mob[i].StopMoving();
mob[i].BroadcastUpdate();
}
catch
{
}
}
commanderMob.StopMoving();
}
}
public void MobLeftFace()
{
if (commanderMob != null)
{
commanderMob.Yell("Right-Face!");
for (int i = 0; i < cMOBS; i++)
{
try
{
LeftFace(mob[i]);
mob[i].BroadcastUpdate();
}
catch
{
}
}
AboutFace(commanderMob);
}
}
public void MobCharge()
{
if (commanderMob != null)
{
commanderMob.Yell("Charge!");
for (int i = 0; i < cMOBS; i++)
{
mob[i].Walk((short)mob[i].MaxSpeed);
}
commanderMob.Walk((short)commanderMob.MaxSpeed);
}
}
public void MobFallIn()
{
int BasePosX;
int BasePosY;
int MobPosX = 0;
int MobPosY = 0;
int MobNumber;
double MidPoint = (cCOLS / 2) - .5;
if (commanderMob != null)
{
int FormationHeading = commanderMob.Heading + 2048;
if (FormationHeading >= 4096)
{
FormationHeading -= 4096;
}
commanderMob.Yell("Company!");
commanderMob.Yell("Fall-In!");
for (int i = 0; i < cROWS; i++)
{
BasePosX = Convert.ToInt32(commanderMob.X + Math.Sin(0.00153398078856 * commanderMob.Heading) * (150 + (50 * i)));
BasePosY = Convert.ToInt32(commanderMob.Y - Math.Cos(0.00153398078856 * commanderMob.Heading) * (150 + (50 * i)));
for (int j = 0; j < cCOLS; j++)
{
// Instantiate mob
MobNumber = Convert.ToUInt16(((i * cCOLS) + j + 1) - 1);
// Build the mob position
if (j > MidPoint)
{
FormationHeading += 1024;
if (FormationHeading >= 4096)
{
FormationHeading = FormationHeading - 4096;
}
MobPosX = Convert.ToInt32(BasePosX - Math.Sin(0.00153398078856 * FormationHeading) * ((j - MidPoint) * 50));
MobPosY = Convert.ToInt32(BasePosY + Math.Cos(0.00153398078856 * FormationHeading) * ((j - MidPoint) * 50));
FormationHeading -= 1024;
if (FormationHeading < 0)
{
FormationHeading = FormationHeading + 4096;
}
}
if (j < MidPoint)
{
FormationHeading -= 1024;
if (FormationHeading < 0)
{
FormationHeading = FormationHeading + 4096;
}
MobPosX = Convert.ToInt32(BasePosX - Math.Sin(0.00153398078856 * FormationHeading) * ((MidPoint - j) * 50));
MobPosY = Convert.ToInt32(BasePosY + Math.Cos(0.00153398078856 * FormationHeading) * ((MidPoint - j) * 50));
FormationHeading += 1024;
if (FormationHeading >= 4096)
{
FormationHeading = FormationHeading - 4096;
}
}
if (j == MidPoint)
{
MobPosX = BasePosX;
MobPosY = BasePosY;
}
mob[MobNumber].WalkTo(MobPosX, MobPosY, commanderMob.Z, mob[MobNumber].MaxSpeed);
mob[MobNumber].Heading = Convert.ToUInt16(commanderMob.Heading);
mob[MobNumber].BroadcastUpdate();
mob[MobNumber].Heading = Convert.ToUInt16(commanderMob.Heading);
mob[MobNumber].BroadcastUpdate();
}
}
commanderMob.Yell("Attention!");
}
}
#endregion MArching Orders
#region OnCommand /undead
public void OnCommand(GameClient client, string[] args)
{
if (args.Length < 1)
{
client.Out.SendMessage("/undead - To summon the undead summoner", eChatType.CT_System, eChatLoc.CL_SystemWindow);
return;
}
UndeadSummonerNPC m_npc = new UndeadSummonerNPC();
m_npc.UndeadCH = this;
m_npc.SetOwnBrain(new AI.Brain.BlankBrain());
m_npc.X = client.Player.X;
m_npc.Y = client.Player.Y;
m_npc.Z = client.Player.Z;
m_npc.Heading = (ushort)((client.Player.Heading + 2048) % 4096);
m_npc.CurrentRegion = client.Player.CurrentRegion;
m_npc.AddToWorld();
client.Out.SendMessage("Mob created: OID=" + m_npc.ObjectID + " at: " + m_npc.X + " " + m_npc.Y, eChatType.CT_System, eChatLoc.CL_SystemWindow);
return;
} // End command /undead
#endregion OnCommand /undead
public void SummonHorde(UndeadSummonerNPC HordeMaster)
{
Random m_rnd;
m_rnd = new Random();
string theType = "DOL.GS.GameNPC";
int Rows = cROWS;
int Cols = cCOLS;
int MobNumber = 0;
mob = new GameNPC[cMOBS];
int BasePosX = Convert.ToInt32(HordeMaster.X + Math.Sin(0.00153398078856 * HordeMaster.Heading) * 150);
int BasePosY = Convert.ToInt32(HordeMaster.Y - Math.Cos(0.00153398078856 * HordeMaster.Heading) * 150);
int BaseHeading = 1;
int FormationHeading = 1;
int MobPosX = 1;
int MobPosY = 1;
double MidPoint = (Cols / 2) - .5;
if (HordeMaster.Heading >= 2048)
{
BaseHeading = Convert.ToInt32(HordeMaster.Heading - 2048);
}
else
{
BaseHeading = Convert.ToInt32(HordeMaster.Heading + 2048);
}
//****************************************************
// Create Leader Mob
//****************************************************
commanderMob = new UndeadCommanderNPC();
commanderMob.UndeadCH = this;
//Fill the object variables
commanderMob.X = BasePosX;
commanderMob.Y = BasePosY;
commanderMob.Z = HordeMaster.Z;
commanderMob.CurrentRegion = HordeMaster.CurrentRegion;
commanderMob.Heading = (ushort)BaseHeading;
commanderMob.Level = 1;
commanderMob.Realm = 0;
commanderMob.Name = "Horde Commander";
commanderMob.Model = 106;
//Fill the living variables
commanderMob.CurrentSpeed = 0;
//commanderMob.MaxSpeed = 200;
commanderMob.GuildName = "Undead Horde";
commanderMob.Size = 60;
commanderMob.AddToWorld();
AboutFace(commanderMob);
//****************************************************
// Create Follower Mobs
//****************************************************
BaseHeading = HordeMaster.Heading;
FormationHeading = BaseHeading;
for (double i = 0; i < Rows; i++)
{
BasePosX = Convert.ToInt32(HordeMaster.X + Math.Sin(0.00153398078856 * HordeMaster.Heading) * (300 + (50 * i)));
BasePosY = Convert.ToInt32(HordeMaster.Y - Math.Cos(0.00153398078856 * HordeMaster.Heading) * (300 + (50 * i)));
for (double j = 0; j < Cols; j++)
{
// Initiate mob
Console.Write("MobNumber: " + MobNumber, false);
Console.Write("/ti: " + i + " j: " + j + " cROWS: " + cROWS + " Calc: " + (((i * cROWS) + j + 1) - 1), false);
MobNumber = Convert.ToInt32(((i * cCOLS) + j + 1) - 1);
try
{
mob[MobNumber] = new GameNPC();
// Build the mob position
if (j > MidPoint)
{
FormationHeading += 1024;
if (FormationHeading >= 4096)
{
FormationHeading = FormationHeading - 4096;
}
MobPosX = Convert.ToInt32(BasePosX - Math.Sin(0.00153398078856 * FormationHeading) * ((j - MidPoint) * 50));
MobPosY = Convert.ToInt32(BasePosY + Math.Cos(0.00153398078856 * FormationHeading) * ((j - MidPoint) * 50));
FormationHeading -= 1024;
if (FormationHeading < 0)
{
FormationHeading = FormationHeading + 4096;
}
}
if (j < MidPoint)
{
FormationHeading -= 1024;
if (FormationHeading < 0)
{
FormationHeading = FormationHeading + 4096;
}
MobPosX = Convert.ToInt32(BasePosX - Math.Sin(0.00153398078856 * FormationHeading) * ((MidPoint - j) * 50));
MobPosY = Convert.ToInt32(BasePosY + Math.Cos(0.00153398078856 * FormationHeading) * ((MidPoint - j) * 50));
FormationHeading += 1024;
if (FormationHeading >= 4096)
{
FormationHeading = FormationHeading - 4096;
}
}
if (j == MidPoint)
{
MobPosX = BasePosX;
MobPosY = BasePosY;
}
mob[MobNumber].X = MobPosX;
mob[MobNumber].Y = MobPosY;
mob[MobNumber].Z = HordeMaster.Z;
mob[MobNumber].CurrentRegion = HordeMaster.CurrentRegion;
mob[MobNumber].Heading = Convert.ToUInt16(BaseHeading);
mob[MobNumber].Level = 1;
mob[MobNumber].Realm = 0;
mob[MobNumber].Name = "Hordie " + MobNumber;
mob[MobNumber].Model = 108;
//Fill the living variables
mob[MobNumber].CurrentSpeed = 0;
//mob[MobNumber].MaxSpeed = Convert.ToByte(180 + m_rnd.Next(40));
mob[MobNumber].GuildName = "Undead Horde";
mob[MobNumber].Size = Convert.ToByte(48 + m_rnd.Next(7));
mob[MobNumber].AddToWorld();
mob[MobNumber].SaveIntoDatabase();
}
catch
{
Console.Write("Horde Mob [" + MobNumber + "]:", false);
}
}
}
Console.Write("\tHorde Summoned:", true);
} // End SummonHorde
public void BannishHorde()
{
if (commanderMob != null)
{
try
{
commanderMob.DeleteFromDatabase();
commanderMob.Delete();
commanderMob = null;
Console.Write("Horde Commander deleted:", true);
}
catch (Exception e)
{
Console.Write("Horde Commander deleted:", false);
Console.Write("\t" + e.Message, false);
}
}
for (int i = 0; i < cMOBS; i++)
{
//Thread.Sleep(100);
if (mob[i] != null)
{
try
{
mob[i].DeleteFromDatabase();
mob[i].Delete();
mob[i] = null;
Console.Write("Horde Mob[" + i + "] deleted:", true);
}
catch
{
Console.Write("Horde Mob[" + i + "] deleted:", false);
}
}
else
{
Console.Write("Horde Mob[" + i + "] Is already Null", false);
}
}
} // End BannishHorde
} // End UndeadCommandHelper class
} // End Namespace
Here's the File:
Re: Old file needs updated.
PostPosted: Fri Nov 16, 2012 9:38 am
by Graveen
Thanks a lot Bones.
Can you quickly describe what it does ?
/bow !
Re: Old file needs updated.
PostPosted: Fri Nov 16, 2012 10:29 am
by Bones
as GM type /undead
It summons Ostego.
Talk to him he summons the horde or banishes them.
When you choose summon he summon 1 Horde commander and 64 minions.
You talk to the Horde commander through whispers or command panel making the army march around.
With some tweaking i see the possibilities of having the Horde commander having a brain that is able to shout commands by himself without interaction from the user. Which is beyond my capabilities at the moment.
Re: [Solved] Old file needs updated.
PostPosted: Sat Nov 17, 2012 9:53 am
by Graveen
Interesting.
To be honest, i wonder if such a thing isn't interesting in GSS. But it is largely dependant on how it is coded.
I'll throw an eye, and eventually commit
Re: [Solved] Old file needs updated.
PostPosted: Sat Nov 17, 2012 11:37 am
by Bones
One more thought I had you might consider as you look through it. The math used for the spacing might be manipulated by arguments in the command line to space them out more or less. Not sure yet how to do it myself, will look at it tomorrow.
I.E. (/undead x y) (/undead 50 150) is the default. x is the column spacing and y is the spacing between rows.