Go Back   EQEmulator Home > EQEmulator Forums > Development > Development::Bots

Development::Bots Forum for bots.

Closed Thread
 
Thread Tools Display Modes
  #691  
Old 08-21-2008, 03:39 PM
Angelox
AX Classic Developer
 
Join Date: May 2006
Location: filler
Posts: 2,049
Default

Quote:
Originally Posted by hayward6 View Post
The last half of that sentence read like this blahblahblahblah sorry, i'm just at the beginning stages of understanding code and compiling it. I'll wait for a release. Thank you very much for your help.
I have mine up and running with the bots, all you have to do is download and play But is all custom and uses my custom database.
You're welcome to it all.
  #692  
Old 08-21-2008, 06:47 PM
hayward6
Forum Guide
 
Join Date: Jul 2005
Posts: 468
Default

Quote:
Originally Posted by Angelox View Post
I have mine up and running with the bots, all you have to do is download and play But is all custom and uses my custom database.
You're welcome to it all.
I followed your database quite a while back, but when I recently started over it just seemed easier to jump to PEQ... I remember you had many special components that worked together to make spawns rare and more live like. I especialy loved your work on Yekesha and I stayed with every update back then

I downloaded everything, maybe ill give it a go
__________________
Sayin Silverwolf
Server Op of The Sandbox (Non-Legit)
  #693  
Old 08-21-2008, 08:03 PM
Congdar
Developer
 
Join Date: Jul 2007
Location: my own little world
Posts: 751
Default

The next Everquest Live expansion due out Oct. 21 2008 "Seeds of Destruction" will have BOTS!

Quote:
Mercenaries - Player controlled NPCs are now available! These role archetypes will scale to the appropriate level and will think and act for themselves with limited player guidance. Designed for extra support or extra muscle in PvE encounters, mercenary archetypes include a variety of classes from all playable races. There are some rare non playable races to recruit as well!
  #694  
Old 08-21-2008, 08:24 PM
Angelox
AX Classic Developer
 
Join Date: May 2006
Location: filler
Posts: 2,049
Default

Quote:
Originally Posted by Congdar View Post
The next Everquest Live expansion due out Oct. 21 2008 "Seeds of Destruction" will have BOTS!
I wonder where they got that idea from ?
  #695  
Old 08-21-2008, 09:09 PM
Angelox
AX Classic Developer
 
Join Date: May 2006
Location: filler
Posts: 2,049
Default

Quote:
Originally Posted by Ikeren View Post
Actually, it seems to me that the problem is because the Warrior won't taunt undead mobs. Admittedly I've only tested that in Veksar, but the warrior spams taunting messages when we kill live mobs, but as soon as we start doing dead ones, no taunt messages.
That's correct, warrior does not taunt undead
But this will fix the Warrior Bot to taunt undead;
In special_attacks.cpp at around line 1010;
Code:
#ifdef EQBOTS

    //franck-add: EQoffline. Warrior bots must taunt the target.
	if(IsBot() && (GetClass() == WARRIOR) && target->IsNPC() && (target->GetBodyType() && BT_Undead) && taunt_time) {
        this->Say("Taunting %s", target->GetCleanName());
		Taunt(target->CastToNPC(), false);
	}
	
#endif //EQBOTS
What's in red is what was changed (used to be !=).
  #696  
Old 08-22-2008, 08:59 AM
Congdar
Developer
 
Join Date: Jul 2007
Location: my own little world
Posts: 751
Default

Quote:
Originally Posted by Angelox View Post
That's correct, warrior does not taunt undead
I've already fixed this, it will be in my next release when I'm done with the new spell lists.
  #697  
Old 08-22-2008, 10:04 AM
Angelox
AX Classic Developer
 
Join Date: May 2006
Location: filler
Posts: 2,049
Default

Quote:
Originally Posted by Congdar View Post
I've already fixed this, it will be in my next release when I'm done with the new spell lists.
You're posting releases? thats nice - where are they posted at?
  #698  
Old 08-22-2008, 10:37 AM
Congdar
Developer
 
Join Date: Jul 2007
Location: my own little world
Posts: 751
Default

I've been posting releases in this thread since emu build 1090, but since this thread has grown too large it's a pain to read every post so it's easy to miss. There's a new release thread set up now in this section of the forums, but I haven't made a release in it yet.

I've been working on new spell lists for each class and it is a tedious and long process(I think you made the npc lists so probably know this) so during that time some other people have made a release or two with some of the code submissions that were not in the emu build at the time. I only have Beastlord, Bard and Ranger spell lists left to do and once done maybe a bit of tweaking and debugging before I make a new release with the latest emu source. I have 1127 now but it has a group bug in it that is supposedly fixedin 1128 but that download doesn't seem to be available.
  #699  
