Request 00default

smoochy boys on tour

taifun

Dedicated Member
Dedicated Member
Jan 7, 2012
461
11
44
Romania
Hello guys i know that i can spawn mobs from mongen etc..but how can i respawn mobs (still automatically) from 00default?

I can put

[@Spawns] or is other command for ?
 
Last edited:

idaBigA

Holley Mir 3!!
VIP
Oct 28, 2003
1,966
110
310
Stoke, UK
That is 2 questions in 1 really. If you want to spawn mobs, the command is

MonGenP "D001,150,150,140" Pig 1

MonGenP "MAP,X,Y,RADIUS" Mob Qty

The automatically part is best done using an NPC, not 00Default.....

Use [@_Startup], DelayGoto and CheckMonMap with your MonGenP

So, something like

Code:
[@_Startup]
#IF
!CheckMonMap D001 5 Pig  ;Check that there are NOT (!) 5 pigs on map D001
#ACT
MonGenP "D001,150,150,140" Pig 50  ;Spawn 50 pigs!

#IF
#ACT
DelayGoto [Grobal] 600 @_Startup  ;Goto @_Startup in 10 minutes to check again
 
Upvote 0

idaBigA

Holley Mir 3!!
VIP
Oct 28, 2003
1,966
110
310
Stoke, UK
For that, you can do 2 things.. use the

Same script as above, and use this..

Code:
#IF
Hour 01 01 ;Checks that the hour is 01, this will be true every time it checks and the hour is 01
Min 01 01 ;Checks that the minute is 01, this will be true every time it checks and the minute is 01
;Used together like this, means it will only be true when the time is 01:01

Other way is to use the TimeCall

Code:
#ACT
TimeCall 10 05 @SpawnTheMobs
;This will run when the time is 10:05, every day.  This needs to be called by 00Default, or in an NPC's @_Startup
 
Upvote 0