Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

(SOLVED) help find mob tblidx for quest kill count, and TS .e files

Newbie Spellweaver
Joined
Apr 14, 2013
Messages
74
Reaction score
7
so, i have been frustrated out of my mind by this issue, how can i know what mob tblidx is required for a certain quest? im talking about the mob kill count quest type. is it somewhere in the ts quest.e file? or other ts files? if so, then how can i unzip those files? i understand from one of the threads on this forum that the ts .e files are encrypted zip files, SanGawku said that its easy once i got it, well, apparently i did not get it.
i tried unzipping them but it did not work (well obviously they are encrypted, but it was worth a try)
i have spent days reading and tracing the client code, but it lead me no where.

oh and also, in the unpacker (Pack Editor) , there is the TS option to unpack ts.pak files, but see the problem is, THERE ARE NO ts.pak FILES,

none of this makes sense to me, im lost in more ways than i ever was.
please help me.


Update:

I DID IT! :laugh:
i was able to decrypt and extract the files in the quest.e zip file.
i will test my tool on the other files as well, and if all goes well, i will release it, with a small tutorial :), and provide a link here.

so, i tested things and its looking good, so here is the release:
http://forum.ragezone.com/f880/release-tstool-extract-ts-files-1163534/
 
Last edited:
Newbie Spellweaver
Joined
Oct 25, 2015
Messages
48
Reaction score
7
Re: help find mob tblidx for quest kill count, and TS .e files

Hi, join my discord team, and I'll help you with your project, in discord weertoop

I have a lot of time to work from dev :):
 
Newbie Spellweaver
Joined
Jan 8, 2014
Messages
74
Reaction score
14
Re: help find mob tblidx for quest kill count, and TS .e files

You can found It in the edf or rfd files.
 
Newbie Spellweaver
Joined
Oct 25, 2015
Messages
48
Reaction score
7
Re: help find mob tblidx for quest kill count, and TS .e files

Hi can you talk to me in Discord? pamaor
 
Newbie Spellweaver
Joined
Apr 14, 2013
Messages
74
Reaction score
7
Re: help find mob tblidx for quest kill count, and TS .e files

well i know how to find the mob's tblidx and get the mob data, but my question is how can i relate it to a MOB_KILL_COUNT quest type?
like how to know what mob to kill for which quest?
im thinking about something like:
if(tid->mobTblidx == mobdata->tblidx)
{
killCount++;
}
but i know that's not possible, so...
 
Newbie Spellweaver
Joined
May 31, 2014
Messages
94
Reaction score
23
Re: help find mob tblidx for quest kill count, and TS .e files

you need Dcrypt .e files to get all those info for quest you are in correct poit but i cant help you about Decrypt it has SanGawku who do it to me :D
 
Newbie Spellweaver
Joined
Apr 14, 2013
Messages
74
Reaction score
7
Re: help find mob tblidx for quest kill count, and TS .e files

Well first of all, thank you very much for the notice,
Second, I found a decryption key somewhere in the client along with some Unzip functions, I think it is the right key, and the function uses DES algorithm,

But I'm little bit worried about the key that I found, its size is more than what the DES can handle, so... I think it's the wrong function? Maybe there is another function somewhere else for this key?

This is as far as I got with the matter...

ill post some of the code that I'm talking about here later on when I get working on it again.

Also, I already knew I had to decrypt and unzip the files, but I wasn't sure I was doing the right thing, so thank you for letting me know that I'm on the right track :) <3
 
Experienced Elementalist
Joined
Jun 25, 2006
Messages
204
Reaction score
70
Re: help find mob tblidx for quest kill count, and TS .e files

maybe change the extension to zip and use winzip to extract it?
 
Moderator
Staff member
Moderator
Joined
Oct 8, 2006
Messages
647
Reaction score
369
Re: help find mob tblidx for quest kill count, and TS .e files

They are specifically encrypted. Its not just regular zip. you would have to change the header after decrypting as well.
Just as simple to use their built in methods to extract the files. (What i did)
 
Back
Top