Author Topic: A Don't download addons in the wrong spot script...  (Read 603 times)

Title explains it but couldn't be possible? I'm tried of the noobs DLing files into Addons takes time and space...

The add-ons system is overhauled in V9 to prevent that kind of stuff, so you can wait for that instead.

thats was what I was expecting but thx for the info thou

Code: [Select]
if(!isFile("Add-Ons/MyScript.cs"))
{
 if($Server::Dedicated)
  echo("MyScript is installed wrong. Redownload the mod and extract it to your main Blockland folder.");
 else
  schedule(1000,0,clientcmdmessageboxOK,"Error","MyScript is installed wrong. Redownload the mod and extract it to your main Blockland folder.");
 return;
}

Change myScript for the actual filename of your script file, and put it at the top of the file.