Fixed wrong documentation on repeating scripts.

develop
expwnent 2014-06-27 01:40:36 -04:00
parent f557ec3358
commit 66098c2bb4
4 changed files with 9 additions and 9 deletions

@ -10,9 +10,9 @@ if args[1] ~= nil then
print(" reset the feeding timers of all units as appropriate") print(" reset the feeding timers of all units as appropriate")
print(" feeding-timers help") print(" feeding-timers help")
print(" print this help message") print(" print this help message")
print(" repeat enable [n] [years/months/ticks/days/etc] feeding-timers") print(" repeat -time [n] [years/months/ticks/days/etc] -command feeding-timers")
print(" run this script every n time units") print(" run this script every n time units")
print(" repeat disable feeding-timers") print(" repeat -cancel feeding-timers")
print(" stop automatically running this script") print(" stop automatically running this script")
return return
end end

@ -1,5 +1,5 @@
--growthbug: units only grow when the current tick is 0 mod 10, so only 1/10 units will grow naturally. this script periodically sets the birth time of each unit so that it will grow --growthbug: units only grow when the current tick is 0 mod 10, so only 1/10 units will grow naturally. this script periodically sets the birth time of each unit so that it will grow
--to run periodically, use "repeat enable 2 months growthBug now". see repeat.lua for details --to run periodically, use "repeat -time 2 months -command growthBug now". see repeat.lua for details
-- author expwnent -- author expwnent
local args = {...} local args = {...}
@ -9,9 +9,9 @@ if args[1] ~= nil then
print(" fix the growth bug for all units on the map") print(" fix the growth bug for all units on the map")
print(" growthbug help") print(" growthbug help")
print(" print this help message") print(" print this help message")
print(" repeat enable [n] [years/months/ticks/days/etc] growthbug") print(" repeat -time [n] [years/months/ticks/days/etc] -command growthbug")
print(" run this script every n time units") print(" run this script every n time units")
print(" repeat disable growthbug") print(" repeat -cancel growthbug")
print(" stop automatically running this script") print(" stop automatically running this script")
end end

@ -11,7 +11,7 @@ removewear all
remove wear from all items remove wear from all items
removewear n1 n2 n3 ... removewear n1 n2 n3 ...
remove wear from items with the given ids. order does not matter remove wear from items with the given ids. order does not matter
repeat enable 2 months removewear all repeat -time 2 months -command removewear all
remove wear from all items every 2 months. see repeat.lua for details remove wear from all items every 2 months. see repeat.lua for details
]]) ]])
do return end do return end
@ -23,7 +23,7 @@ elseif args[1] == 'all' then
count = count+1 count = count+1
end end
end end
print('removewear removed wear from 'count' objects') print('removewear removed wear from '..count..' objects')
else else
local argIndex = 1 local argIndex = 1
local isCompleted = {} local isCompleted = {}

@ -1,8 +1,8 @@
-- repeat.lua -- repeat.lua
-- repeatedly calls a lua script, eg "repeat enable 1 months cleanowned"; to disable "repeat disable cleanowned" -- repeatedly calls a lua script, eg "repeat -time 1 months -command cleanowned"; to disable "repeat -cancel cleanowned"
-- repeat -help for details
-- author expwnent -- author expwnent
-- vaguely based on a script by Putnam -- vaguely based on a script by Putnam
-- repeat -help for details
local repeatUtil = require 'plugins.repeatUtil' local repeatUtil = require 'plugins.repeatUtil'