This thread is for Insanity 1.0. For the latest version, Insanity 1.1, see the Insanity 1.1 thread.
I have just finished my very own Scratch mod, called Insanity.
It mainly features a lot of new blocks, with the most notable and original one being "Ask for File".
You can download it at insanity.jvvgindustries.com.
However, the best feature is being able to upload directly to Mod Share. You can just click the button, and it uploads rather quickly. The best part: you can upload much bigger files than you can upload through the web.
The only catch to the uploader is that it only works on Windows.
Note: although this is listed as a FutureSight product, this is entirely under my direction.
Latest news
Insanity 1.1 is in near completion.
Last edited by jvvg (2012-08-21 14:20:05)
Offline
I want to download it, but dumb norton says its a "threat"

Offline
funelephant wrote:
I want to download it, but dumb norton says its a "threat"
I wrote the installer in AutoIT, which a lot of antivirus programs don't like.
I'll make a .zip version, hold on.
EDIT: .zip version is available at: http://dl.dropbox.com/u/15819889/Insanity/Insanity.zip, and I will put that on the site in a minute.
Last edited by jvvg (2012-02-25 21:02:10)
Offline
jvvg wrote:
funelephant wrote:
I want to download it, but dumb norton says its a "threat"
I wrote the installer in AutoIT, which a lot of antivirus programs don't like.
I'll make a .zip version, hold on.
EDIT: .zip version is available at: http://dl.dropbox.com/u/15819889/Insanity/Insanity.zip, and I will put that on the site in a minute.
Good. I waa having trouble with the installer. Mcafee says that th installer is safe, but it does not install.
Offline
zippynk wrote:
Cool!
Suggestion: You need a quit button in the file menu. Sure, you can close the window, but it's a little annoying to think you're trapped inside a program.
Sure, I'll add that soon.
Offline
Today, I re-did the website.
Does everyone like it?
Also, does anyone have a suggestion for an image to use?
insanity.jvvgindustries.com
Offline
jvvg wrote:
Today, I re-did the website.
Does everyone like it?
Also, does anyone have a suggestion for an image to use?
insanity.jvvgindustries.com
I can make one if ya' want.
Offline
jvvg wrote:
I like that image. I'll use it!
Thanks! You don't have to give me any credit, it took me like 2 minutes on Fireworks.
Last edited by chanmanpartyman (2012-06-18 16:07:30)
Offline
jvvg wrote:
berberberber wrote:
It's good!
Thanks!
Another question: if I want to make a download counter, how would I do that?
I dunno. Just make a PHP script to get the hits from the URL that downloads the file.
Offline
chanmanpartyman wrote:
jvvg wrote:
berberberber wrote:
It's good!
Thanks!
Another question: if I want to make a download counter, how would I do that?I dunno. Just make a PHP script to get the hits from the URL that downloads the file.
Good idea, I'll start that soon.
Offline
jvvg wrote:
chanmanpartyman wrote:
jvvg wrote:
Thanks!
Another question: if I want to make a download counter, how would I do that?I dunno. Just make a PHP script to get the hits from the URL that downloads the file.
Good idea, I'll start that soon.
A very small script, actually. It saves the counts in a file (just make sure you have the file there in the first place
):
<?php
$num = (int)file_get_contents("filecounter.txt");
$fp = fopen("filecounter.txt", "w");
fwrite($fp, $num++);
fclose($fp);
header('Location: http://downloadsite.here');
?>I can't remember the write function, but I think thats right. If not, then just swap the parameters around.
To read:
<?php echo file_get_contents("filecounter.txt"); ?>that should work. Send the user to the first script instead of directly to the download link.
Offline
my suggestion: move the site to a sub-domain of futuresight. I looked on the futuresight website, and saw it was a product. You could leave a redirect behind at the old sub-domain to make things easy.
Offline
XenoK wrote:
my suggestion: move the site to a sub-domain of futuresight. I looked on the futuresight website, and saw it was a product. You could leave a redirect behind at the old sub-domain to make things easy.
It is already a sub-domain
Offline
SJRCS_011 wrote:
XenoK wrote:
my suggestion: move the site to a sub-domain of futuresight. I looked on the futuresight website, and saw it was a product. You could leave a redirect behind at the old sub-domain to make things easy.
It is already a sub-domain
![]()
not of futuresight.
Offline
XenoK wrote:
SJRCS_011 wrote:
XenoK wrote:
my suggestion: move the site to a sub-domain of futuresight. I looked on the futuresight website, and saw it was a product. You could leave a redirect behind at the old sub-domain to make things easy.
It is already a sub-domain
![]()
not of futuresight.
I think it works where it is.
Besides, I'm jvvg, and it's at jvvgindustries.com, so it's a good fit.
Offline
jvvg wrote:
XenoK wrote:
SJRCS_011 wrote:
It is already a sub-domain![]()
not of futuresight.
I think it works where it is.
Besides, I'm jvvg, and it's at jvvgindustries.com, so it's a good fit.
lol kk
Offline