Spawn explosives on a timer?
We need a plguin which can spawn Timed Explosive Charge/Satchel Charge/Rocket Launcher/Explosive 5.56 Rifle Ammo timed.

real time(not game time):
spawn Timed Explosive Charge after seconds when server start;
spawn Rocket Launcher after seconds when server start;
spawn Explosive 5.56 Rifle Ammo after seconds when server start

thanks.
Spawn to player?
you could use timed execute and give plugin.
Ts3hosting
Spawn to player?
you could use timed execute and give plugin.

not give player.
I need to set some items spawn timed.

The items you mentioned do not "spawn" into the world. I think what you mean is that you want them blocked until certain times? If so, you can use TimedExecute + ComponentBlocker
5c5339bb3cef3.png JimDeadlock
The items you mentioned do not "spawn" into the world. I think what you mean is that you want them blocked until certain times? If so, you can use TimedExecute + ComponentBlocker

 

 

How to spawn them after timed?

which command do I should run in TimedExecute?

 

I just know:

blocker ammo.shotgun.slug

 

but how to unblock?

unblocker ammo.shotgun.slug

 

is right?



Merged post

and If the server restart,(TimedExecute)it will timed again?
blocker <item> = block it
blocker <item> = unblock it, if it's already blocked

When something it blocked it will remain blocked until you unblock it, server restarts are irrelevant.
5c5339bb3cef3.png JimDeadlock
blocker <item> = block it
blocker <item> = unblock it, if it's already blocked

When something it blocked it will remain blocked until you unblock it, server restarts are irrelevant.

thanks.

But if the server restart,(blocker ammo.shotgun.slug)TimedExecute will timed again?

such as:

blocker ammo.shotgun.slug   7200

 

If server just start,it will run blocker ammo.shotgun.slug in 7200 seconds;

But if I restart server when it have started 3600 seconds,it will run blocker ammo.shotgun.slug in 7200 seconds  (timed again),blocker ammo.shotgun.slug will do not  run in 3600 seconds .

is right?

Each time you run "blocker ammo.shotgun.slug" it will block/unblock that ammo. If you set a timer for X seconds after restart then it will toggle the ammo on/off every time you restart so that will be a very unreliable way to do it. It's probably better to set it to run at specific times instead of after restart.
5c5339bb3cef3.png JimDeadlock
Each time you run "blocker ammo.shotgun.slug" it will block/unblock that ammo. If you set a timer for X seconds after restart then it will toggle the ammo on/off every time you restart so that will be a very unreliable way to do it. It's probably better to set it to run at specific times instead of after restart.

thank you.solved