Old 08-26-2008, 04:38 PM
nosfentora
Discordant
 
Join Date: Oct 2004
Location: In a house
Posts: 377
Default

I may have missed this among the 47+ pages of posts, but i was curios to know if there was a way to spawn bots and group them with 1 or 2 macro buttons. so far i have all bots spawning with 1 button, then i have to target each one and group them, backing up and moving forward between each add so that i could target the next bot. kind of a pain when you zone and the bots go bye bye.

maybe like a #bot group add <id> or #bot group add <name>?
  #700  
Old 08-26-2008, 07:24 PM
Congdar
Developer
 
Join Date: Jul 2007
Location: my own little world
Posts: 751
Default

I've used up about 8 pages in the socials buttons for macro's using the bots. There's a place for the name of the macro and five lines you can use for your bot commands. Here's an example I use for adding a Necromancer Bot to my group:
Code:
Page10Button2Name=NecBot
Page10Button2Color=0
Page10Button2Line1=#bot spawn 2700013
Page10Button2Line2=/pause 3
Page10Button2Line3=/target Necromancer000
Page10Button2Line4=/pause 3
Page10Button2Line5=#bot group add
I copied this from the [Socials] section of my <charactername>_<servershortname>.ini file (Condar_Realm.ini)
The /pause 's are needed to give time for the game to spawn the bot and for targeting lag.
Don't forget the three zero's Necromancer000 at the end of the name, because if you ever have to resummon bots to reform a group after a battle, you will target the pet instead and that macro wont work. I've never looked too deeply at why the 000's are part of the bot names, but they are.

For the second group of bots you create you will need to form a raid. The first two macro's for the second group are used to create the raid and add the first two bots:
Code:
Page2Button1Name=MakeRaid
Page2Button1Color=0
Page2Button1Line1=#bot raid create
Page2Button1Line2=/pause 2
Page2Button1Line3=#bot spawn 2700197
Page2Button1Line4=/pause 2
Page2Button1Line5=/target WarriorTwo
Page2Button2Name=RdGrp2-2
Page2Button2Color=0
Page2Button2Line1=#bot raid group create
Page2Button2Line2=#bot spawn 2700191
Page2Button2Line3=/pause 3
Page2Button2Line4=/target NecromancerTwo000
Page2Button2Line5=#bot raid invite bot WarriorTwo000
There are some other macro's i've made for raid targets. Some bosses get ENRAGED ability so I use this:
Code:
Page7Button9Name=RdGrp2-2
Page7Button9Color=0
Page7Button9Line1=#bot raid order task enraged
This stops all bots attacking (the ones that continue to get whacked will retaliate). To make them start attacking after the enraged attack, you must make them follow you as a leader again using(this works for the whole bot raid):
Code:
Page9Button4Name=BotFolw
Page9Button4Color=0
Page9Button4Line1=#bot group order follow
For encounters with multiple targets there's a way to make "offtank" groups attack a different target than the main target. Just select the new target and use:
Code:
Page7Button9Name=OffTank
Page7Button9Color=0
Page7Button9Line1=#bot raid order task attack WarriorFive000
The bot command structure needs to be refined, here #bot offtank WarriorFive00 would be sufficient.
This will peel WarriorFive's group from the main assault and they will attack your new target.

