224 {
225 if (time != "")
226 {
228 time.
Split(
":", arr);
229
230 if (arr.Count() == 2)
231 {
232 int hour = arr.Get(0).ToInt();
233 int minute = arr.Get(1).ToInt();
234
235 if (hour >= 19 || hour <= 5)
236 {
237 if (multiplier > 1)
239 else
241 }
242 else
243 {
244 if (multiplier > 1)
246 else
248 }
249
252 }
253 }
254 else
255 {
259 }
260 }
array< string > TStringArray
void Split(string sample, out array< string > output)
Splits string into array of strings separated by 'sample'.