Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebp
// Add 10 hours the current time
NewTime = SRP_Time("AddHours", Time(), 10)

// Add an hour and a half to the current time
NewTime = SRP_Time("AddHours", Time(), 1.5)

// Subtract 10 hours from the current time
NewTime = SRP_Time("AddHours", Time(), -10)

...