I'm kinda at a loss at what's been said in this thread. Out of your first post I understand that you downloaded this script and installed it into msgplus!
Then you opened the files in the directory of this script and changed some of the files by translating them.
Now you want to make a new .plsc file out of them so other people can install your translated script?
First I would indeed contact the original script author to ask if it's ok if you translate it.
Now about the technical problems you are facing.
The script has some files that it needs to run, I'm guessing you have these files, probably one or more .js files that have the actual code and one or more .xml files.
Msgplus uses one of these .xml files to recognize the script inside the zip/plsc file. This file is called ScriptInfo.xml. This file is probably in the directory of the script with the other files.
If this file is here and after the modifications you made to the script and it still works you can just zip the entire directory and rename it to .plsc, if this file does
not exist you need to create it yourself.
You can find the full documentation about this file in the scripting documentation also available for download at the scripts database.
Here is a simple way for plus! to recognize the script:
code:
<?xml version="1.0" encoding="UTF-16"?>
<ScriptInfo xmlns="urn:msgplus:scripts" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Information>
<Name>Script Name</Name>
<Description>Script Description</Description>
<Version>Version of the script</Version>
</Information>
</ScriptInfo>
Make sure you save this file as Unicode (UTF-16/USC-16)
I hope you can create the .plsc file with the information I have given you, if you still can't make it work we need more information about what you have done and what exactly is going wrong.
EDIT: Fixed formatting problems.