Page 1 of 1

How do I adjust the speed at which I change plugins? Using " action " in " fun ".

Posted: 04 Aug 2018, 15:25
by choggoba
In " fun " I can replace the plug-in by using " action ".
For example

Code: Select all

  "fun":[{
          "actions":[
          {"type":"build","id":"??????"}]
  
  }]
By the way
Is there a way to adjust the replacement speed?
What I want to replace is the road deco. slowly


help :bq :bq :bq

Re: How do I adjust the speed at which I change plugins? Using " action " in " fun ".

Posted: 04 Aug 2018, 18:28
by Lobby
Would it be an option to replace it after 4 days? That would look like

Code: Select all

"fun":[{
  "condition":"day%4=0",
  "actions":[
    {"type":"build","id":"??????"}
  ]
}]

Re: How do I adjust the speed at which I change plugins? Using " action " in " fun ".

Posted: 06 Aug 2018, 13:15
by choggoba
Lobby wrote:
04 Aug 2018, 18:28
Would it be an option to replace it after 4 days? That would look like

Code: Select all

"fun":[{
  "condition":"day%4=0",
  "actions":[
    {"type":"build","id":"??????"}
  ]
}]

Thank you. You've been very helpful.