About Store Forum Documentation Contact



Post Reply 
Adding secured pak files to source
Author Message
Dandruff Offline
Member

Post: #1
Adding secured pak files to source
Hi,

After securing several files using the pak converter, how would one go about in loading said pak for use in the game? It is encrypted so i would guess i need to supply the 32 digit key in the source for the engine to unpack. I looked at the demo's but they did not use passwords, so i am clueless here smile

Thanks in advance.
(This post was last modified: 09-04-2010 12:19 AM by Dandruff.)
09-04-2010 12:18 AM
Find all posts by this user Quote this message in a reply
Zervox Offline
Member

Post: #2
RE: Adding secured pak files to source
on top after #Include's
Code:
Secure secure(39,30,52,32,31,16,13,66,99,45,32,15,63,67,32,19,43,38,12,17,77,34,62,35,9​9,13,87,64,13,64,13,53);
Secure secure2(31,19,52,16,31,16,13,66,99,45,32,17,13,67,32,19,43,38,12,17,64,34,62,35,​93,13,42,24,73,75,33,63);
In initPre
Paks.add("PAKNAME.pak",&secure);
Paks.add("PAKNAME.pak",&secure2);
(This post was last modified: 09-04-2010 12:26 AM by Zervox.)
09-04-2010 12:26 AM
Find all posts by this user Quote this message in a reply
Dandruff Offline
Member

Post: #3
RE: Adding secured pak files to source
Ah thanks, that worked out perfectly.

Side note: I see you everywhere! How do you know all of this stuff? Do you analyze esenthels source or is there a secret document somewhere? Thanks again, you're awesome smile
09-04-2010 06:43 AM
Find all posts by this user Quote this message in a reply
Zervox Offline
Member

Post: #4
RE: Adding secured pak files to source
Your welcome. smile

Side note answer: I am just regulary checking in on the forums, and post at topics where I can help or give a few tips. You will also notice I've posted quite a few topics where I need help myself, some even being pretty newbie faults like typos. wink

Wiki, Headers, searching the forums, reading the Documentation.chm, API Reference.chm(inside the extra folder), Trial and error.

Looking through some of the tutorials, bloody massacre, RPG2 and others if any, like the Raknet tutorial.

Also some times I look at most intellisense lists for function description which comes up in visual studio(tool tip).
(This post was last modified: 09-04-2010 08:32 AM by Zervox.)
09-04-2010 08:28 AM
Find all posts by this user Quote this message in a reply
Dynad Offline
Member

Post: #5
RE: Adding secured pak files to source
You need to search very good on this forum cause; lots of things has been discussed before like this one.

But anyway there is always someone here that can help you out smile

There is always evil somewhere, you just have to look for it properly.
09-04-2010 02:20 PM
Visit this user's website Find all posts by this user Quote this message in a reply
llynx Offline
Member

Post: #6
RE: Adding secured pak files to source
(09-04-2010 08:28 AM)Zervox Wrote:  API Reference.chm(inside the extra folder)

wow I didn't know that existed and has been something I've needed for a while now

*Praises*
09-04-2010 09:48 PM
Find all posts by this user Quote this message in a reply
Dandruff Offline
Member

Post: #7
RE: Adding secured pak files to source
(09-04-2010 09:48 PM)llynx Wrote:  
(09-04-2010 08:28 AM)Zervox Wrote:  API Reference.chm(inside the extra folder)

wow I didn't know that existed and has been something I've needed for a while now

*Praises*

WOW, thank you!lollollol

edit: Seems like Zervox stated that too... man im slow smile
(This post was last modified: 09-06-2010 01:25 AM by Dandruff.)
09-06-2010 01:21 AM
Find all posts by this user Quote this message in a reply
Post Reply