Paste building after wipeSolved

hi,
i wanted to automate pasting a couple buildings which i use for arena events using CopyPaste comands after each wipe.
i read this thread and i thought i could use Auto Commands and TimedExecute to achieve it.
unfortunately it seems that the TimerOnce is executed not once, but once everytime you restart the server, which bricks my initial idea, and pretty much makes Auto Commands useless for my situation, since Timer will reset anyway with every restart.

I don't know if anyone can help, if i didnt understand anything, if anyone knows another posibility... idk. thanks in advance )

EDIT: this is my config file btw, just in case i messed something up there

{
  "EnableInGameTime-Timer": false,
  "EnableRealTime-Timer": false,
  "EnableTimerOnce": true,
  "EnableTimerRepeat": false,
  "InGameTime-Timer": {
    "01:00": "weather rain",
    "12:00": "command 1",
    "15:00": "command 2"
  },
  "RealTime-Timer": {
    "22:00:00": ""
  },
  "TimerOnce": {
	"pasteback arena_primitiva stability false position 0,1050,0": 15,
    "pasteback arena_pro stability false position 350,1050,0": 20
  },
  "TimerRepeat": {
    "command1 arg": 300,
    "command2 'msg'": 300,
	"reset.timeronce": 181
  }
}​



ok ,i think i found i way kinda. CopyPaste's blockcollision also works with the console command Pasteback. so i just added it

"TimerOnce": {
"pasteback arena_primitiva blockcollision 5 stability false position 0,1050,0": 15,
"pasteback arena_pro blockcollision 5 stability false position 350,1050,0": 20
},

now if the buildings are already there (daily restart), it doesn't copy them, if the buildings are not there (wipe) it pastes the buildings.

Locked automatically