In Memoriam: Tai'lahr

OpenUru.org, along with the rest of the Mystonline community, is mourning the loss of Tai'lahr on October 16th, 2019.

Rest in Peace, friend.

Difference between revisions of "Building the plPythonPack and plFileSecure projects"

From OpenUru
Jump to navigation Jump to search
m (→‎Use them: Typos)
m (→‎Use them: "m" -> "M")
Line 38: Line 38:
  
  
''Based on mystler's forum post: http://forums.openuru.org/viewtopic.php?f=92&p=4205#p4205''
+
''Based on Mystler's forum post: http://forums.openuru.org/viewtopic.php?f=92&p=4205#p4205''
  
 
[[Category:Cyan Worlds]]
 
[[Category:Cyan Worlds]]

Revision as of 02:00, 19 April 2011

Here is a small guide on how to compile and use the plPythonPack and plFileSecure tools.

Prerequisites

  • You should have compiled the CWE Client as it is described in cjkelly1's tutorial once. (Link)
  • You need my fixed vcproj files: plFileSecure and plPythonPack

Compile them

plFileSecure

  1. Replace the file [CWE]\MOULOpenSourceClientPlugin\Plasma20\MsDevProjects\Plasma\Apps\plFileSecure\plFileSecure.vcproj with my one.
  2. Open the file with VS2003.
  3. Change the configuration to "Release".
  4. Right click on the Project and select "Build". Save the sln file, if VS asks you.
  5. Everything should work and the plFileSecure.exe should be in the Release folder.


plPythonPack (the same as for plFileSecure)

  1. Replace the file [CWE]\MOULOpenSourceClientPlugin\Plasma20\MsDevProjects\Plasma\Apps\plPythonPack\plPythonPack.vcproj with my one.
  2. Open the file with VS2003.
  3. Change the configuration to "Release".
  4. Right click on the Project and select "Build". Save the sln file, if VS asks you.
  5. Everything should work and the plFileSecure.exe should be in the Release folder.

Use them

You will get more information by running plFileSecure -h or plPythonPack -h in the command prompt, but here's a small overview.

For packing a complete python.pak file you have to copy the whole Python source into a new folder. You can use the Python files from Cyan's scripts. (Link) Now, you can run the plPythonPack.exe in the new Python folder or run plPythonPack <PythonFolder> in the command prompt. The final python.pak file should be in the Python folder.


To encrypt files (e.g. for the MOSS auth server) you have to put your encryption.key to the folder where you are running plFileSecure. Then, open a command prompt and type:

plFileSecure <directory> <file-ending>

e.g.: plFileSecure . pak

Finally, your files are "notthedroids"/ntd encrypted.


Based on Mystler's forum post: http://forums.openuru.org/viewtopic.php?f=92&p=4205#p4205