13 Dec 11, 06:56PM
(This post was last modified: 13 Dec 11, 07:02PM by OpenSource.)
Im pretty sure someone can clean this up, a lot, but i just took something i had and modified it.
[cubescript]alias screencm [
if ($screenshottype) [ ss_extension = ".jpg" ] [ ss_extension = ".bmp" ]
cmssfilename = (concatword (at (timestamp) 0) . (at (timestamp) 1) . (at (timestamp) 2) - (at (timestamp) 3) . (at (timestamp) 4) . (at (timestamp) 5) - (curmap 1) )
screenshot ( concatword screenshots/cm/ ($cmssfilename) $ss_extension )
]
alias screenpub [
if ($screenshottype) [ ss_extension = ".jpg" ] [ ss_extension = ".bmp" ]
pubssfilename = (concatword (at (timestamp) 0) . (at (timestamp) 1) . (at (timestamp) 2) - (at (timestamp) 3) . (at (timestamp) 4) . (at (timestamp) 5) - (curmap 1) )
screenshot ( concatword screenshots/pub/ ($pubssfilename) $ss_extension )
]
alias screeninter [
if ($screenshottype) [ ss_extension = ".jpg" ] [ ss_extension = ".bmp" ]
interssfilename = (concatword (at (timestamp) 0) . (at (timestamp) 1) . (at (timestamp) 2) - (at (timestamp) 3) . (at (timestamp) 4) . (at (timestamp) 5) - (curmap 1) )
screenshot ( concatword screenshots/inter/ ($interssfilename) $ss_extension )
]
[/cubescript]
Typing /screenpub will add screenshot to /screenshots/pub/
Typing /screencm will add screenshot to /screenshots/cm/
Typing /screeninter will add screenshot to /screenshots/inter/
![[Image: 1050232.jpeg]](http://bildr.no/thumb/1050232.jpeg)
[cubescript]alias screencm [
if ($screenshottype) [ ss_extension = ".jpg" ] [ ss_extension = ".bmp" ]
cmssfilename = (concatword (at (timestamp) 0) . (at (timestamp) 1) . (at (timestamp) 2) - (at (timestamp) 3) . (at (timestamp) 4) . (at (timestamp) 5) - (curmap 1) )
screenshot ( concatword screenshots/cm/ ($cmssfilename) $ss_extension )
]
alias screenpub [
if ($screenshottype) [ ss_extension = ".jpg" ] [ ss_extension = ".bmp" ]
pubssfilename = (concatword (at (timestamp) 0) . (at (timestamp) 1) . (at (timestamp) 2) - (at (timestamp) 3) . (at (timestamp) 4) . (at (timestamp) 5) - (curmap 1) )
screenshot ( concatword screenshots/pub/ ($pubssfilename) $ss_extension )
]
alias screeninter [
if ($screenshottype) [ ss_extension = ".jpg" ] [ ss_extension = ".bmp" ]
interssfilename = (concatword (at (timestamp) 0) . (at (timestamp) 1) . (at (timestamp) 2) - (at (timestamp) 3) . (at (timestamp) 4) . (at (timestamp) 5) - (curmap 1) )
screenshot ( concatword screenshots/inter/ ($interssfilename) $ss_extension )
]
[/cubescript]
Typing /screenpub will add screenshot to /screenshots/pub/
Typing /screencm will add screenshot to /screenshots/cm/
Typing /screeninter will add screenshot to /screenshots/inter/
![[Image: 1050232.jpeg]](http://bildr.no/thumb/1050232.jpeg)
![[Image: 1050219.jpeg]](http://bildr.no/thumb/1050219.jpeg)