lets say you need to pause these pins starting from the same initial port status and time:

porta.1 15 secs
porta.2 10 secs
porta.3 5 secs

you can do this:

porta=%00000111
pause 5
porta=%00000011
pause 5
porta=%00000001

is this what you are looking for?