About Store Forum Documentation Contact



Post Reply 
[Demande] Engine.pak
Author Message
Jben Offline
Member

Post: #1
[Demande] Engine.pak
hello, I understood how it is pa creates the file engine.pak to protect data from the game ...


Merci d'avance. grin
05-04-2011 08:57 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Zervox Offline
Member

Post: #2
RE: [Demande] Engine.pak
you mean creating a protected .pak?

converter tool
Pak tab
press the secure button ,fill it with 32 numbers seperated by ","
and copy the numbers you used.
in Visual studio
use
Secure()
and paste the numbers inside ""
05-04-2011 11:02 PM
Find all posts by this user Quote this message in a reply
Dandruff Offline
Member

Post: #3
RE: [Demande] Engine.pak
You can use this site to generate your key, http://www.whatsmyip.org/passwordgen/
05-05-2011 12:12 AM
Find all posts by this user Quote this message in a reply
Zervox Offline
Member

Post: #4
RE: [Demande] Engine.pak
http://textmechanic.com/Random-Number-Generator.html

Generate: 32
random numbers from: 0
to: 99
Add this prefix: Leave empty
and/or suffix: ","
to each. Delimiter: " " eg space

copy paste into convert tool


or write your own ; )
(This post was last modified: 05-05-2011 12:36 AM by Zervox.)
05-05-2011 12:31 AM
Find all posts by this user Quote this message in a reply
Dandruff Offline
Member

Post: #5
RE: [Demande] Engine.pak
yeah that one's better, saves you from having to put a comma in 31 times! smile
(This post was last modified: 05-05-2011 12:38 AM by Dandruff.)
05-05-2011 12:37 AM
Find all posts by this user Quote this message in a reply
Dynad Offline
Member

Post: #6
RE: [Demande] Engine.pak
(05-05-2011 12:37 AM)Dandruff Wrote:  yeah that one's better, saves you from having to put a comma in 31 times! smile

Well i did that tho xD.. but you need to do it just once pfft

There is always evil somewhere, you just have to look for it properly.
05-05-2011 12:48 AM
Visit this user's website Find all posts by this user Quote this message in a reply
Zervox Offline
Member

Post: #7
RE: [Demande] Engine.pak
multiple times if you want to have different keys for different paks. ;p

anyways just wrote it real fast so maybe other people want it.

Secure Pak Key Writer

put .engine pak in the same folder, start the app, enter a file name and it will export a .txt file inside the SecureKey folder and it will be filled after you exit the app.
05-05-2011 01:22 AM
Find all posts by this user Quote this message in a reply
Jben Offline
Member

Post: #8
RE: [Demande] Engine.pak
cool !

secure() ???
05-05-2011 10:09 AM
Visit this user's website Find all posts by this user Quote this message in a reply
Zervox Offline
Member

Post: #9
RE: [Demande] Engine.pak
Secure secure;

secure(paste the generated numbers here);

in InitPre()

Paks.add("name",secure);
05-05-2011 01:46 PM
Find all posts by this user Quote this message in a reply
Jben Offline
Member

Post: #10
RE: [Demande] Engine.pak
but I agree or inserted in the code c + +?
05-05-2011 01:49 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Zervox Offline
Member

Post: #11
RE: [Demande] Engine.pak
c++
05-05-2011 01:51 PM
Find all posts by this user Quote this message in a reply
Jben Offline
Member

Post: #12
RE: [Demande] Engine.pak
but yes or main.h?
05-05-2011 01:59 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Zervox Offline
Member

Post: #13
RE: [Demande] Engine.pak
Where you have InitPre(), Init(),Shut(),Update(),Draw()
05-05-2011 02:03 PM
Find all posts by this user Quote this message in a reply
Dynad Offline
Member

Post: #14
RE: [Demande] Engine.pak
You would say after the awesome help "THANKS ZERVOX!!!!" wink

There is always evil somewhere, you just have to look for it properly.
(This post was last modified: 05-05-2011 02:13 PM by Dynad.)
05-05-2011 02:13 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Jben Offline
Member

Post: #15
RE: [Demande] Engine.pak
arf! I do not understand: /
05-05-2011 02:21 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Post Reply