AC ss folders
#12
(13 Dec 11, 06:56PM)DES|OpenSource Wrote: 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]
[Image: 1050219.jpeg]

could this be made into binds instead of typing it out?

@ the rest thanks guys
Thanks given by:


Messages In This Thread
AC ss folders - by Joe Smith - 13 Dec 11, 02:06AM
RE: AC ss folders - by Ronald_Reagan - 13 Dec 11, 02:16AM
RE: AC ss folders - by Theo_RJ* - 13 Dec 11, 02:31AM
RE: AC ss folders - by Lantry - 13 Dec 11, 04:47AM
RE: AC ss folders - by tempest - 13 Dec 11, 11:37AM
RE: AC ss folders - by ExodusS - 13 Dec 11, 11:57AM
RE: AC ss folders - by MykeGregory - 13 Dec 11, 05:15PM
RE: AC ss folders - by OpenSource - 13 Dec 11, 06:56PM
RE: AC ss folders - by Joe Smith - 13 Dec 11, 09:11PM
RE: AC ss folders - by SKB - 13 Dec 11, 07:01PM
RE: AC ss folders - by D1551D3N7 - 13 Dec 11, 07:02PM
RE: AC ss folders - by V-Man - 13 Dec 11, 09:02PM
RE: AC ss folders - by V-Man - 13 Dec 11, 09:56PM
RE: AC ss folders - by Joe Smith - 14 Dec 11, 04:07AM
RE: AC ss folders - by Ronald_Reagan - 13 Dec 11, 10:47PM
RE: AC ss folders - by V-Man - 14 Dec 11, 03:35AM
RE: AC ss folders - by Ronald_Reagan - 14 Dec 11, 04:09AM
RE: AC ss folders - by OpenSource - 14 Dec 11, 04:21AM
RE: AC ss folders - by V-Man - 14 Dec 11, 04:46AM