Page 1 of 1

[SUGGESTION] Screenshots

Posted: Tue Jan 21, 2014 9:46 am
by 3rlite
Possibility to take screenshots would be great! Take a nice picture of SCP-096 and publish it on the internet to kill EVERYONE!

Re: [SUGGESTION] Screenshots

Posted: Tue Jan 21, 2014 9:55 am
by Serimah
You mean an InGame Screenshot Function? That would be neat but statistically Regalis would be busy with so many other things... *looks at the Modders of this forum*
Also, taking Screens of 096 to show off his beautiful features?
Image

WAY ahead of you :D

Re: [SUGGESTION] Screenshots

Posted: Tue Jan 21, 2014 3:20 pm
by CommanderMark
Doesn't the game already have this feature? I recall there being an F key you could press to take a screenshot.

Re: [SUGGESTION] Screenshots

Posted: Tue Jan 21, 2014 3:34 pm
by juanjp600

Code: Select all

If KeyHit(67) Then ;press F9 to take a screenshot
	n%=0
	While True
		If FileSize("screenshots\img"+Str(n)+".bmp")=0 Then
			SaveBuffer(FrontBuffer(),"screenshots\img"+Str(n)+".bmp")
			Msg = "Screenshot taken"
			MsgTimer = 70*5
			Exit
		Else
			n=n+1
		EndIf
	Wend
EndIf
It's that easy :) Add this to the start of the main loop.

Re: [SUGGESTION] Screenshots

Posted: Tue Jan 21, 2014 5:26 pm
by Kev
Serimah wrote:You mean an InGame Screenshot Function? That would be neat but statistically Regalis would be busy with so many other things... *looks at the Modders of this forum*
Also, taking Screens of 096 to show off his beautiful features?
Image

WAY ahead of you :D
;-; Scary as hell...
juanjpro wrote:

Code: Select all

If KeyHit(67) Then ;press F9 to take a screenshot
	n%=0
	While True
		If FileSize("screenshots\img"+Str(n)+".bmp")=0 Then
			SaveBuffer(FrontBuffer(),"screenshots\img"+Str(n)+".bmp")
			Msg = "Screenshot taken"
			MsgTimer = 70*5
			Exit
		Else
			n=n+1
		EndIf
	Wend
EndIf
It's that easy :) Add this to the start of the main loop.
Everything is said here. :P The idea is good but does it really worth it to be an official update on the game? I don't think so. :wink:

Re: [SUGGESTION] Screenshots

Posted: Tue Jan 21, 2014 5:30 pm
by Serimah
Kev, just a hint. Please don't quote large pictures (although it is also my fault for not resizing my image before uploading)
:)

Also, if that little feature is so easily implemented, why not put it in then. Or at least make it a tiny part of the mods.
I think that little feature will make Banner/Design-Making alot easier for some people.

Re: [SUGGESTION] Screenshots

Posted: Tue Jan 21, 2014 5:52 pm
by SCP-500
Serimah wrote:-096face-
Image
< My face after seeing his.

Re: [SUGGESTION] Screenshots

Posted: Wed Jan 22, 2014 3:53 pm
by InnocentSam
juanjpro wrote:

Code: Select all

If KeyHit(67) Then ;press F9 to take a screenshot
	n%=0
	While True
		If FileSize("screenshots\img"+Str(n)+".bmp")=0 Then
			SaveBuffer(FrontBuffer(),"screenshots\img"+Str(n)+".bmp")
			Msg = "Screenshot taken"
			MsgTimer = 70*5
			Exit
		Else
			n=n+1
		EndIf
	Wend
EndIf
It's that easy :) Add this to the start of the main loop.
You're going to have to help me out here. Shoved that in main loop, the message shows up so it definitely saved the image, but I cannot find a screenshots folder nor any screenshots. Bizarre.

EDIT: Have to make the screenshots folder. Should've tried that first, really :laugh:

EDITEDIT: http://scpcbgame.com/forum/viewtopic.php?f=11&t=3404