Creating invations like old pb mobs?

mazz

Dedicated Member
Dedicated Member
Aug 6, 2008
193
2
45
Id like to use this in my server im not sure where to put the code or if there is somewhere in sql to do it?

I know ive done this before using sql 2000 but now im running sql 2005 express, I could of sworen there was a tbl for it
 
Last edited:

GOMEEE

LOMCN Veteran
Veteran
Mar 5, 2009
259
0
42
if your talking about the mass amounts of mobs walking half way accross PB and hanging around timestone and the entrances to PB town, its all done by robot and mission commands afaik.
 
Upvote 0

ρяєα¢нєя

Unstookie Titled
VIP
Aug 19, 2008
444
23
85
Got them here:

Envir->Robot_def->AutoRunRobot.txt:
Code:
;PastBichon Invasion Scripts
#AutoRun NPC SEC 21600 @Invasion1
#AutoRun NPC SEC 21600 @Invasion2
#AutoRun NPC SEC 21600 @Invasion3

Envir->Robot_def->RobotManage.txt:
Code:
[@Invasion1]
#if
#act
MISSION 6 145 185
PARAM1 243
PARAM2 257
PARAM3 4
PARAM4 0
MOBPLACE OrcBladeMaster
MOBPLACE AxeOma
MOBPLACE OrcBowMaster
SENDMSG 0 'There.has.been.an.invasion.at.Past.Bichon!'

[@Invasion2]
#if
#act
MISSION 6 157 358
PARAM1 69
PARAM2 249
PARAM3 4
PARAM4 0
MOBPLACE OrcBladeMaster
MOBPLACE AerialOrcMutant
MOBPLACE OrcBowMaster
;SENDMSG 0 'There.has.been.an.invasion.at.Past.Bichon!'

[@Invasion3]
#if
#act
MISSION 6 69 249
PARAM1 154
PARAM2 363
PARAM3 4
PARAM4 0
MOBPLACE OrcBladeMaster
MOBPLACE AerialOrcMutant
MOBPLACE OrcBowMaster
;SENDMSG 0 'There.has.been.an.invasion.at.Past.Bichon!'

You'll have to change the mob names as those are from Meteora, but you get the idea.

p
 
Upvote 0

IceMan

Hero's Act Mir 2
Legendary
Apr 17, 2003
8,544
2
375
330
#AutoRun NPC RUNONDAY 17:13

for reboot def trying to find the setting for it
 
Upvote 0

samhag

Dedicated Member
Dedicated Member
Jul 31, 2008
213
0
42
@ Preacher
PARAM1 69
PARAM2 249
PARAM3 4
PARAM4 0

what this exactly do ? and for what are them?

IIRC
X co-ord of spawn point
Y co-ord of spawn point
Number of mobs
Range from spawn point
 
Upvote 0

mazz

Dedicated Member
Dedicated Member
Aug 6, 2008
193
2
45
;PastBichon Invasion Scripts
; Calling the Sub routines
#AutoRun NPC SEC 21600 @Invasion1 ;The first sub called [@Invasion1] anything under it will be ran
#AutoRun NPC SEC 21600 @Invasion2 ;Same thing here [@Invasion2]
#AutoRun NPC SEC 21600 @Invasion3 ; And here [@Invasion3]



[@Invasion1] ; Run when called from above text
#IF
#act
MISSION 6 145 185 ; Where the mobs spawn Map# X Y
PARAM1 243 ;not sure about this just yet ill have to mess with it but i assume it's where the mobs move
PARAM2 257
PARAM3 4
PARAM4 0
MOBPLACE OrcBladeMaster ;Mob to spawn
MOBPLACE AxeOma
MOBPLACE OrcBowMaster
SENDMSG 0 'There.has.been.an.invasion.at.Past.Bichon!'

[@Invasion2]
#if
#act
MISSION 6 157 358
PARAM1 69
PARAM2 249
PARAM3 4
PARAM4 0
MOBPLACE OrcBladeMaster
MOBPLACE AerialOrcMutant
MOBPLACE OrcBowMaster
;SENDMSG 0 'There.has.been.an.invasion.at.Past.Bichon!'

[@Invasion3]
#if
#act
MISSION 6 69 249
PARAM1 154
PARAM2 363
PARAM3 4
PARAM4 0
MOBPLACE OrcBladeMaster
MOBPLACE AerialOrcMutant
MOBPLACE OrcBowMaster
;SENDMSG 0 'There.has.been.an.invasion.at.Past.Bichon!'




I dont know ive found this for the param
PARAM1 <Mapnumber>
PARAM2 <X-coord>
PARAM3 <Y-coord>
PARAM4 <MOB AMOUNT>

PLACEMOB Mob name here


Also change the robot.txt In your envir folder ;ϵͳ¿ØÖÆ AutoRunRobot to ϵͳ¿ØÖÆ AutoRunRobot
its commented keeps it from running
 
Last edited:
Upvote 0

Spoon666

LOMCN Veteran
Veteran
Feb 12, 2005
292
0
43
South West Wales
how do u work this invasion

Read the thread mate pfft


ρяєα¢нєя;671526 said:
Got them here:

Envir->Robot_def->AutoRunRobot.txt:
Code:
;PastBichon Invasion Scripts
#AutoRun NPC SEC 21600 @Invasion1
#AutoRun NPC SEC 21600 @Invasion2
#AutoRun NPC SEC 21600 @Invasion3

Envir->Robot_def->RobotManage.txt:
Code:
[@Invasion1]
#if
#act
MISSION 6 145 185
PARAM1 243
PARAM2 257
PARAM3 4
PARAM4 0
MOBPLACE OrcBladeMaster
MOBPLACE AxeOma
MOBPLACE OrcBowMaster
SENDMSG 0 'There.has.been.an.invasion.at.Past.Bichon!'
 
[@Invasion2]
#if
#act
MISSION 6 157 358
PARAM1 69
PARAM2 249
PARAM3 4
PARAM4 0
MOBPLACE OrcBladeMaster
MOBPLACE AerialOrcMutant
MOBPLACE OrcBowMaster
;SENDMSG 0 'There.has.been.an.invasion.at.Past.Bichon!'
 
[@Invasion3]
#if
#act
MISSION 6 69 249
PARAM1 154
PARAM2 363
PARAM3 4
PARAM4 0
MOBPLACE OrcBladeMaster
MOBPLACE AerialOrcMutant
MOBPLACE OrcBowMaster
;SENDMSG 0 'There.has.been.an.invasion.at.Past.Bichon!'

You'll have to change the mob names as those are from Meteora, but you get the idea.

p



Also in \mirserver\mir200\Robot.txt you need to have :-

System AutoRunRobot

for it to call the above scripts
 
Upvote 0