SexScripts : Glitch in Interrogation Script - https://ss.deviatenow.com:443/viewtopic.php?f=6&t=743 Page 1 of 1

Glitch in Interrogation Script

cgut2001 [ Wed Feb 28, 2018 12:18 am ]

Hello all

the interrogator didn't succeed in the first televised session so I started a second one immediately after.

Just after the first (humiliation) image the script died with 'Error Null'. I tied to reset the script, close the program and so on. But when reopening the interrogation scipt it says 'loading' followed by 'error null' about one minute later.

Has anyone ever faced this problem and how can it be solved?

Script-URL https://ss.deviatenow.com/download/file ... 3&scid=270

Re: Glitch in Interrogation Script

doti [ Wed Feb 28, 2018 10:16 am ]

Possibly online data are corrupt, but the script author, ptdw, may have some more insight.

Re: Glitch in Interrogation Script

cgut2001 [ Wed Feb 28, 2018 11:14 pm ]

I don't know the reason for the glitch. In the end I removed SexScripts completely and downloaded it again.

Seems like this did the trick, I'll try soon.

Having some time to kill I tried to tinker with the humiliation and e-stim parts, hope this won't break anything.

Re: Glitch in Interrogation Script

cgut2001 [ Thu Mar 01, 2018 12:12 pm ]

Seems like the WebCommunicator-Class is causing some trouble. The relevant part of the stack-tace is.

Code:
   at java.io.PrintWriter.write(Unknown Source)
   at ss.WebCommunicator.sendAndGetInputStream(WebCommunicator.java:178)
   at ss.WebCommunicator.send(WebCommunicator.java:107)
   at ss.desktop.Script.send(Script.java:753)


Tracking the communication down with wireshark I can see some data being transmitted followed by a bunch of ssl-errors.

Re: Glitch in Interrogation Script

cgut2001 [ Thu Mar 01, 2018 2:10 pm ]

I managed to track down the error. It's in the lines to send the Session

File interrogation.groovy lines 158-161

Code:
      // Send the face pic, if it exists
      def face = loadString("interrogation.session_facepic")
      if ((face != null) && (face.size() > 10)) facepic = sendImage(face)   
      send("interrogation."+identifier+".face",facepic)


If no facepic was interrogated, variable facepic is NULL when sending the identifier

Extending the if did mend the problem

Code:
      // Send the face pic, if it exists
      def face = loadString("interrogation.session_facepic")
// facepic error fix
      if ((face != null) && (face.size() > 10)) {
         facepic = sendImage(face)   
         send("interrogation."+identifier+".face",facepic)
      }

Re: Glitch in Interrogation Script

doti [ Thu Mar 01, 2018 8:06 pm ]

Thank you.

I will check if the behaviour in case of NULL is correct

Page 1 of 1 All times are UTC + 1 hour [ DST ]
https://ss.deviatenow.com:443/
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
Maroon Fusion theme created by Oxydo
Software, theme modifications, phpBB modification by Doti 2010, 2011