I'm including my entire Bot summoning, grouping, raiding and general stuff to make it easier if you don't have a problem editing the [Socials] section of your INI file. The Names and ID's you will need to edit to your information but the command structure is the same. These commands inlcude the max number of bots in a raid commands (71 + You = 72 Max):
Code:
[Socials]
Page2Button1Name=MakeRaid
Page2Button1Color=0
Page2Button1Line1=#bot raid create
Page2Button1Line2=/pause 2
Page2Button1Line3=#bot spawn 2700197
Page2Button1Line4=/pause 2
Page2Button1Line5=/target WarriorTwo
Page2Button2Name=RdGrp2-2
Page2Button2Color=0
Page2Button2Line1=#bot raid group create
Page2Button2Line2=#bot spawn 2700191
Page2Button2Line3=/pause 3
Page2Button2Line4=/target NecromancerTwo000
Page2Button2Line5=#bot raid invite bot WarriorTwo000
Page2Button3Name=RdGrp2-3
Page2Button3Color=0
Page2Button3Line1=#bot spawn 2700194
Page2Button3Line2=/pause 2
Page2Button3Line3=/target WizardTwo000
Page2Button3Line4=/pause 2
Page2Button3Line5=#bot raid invite bot WarriorTwo000
Page2Button4Name=RdGrp2-4
Page2Button4Color=0
Page2Button4Line1=#bot spawn 2700206
Page2Button4Line2=/pause 2
Page2Button4Line3=/target DruidTwo000
Page2Button4Line4=/pause 2
Page2Button4Line5=#bot raid invite bot WarriorTwo000
Page2Button5Name=RdGrp2-5
Page2Button5Color=0
Page2Button5Line1=#bot spawn 2700212
Page2Button5Line2=/pause 2
Page2Button5Line3=/target PaladinTwo
Page2Button5Line4=/pause 2
Page2Button5Line5=#bot raid invite bot WarriorTwo000
Page2Button6Name=RdGrp2-6
Page2Button6Color=0
Page2Button6Line1=#bot spawn 2700200
Page2Button6Line2=/pause 2
Page2Button6Line3=/target ClericTwo
Page2Button6Line4=/pause 2
Page2Button6Line5=#bot raid invite bot WarriorTwo000
Page2Button7Name=RdGrp3
Page2Button7Color=0
Page2Button7Line1=#bot spawn 2700198
Page2Button7Line2=/pause 2
Page2Button7Line3=/target WarriorThree
Page2Button7Line4=/pause 2
Page2Button7Line5=#bot raid group create
Page2Button8Name=RdGrp3-2
Page2Button8Color=0
Page2Button8Line1=#bot spawn 2700192
Page2Button8Line2=/pause 2
Page2Button8Line3=/target NecromancerThree000
Page2Button8Line4=/pause 2
Page2Button8Line5=#bot raid invite bot WarriorThree000
Page2Button9Name=RdGrp3-3
Page2Button9Color=0
Page2Button9Line1=#bot spawn 2700195
Page2Button9Line2=/pause 2
Page2Button9Line3=/target WizardThree
Page2Button9Line4=/pause 2
Page2Button9Line5=#bot raid invite bot WarriorThree000
Page2Button10Name=RdGrp3-4
Page2Button10Color=0
Page2Button10Line1=#bot spawn 2700207
Page2Button10Line2=/pause 2
Page2Button10Line3=/target DruidThree
Page2Button10Line4=/pause 2
Page2Button10Line5=#bot raid invite bot WarriorThree000
Page2Button11Name=RdGrp3-5
Page2Button11Color=0
Page2Button11Line1=#bot spawn 2700213
Page2Button11Line2=/pause 2
Page2Button11Line3=/target PaladinThree
Page2Button11Line4=/pause 2
Page2Button11Line5=#bot raid invite bot WarriorThree000
Page2Button12Name=RdGrp3-6
Page2Button12Color=0
Page2Button12Line1=#bot spawn 2700201
Page2Button12Line2=/pause 2
Page2Button12Line3=/target ClericThree
Page2Button12Line4=/pause 2
Page2Button12Line5=#bot raid invite bot WarriorThree000
Page3Button1Name=RdGrp4
Page3Button1Color=0
Page3Button1Line1=#bot spawn 2700199
Page3Button1Line2=/pause 2
Page3Button1Line3=/target WarriorFour
Page3Button1Line4=/pause 2
Page3Button1Line5=#bot raid group create
Page3Button2Name=RdGrp4-2
Page3Button2Color=0
Page3Button2Line1=#bot spawn 2700193
Page3Button2Line2=/pause 2
Page3Button2Line3=/target NecromancerFour000
Page3Button2Line4=/pause 2
Page3Button2Line5=#bot raid invite bot WarriorFour000
Page3Button3Name=RdGrp4-3
Page3Button3Color=0
Page3Button3Line1=#bot spawn 2700196
Page3Button3Line2=/pause 2
Page3Button3Line3=/target WizardFour
Page3Button3Line4=/pause 2
Page3Button3Line5=#bot raid invite bot WarriorFour000
Page3Button4Name=RdGrp4-4
Page3Button4Color=0
Page3Button4Line1=#bot spawn 2700208
Page3Button4Line2=/pause 2
Page3Button4Line3=/target DruidFour
Page3Button4Line4=/pause 2
Page3Button4Line5=#bot raid invite bot WarriorFour000
Page3Button5Name=RdGrp4-5
Page3Button5Color=0
Page3Button5Line1=#bot spawn 2700214
Page3Button5Line2=/pause 2
Page3Button5Line3=/target PaladinFour
Page3Button5Line4=/pause 2
Page3Button5Line5=#bot raid invite bot WarriorFour000
Page3Button6Name=RdGrp4-6
Page3Button6Color=0
Page3Button6Line1=#bot spawn 2700202
Page3Button6Line2=/pause 2
Page3Button6Line3=/target ClericFour
Page3Button6Line4=/pause 2
Page3Button6Line5=#bot raid invite bot WarriorFour000
Page3Button7Name=RdGrp5
Page3Button7Color=0
Page3Button7Line1=#bot spawn 2700824
Page3Button7Line2=/pause 2
Page3Button7Line3=/target WarriorFive
Page3Button7Line4=/pause 2
Page3Button7Line5=#bot raid group create
Page3Button8Name=RdGrp5-2
Page3Button8Color=0
Page3Button8Line1=#bot spawn 2700826
Page3Button8Line2=/pause 2
Page3Button8Line3=/target NecromancerFive
Page3Button8Line4=/pause 2
Page3Button8Line5=#bot raid invite bot WarriorFive000
Page3Button9Name=RdGrp5-3
Page3Button9Color=0
Page3Button9Line1=#bot spawn 2700825
Page3Button9Line2=/pause 2
Page3Button9Line3=/target WizardFive
Page3Button9Line4=/pause 2
Page3Button9Line5=#bot raid invite bot WarriorFive000
Page3Button10Name=RdGrp5-4
Page3Button10Color=0
Page3Button10Line1=#bot spawn 2700828
Page3Button10Line2=/pause 2
Page3Button10Line3=/target DruidFive
Page3Button10Line4=/pause 2
Page3Button10Line5=#bot raid invite bot WarriorFive000
Page3Button11Name=RdGrp5-5
Page3Button11Color=0
Page3Button11Line1=#bot spawn 2700827
Page3Button11Line2=/pause 2
Page3Button11Line3=/target PaladinFive
Page3Button11Line4=/pause 2
Page3Button11Line5=#bot raid invite bot WarriorFive000
Page3Button12Name=RdGrp5-6
Page3Button12Color=0
Page3Button12Line1=#bot spawn 2700818
Page3Button12Line2=/pause 2
Page3Button12Line3=/target ClericFive
Page3Button12Line4=/pause 2
Page3Button12Line5=#bot raid invite bot WarriorFive000
Page4Button1Name=RdGrp6
Page4Button1Color=0
Page4Button1Line1=#bot spawn 2700834
Page4Button1Line2=/pause 2
Page4Button1Line3=/target BeastlordSixOne
Page4Button1Line4=/pause 2
Page4Button1Line5=#bot raid group create
Page4Button2Name=RdGrp6-2
Page4Button2Color=0
Page4Button2Line1=#bot spawn 2700835
Page4Button2Line2=/pause 2
Page4Button2Line3=/target BeastlordSixTwo
Page4Button2Line4=/pause 2
Page4Button2Line5=#bot raid invite bot BeastlordSixOne000
Page4Button3Name=RdGrp6-3
Page4Button3Color=0
Page4Button3Line1=#bot spawn 2700836
Page4Button3Line2=/pause 2
Page4Button3Line3=/target BeastlordSixThree
Page4Button3Line4=/pause 2
Page4Button3Line5=#bot raid invite bot BeastlordSixOne000
Page4Button4Name=RdGrp6-4
Page4Button4Color=0
Page4Button4Line1=#bot spawn 2700837
Page4Button4Line2=/pause 2
Page4Button4Line3=/target BeastlordSixFour
Page4Button4Line4=/pause 2
Page4Button4Line5=#bot raid invite bot BeastlordSixOne000
Page4Button5Name=RdGrp6-5
Page4Button5Color=0
Page4Button5Line1=#bot spawn 2700829
Page4Button5Line2=/pause 2
Page4Button5Line3=/target ShamanSix
Page4Button5Line4=/pause 2
Page4Button5Line5=#bot raid invite bot BeastlordSixOne000
Page4Button6Name=RdGrp6-6
Page4Button6Color=0
Page4Button6Line1=#bot spawn 2700819
Page4Button6Line2=/pause 2
Page4Button6Line3=/target ClericSix
Page4Button6Line4=/pause 2
Page4Button6Line5=#bot raid invite bot BeastlordSixOne000
Page4Button7Name=RdGrp7
Page4Button7Color=0
Page4Button7Line1=#bot spawn 2700838
Page4Button7Line2=/pause 2
Page4Button7Line3=/target MonkSevenOne
Page4Button7Line4=/pause 2
Page4Button7Line5=#bot raid group create
Page4Button8Name=RdGrp7-2
Page4Button8Color=0
Page4Button8Line1=#bot spawn 2700839
Page4Button8Line2=/pause 2
Page4Button8Line3=/target MonkSevenTwo
Page4Button8Line4=/pause 2
Page4Button8Line5=#bot raid invite bot MonkSevenOne000
Page4Button9Name=RdGrp7-3
Page4Button9Color=0
Page4Button9Line1=#bot spawn 2700840
Page4Button9Line2=/pause 2
Page4Button9Line3=/target MonkSevenThree
Page4Button9Line4=/pause 2
Page4Button9Line5=#bot raid invite bot MonkSevenOne000
Page4Button10Name=RdGrp7-4
Page4Button10Color=0
Page4Button10Line1=#bot spawn 2700841
Page4Button10Line2=/pause 2
Page4Button10Line3=/target MonkSevenFour
Page4Button10Line4=/pause 2
Page4Button10Line5=#bot raid invite bot MonkSevenOne000
Page4Button11Name=RdGrp7-5
Page4Button11Color=0
Page4Button11Line1=#bot spawn 2700830
Page4Button11Line2=/pause 2
Page4Button11Line3=/target ShamanSeven000
Page4Button11Line4=/pause 2
Page4Button11Line5=#bot raid invite bot MonkSevenOne000
Page4Button12Name=RdGrp7-6
Page4Button12Color=0
Page4Button12Line1=#bot spawn 2700820
Page4Button12Line2=/pause 2
Page4Button12Line3=/target ClericSeven
Page4Button12Line4=/pause 2
Page4Button12Line5=#bot raid invite bot MonkSevenOne000
Page5Button1Name=RdGrp8
Page5Button1Color=0
Page5Button1Line1=#bot spawn 2700842
Page5Button1Line2=/pause 2
Page5Button1Line3=/target MagicianEightOne
Page5Button1Line4=/pause 2
Page5Button1Line5=#bot raid group create
Page5Button2Name=RdGrp8-2
Page5Button2Color=0
Page5Button2Line1=#bot spawn 2700843
Page5Button2Line2=/pause 2
Page5Button2Line3=/target MagicianEightTwo000
Page5Button2Line4=/pause 2
Page5Button2Line5=#bot raid invite bot MagicianEightOne000
Page5Button3Name=RdGrp8-3
Page5Button3Color=0
Page5Button3Line1=#bot spawn 2700844
Page5Button3Line2=/pause 2
Page5Button3Line3=/target MagicianEightThree000
Page5Button3Line4=/pause 2
Page5Button3Line5=#bot raid invite bot MagicianEightOne000
Page5Button4Name=RdGrp8-4
Page5Button4Color=0
Page5Button4Line1=#bot spawn 2700845
Page5Button4Line2=/pause 2
Page5Button4Line3=/target MagicianEightFour000
Page5Button4Line4=/pause 2
Page5Button4Line5=#bot raid invite bot MagicianEightOne000
Page5Button5Name=RdGrp8-5
Page5Button5Color=0
Page5Button5Line1=#bot spawn 2700831
Page5Button5Line2=/pause 2
Page5Button5Line3=/target ShamanEight000
Page5Button5Line4=/pause 2
Page5Button5Line5=#bot raid invite bot MagicianEightOne000
Page5Button6Name=RdGrp8-6
Page5Button6Color=0
Page5Button6Line1=#bot spawn 2700821
Page5Button6Line2=/pause 2
Page5Button6Line3=/target ClericEight
Page5Button6Line4=/pause 2
Page5Button6Line5=#bot raid invite bot MagicianEightOne000
Page5Button7Name=RdGrp9
Page5Button7Color=0
Page5Button7Line1=#bot spawn 2700846
Page5Button7Line2=/pause 2
Page5Button7Line3=/target BerserkerNineOne
Page5Button7Line4=/pause 2
Page5Button7Line5=#bot raid group create
Page5Button8Name=RdGrp9-2
Page5Button8Color=0
Page5Button8Line1=#bot spawn 2700847
Page5Button8Line2=/pause 2
Page5Button8Line3=/target BerserkerNineTwo
Page5Button8Line4=/pause 2
Page5Button8Line5=#bot raid invite bot BerserkerNineOne000
Page5Button9Name=RdGrp9-3
Page5Button9Color=0
Page5Button9Line1=#bot spawn 2700848
Page5Button9Line2=/pause 2
Page5Button9Line3=/target BerserkerNineThree
Page5Button9Line4=/pause 2
Page5Button9Line5=#bot raid invite bot BerserkerNineOne000
Page5Button10Name=RdGrp9-4
Page5Button10Color=0
Page5Button10Line1=#bot spawn 2700849
Page5Button10Line2=/pause 2
Page5Button10Line3=/target BerserkerNineFour
Page5Button10Line4=/pause 2
Page5Button10Line5=#bot raid invite bot BerserkerNineOne000
Page5Button11Name=RdGrp9-5
Page5Button11Color=0
Page5Button11Line1=#bot spawn 2700832
Page5Button11Line2=/pause 2
Page5Button11Line3=/target ShamanNine
Page5Button11Line4=/pause 2
Page5Button11Line5=#bot raid invite bot BerserkerNineOne000
Page5Button12Name=RdGrp9-6
Page5Button12Color=0
Page5Button12Line1=#bot spawn 2700822
Page5Button12Line2=/pause 2
Page5Button12Line3=/target ClericNine
Page5Button12Line4=/pause 2
Page5Button12Line5=#bot raid invite bot BerserkerNineOne000
Page6Button1Name=RdGp10
Page6Button1Color=0
Page6Button1Line1=#bot spawn 2700850
Page6Button1Line2=/pause 2
Page6Button1Line3=/target ShadowknightTenOne
Page6Button1Line4=/pause 2
Page6Button1Line5=#bot raid group create
Page6Button2Name=RdGp10-2
Page6Button2Color=0
Page6Button2Line1=#bot spawn 2700851
Page6Button2Line2=/pause 2
Page6Button2Line3=/target ShadowknightTenTwo000
Page6Button2Line4=/pause 2
Page6Button2Line5=#bot raid invite bot ShadowknightTenOne000
Page6Button3Name=RdGp10-3
Page6Button3Color=0
Page6Button3Line1=#bot spawn 2700852
Page6Button3Line2=/pause 2
Page6Button3Line3=/target ShadowknightTenThree000
Page6Button3Line4=/pause 2
Page6Button3Line5=#bot raid invite bot ShadowknightTenOne000
Page6Button4Name=RdGp10-4
Page6Button4Color=0
Page6Button4Line1=#bot spawn 2700853
Page6Button4Line2=/pause 2
Page6Button4Line3=/target ShadowknightTenFour000
Page6Button4Line4=/pause 2
Page6Button4Line5=#bot raid invite bot ShadowknightTenOne000
Page6Button5Name=RdGp10-5
Page6Button5Color=0
Page6Button5Line1=#bot spawn 2700833
Page6Button5Line2=/pause 2
Page6Button5Line3=/target ShamanTen
Page6Button5Line4=/pause 2
Page6Button5Line5=#bot raid invite bot ShadowknightTenOne000
Page6Button6Name=RdGp10-6
Page6Button6Color=0
Page6Button6Line1=#bot spawn 2700823
Page6Button6Line2=/pause 2
Page6Button6Line3=/target ClericTen
Page6Button6Line4=/pause 2
Page6Button6Line5=#bot raid invite bot ShadowknightTenOne000
Page6Button7Name=RdGp11
Page6Button7Color=0
Page6Button7Line1=#bot spawn 2700854
Page6Button7Line2=/pause 2
Page6Button7Line3=/target RogueElevenOne
Page6Button7Line4=/pause 2
Page6Button7Line5=#bot raid group create
Page6Button8Name=RdGp11-2
Page6Button8Color=0
Page6Button8Line1=#bot spawn 2700855
Page6Button8Line2=/pause 2
Page6Button8Line3=/target RogueElevenTwo
Page6Button8Line4=/pause 2
Page6Button8Line5=#bot raid invite bot RogueElevenOne000
Page6Button9Name=RdGp11-3
Page6Button9Color=0
Page6Button9Line1=#bot spawn 2700856
Page6Button9Line2=/pause 2
Page6Button9Line3=/target RogueElevenThree
Page6Button9Line4=/pause 2
Page6Button9Line5=#bot raid invite bot RogueElevenOne000
Page6Button10Name=RdGp11-4
Page6Button10Color=0
Page6Button10Line1=#bot spawn 2700857
Page6Button10Line2=/pause 2
Page6Button10Line3=/target RogueElevenFour
Page6Button10Line4=/pause 2
Page6Button10Line5=#bot raid invite bot RogueElevenOne000
Page6Button11Name=RdGp11-5
Page6Button11Color=0
Page6Button11Line1=#bot spawn 2700859
Page6Button11Line2=/pause 2
Page6Button11Line3=/target ShamanEleven
Page6Button11Line4=/pause 2
Page6Button11Line5=#bot raid invite bot RogueElevenOne000
Page6Button12Name=RdGp11-6
Page6Button12Color=0
Page6Button12Line1=#bot spawn 2700861
Page6Button12Line2=/pause 2
Page6Button12Line3=/target ClericEleven
Page6Button12Line4=/pause 2
Page6Button12Line5=#bot raid invite bot RogueElevenOne000
Page7Button1Name=Rdgp12
Page7Button1Color=0
Page7Button1Line1=#bot spawn 2700863
Page7Button1Line2=/pause 2
Page7Button1Line3=/target MonkTwelve
Page7Button1Line4=/pause 2
Page7Button1Line5=#bot raid group create
Page7Button2Name=Rdgp12-2
Page7Button2Color=0
Page7Button2Line1=#bot spawn 2700858
Page7Button2Line2=/pause 2
Page7Button2Line3=/target RogueTwelve
Page7Button2Line4=/pause 2
Page7Button2Line5=#bot raid invite bot MonkTwelve000
Page7Button3Name=Rdgp12-3
Page7Button3Color=0
Page7Button3Line1=#bot spawn 2700864
Page7Button3Line2=/pause 2
Page7Button3Line3=/target NecromancerTwelve000
Page7Button3Line4=/pause 2
Page7Button3Line5=#bot raid invite bot MonkTwelve000
Page7Button4Name=Rdgp12-4
Page7Button4Color=0
Page7Button4Line1=#bot spawn 2700865
Page7Button4Line2=/pause 2
Page7Button4Line3=/target BeserkerTwelve
Page7Button4Line4=/pause 2
Page7Button4Line5=#bot raid invite bot MonkTwelve000
Page7Button5Name=Rdgp12-5
Page7Button5Color=0
Page7Button5Line1=#bot spawn 2700860
Page7Button5Line2=/pause 2
Page7Button5Line3=/target ShamanTwelve000
Page7Button5Line4=/pause 2
Page7Button5Line5=#bot raid invite bot MonkTwelve000
Page7Button6Name=Rdgp12-6
Page7Button6Color=0
Page7Button6Line1=#bot spawn 2700862
Page7Button6Line2=/pause 2
Page7Button6Line3=/target ClericTwelve
Page7Button6Line4=/pause 2
Page7Button6Line5=#bot raid invite bot MonkTwelve000
Page7Button9Name=OffTank
Page7Button9Color=0
Page7Button9Line1=#bot raid order task attack WarriorFive000
Page8Button2Name=MainTank
Page8Button2Color=0
Page8Button2Line3=#bot raid order maintank
Page8Button3Name=RaidInfo
Page8Button3Color=0
Page8Button3Line1=#bot raid info
Page8Button5Name=2ndTank
Page8Button5Color=0
Page8Button5Line1=/target WarriorThree
Page9Button1Name=BotKill
Page9Button1Color=0
Page9Button1Line1=#bot group remove
Page9Button2Name=BotGard
Page9Button2Color=0
Page9Button2Line1=#bot group order guard
Page9Button4Name=BotFolw
Page9Button4Color=0
Page9Button4Line1=#bot group order follow
Page9Button5Name=BotUpdt
Page9Button5Color=0
Page9Button5Line1=#bot update
Page9Button6Name=BotSmn
Page9Button6Color=0
Page9Button6Line1=#bot group summon
Page9Button9Name=PaldinBt
Page9Button9Color=0
Page9Button9Line1=#bot spawn 2700027
Page9Button9Line2=/pause 2
Page9Button9Line3=/target Paladin000
Page9Button9Line4=/pause 2
Page9Button9Line5=#bot group add
Page9Button10Name=ZerkBot
Page9Button10Color=0
Page9Button10Line1=#bot spawn 2700026
Page9Button10Line2=/pause 2
Page9Button10Line3=/target Berserker000
Page9Button10Line4=/pause 2
Page9Button10Line5=#bot group add
Page9Button11Name=BstBot
Page9Button11Color=0
Page9Button11Line1=#bot spawn 2700025
Page9Button11Line2=/pause 2
Page9Button11Line3=/target Beastlord000
Page9Button11Line4=/pause 2
Page9Button11Line5=#bot group add
Page9Button12Name=ChantrBt
Page9Button12Color=0
Page9Button12Line1=#bot spawn 2700024
Page9Button12Line2=/pause 2
Page9Button12Line3=/target Enchanter000
Page9Button12Line4=/pause 2
Page9Button12Line5=#bot group add
Page10Button1Name=MonkBot
Page10Button1Color=0
Page10Button1Line1=#bot spawn 2700012
Page10Button1Line2=/pause 2
Page10Button1Line3=/target Monk000
Page10Button1Line4=/pause 2
Page10Button1Line5=#bot group add
Page10Button2Name=NecBot
Page10Button2Color=0
Page10Button2Line1=#bot spawn 2700013
Page10Button2Line2=/pause 2
Page10Button2Line4=/pause 4
Page10Button2Line3=/target Necromancer000
Page10Button2Line5=#bot group add
Page10Button3Name=SKBot
Page10Button3Color=0
Page10Button3Line1=#bot spawn 2700014
Page10Button3Line2=/pause 2
Page10Button3Line3=/target Shadowknight000
Page10Button3Line4=/pause 2
Page10Button3Line5=#bot group add
Page10Button4Name=WizardBt
Page10Button4Color=0
Page10Button4Line1=#bot spawn 2700015
Page10Button4Line2=/pause 2
Page10Button4Line3=/target Wizard000
Page10Button4Line4=/pause 2
Page10Button4Line5=#bot group add
Page10Button5Name=MagBot
Page10Button5Color=0
Page10Button5Line1=#bot spawn 2700016
Page10Button5Line2=/pause 2
Page10Button5Line3=/target Magician000
Page10Button5Line4=/pause 2
Page10Button5Line5=#bot group add
Page10Button6Name=WarBot
Page10Button6Color=0
Page10Button6Line1=#bot spawn 2700017
Page10Button6Line2=/pause 2
Page10Button6Line3=/target Warrior000
Page10Button6Line4=/pause 2
Page10Button6Line5=#bot group add
Page10Button7Name=ShamBt
Page10Button7Color=0
Page10Button7Line1=#bot spawn 2700018
Page10Button7Line2=/pause 2
Page10Button7Line3=/target Shaman000
Page10Button7Line4=/pause 2
Page10Button7Line5=#bot group add
Page10Button8Name=RangrBt
Page10Button8Color=0
Page10Button8Line1=#bot spawn 2700019
Page10Button8Line2=/pause 2
Page10Button8Line3=/target Ranger000
Page10Button8Line4=/pause 2
Page10Button8Line5=#bot group add
Page10Button9Name=DruidBot
Page10Button9Color=0
Page10Button9Line1=#bot spawn 2700020
Page10Button9Line2=/pause 2
Page10Button9Line3=/target Druid000
Page10Button9Line4=/pause 2
Page10Button9Line5=#bot group add
Page10Button10Name=ClericBt
Page10Button10Color=0
Page10Button10Line1=#bot spawn 2700021
Page10Button10Line2=/pause 2
Page10Button10Line3=/target Cleric000
Page10Button10Line4=/pause 2
Page10Button10Line5=#bot group add
Page10Button11Name=BardBot
Page10Button11Color=0
Page10Button11Line1=#bot spawn 2700022
Page10Button11Line2=/pause 2
Page10Button11Line3=/target Bard000
Page10Button11Line4=/pause 2
Page10Button11Line5=#bot group add
Page10Button12Name=RogBot
Page10Button12Color=0
Page10Button12Line1=#bot spawn 2700023
Page10Button12Line2=/pause 2
Page10Button12Line3=/target Rogue000
Page10Button12Line4=/pause 2
Page10Button12Line5=#bot group add
Page8Button1Name=BotATK
Page8Button1Color=0
Page8Button1Line1=#bot group order attack
Page7Button9Line2=#bot raid order task attack BeastlordSixOne000
Page8Button7Name=Enraged
Page8Button7Color=0
Page8Button7Line1=#bot raid order task enraged
Page8Button2Line2=/target WarriorTwo
Page8Button5Line2=#bot raid order secondtank
Page9Button8Name=ShowEqip
Page9Button8Color=0
Page9Button8Line1=#bot inventory list
Page8Button7Line2=/attack off
  #701  
Old 08-27-2008, 08:34 AM
nosfentora
Discordant
 
Join Date: Oct 2004
Location: In a house
Posts: 377
Default

Dude that is AWESOME. Thanks!

and by the way - the Bots rock! Thanks for continuing this project!
  #702  
Old 08-27-2008, 01:32 PM
Ikeren
Hill Giant
 
Join Date: Aug 2008
Location: Canada
Posts: 131
Default

Quote:
ore I make a new release with the latest emu source. I have 1127 now but it has a group bug in it that is supposedly fixedin 1128 but that download doesn't seem to be available.
I don't suppose you'd be convinced to return to 1119 on your server until that happens?

Quote:
Mercenaries - Player controlled NPCs are now available!
Yeah, I saw that on another EQ forum I follow still. Made me laugh. They definitely won't be done in the same way, though.

Regarding hotkeys, I have:
Attack, Summon, Guard, GroupSpawn (spawns my group), invite, update, inventory. I invite the entire raid by hand, but I'm thinking about taking the time to do the full hotkeys. Make sure you include pauses, otherwise it will get butchered, fast (tried to do it without pauses on an alt, and the bit of lag screwed the hotkeys up big time).

But yeah, I love this stuff.
  #703  
Old 08-27-2008, 01:46 PM
Congdar
Developer
 
Join Date: Jul 2007
Location: my own little world
Posts: 751
Default

I will be downloading the fix direct from sourceforge since this website seems to be broken as far as build updates go. I only have the Beastlord spell list left to do and I'm still debugging the level 44 enchanter zone aggro issue. Before I start the beastlord spell list, I'll get the fixes to The Realm.
  #704  
Old 09-02-2008, 09:41 PM
Congdar
Developer
 
Join Date: Jul 2007
Location: my own little world
Posts: 751
Smile New Bots Release!

I've posted my latest bots release in the official release thread, check it out!
  #705  
Old 09-02-2008, 10:47 PM
cavedude's Avatar
cavedude
The PEQ Dude
 
Join Date: Apr 2003
Location: -
Posts: 1,988
Default

I merged the spells into PEQ.
Closed Thread


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

   

All times are GMT -4. The time now is 12:12 PM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3