![]() |
New HD games... - Printable Version +- Spiffy Hacks (https://spiffyhacks.harmonypogo.com) +-- Forum: Vtech InnoTab (https://spiffyhacks.harmonypogo.com/forum-1.html) +--- Forum: InnoTab 3s (https://spiffyhacks.harmonypogo.com/forum-6.html) +--- Thread: New HD games... (/thread-604.html) |
RE: New HD games... - is0-mick - 10-24-2015 The best way to test this is to decrypt an ITA thats already on the SD card on internal SD on the innotab. (A game that was installed with the learning lodge (explorer park I think your version is called). I do have vague recollection of that error being displayed even when the decryption was successful, as it checks for "uniquekey.bin" but if that file is not there it gets it from one of the partitions instead. Why are you creating an the ITA with copy? it should be on the tablet already... Don't forget it will only work for an ITA that has been downloaded for THAT tablet on THAT tablet, you can't decrypt it on a different tablet. Mick RE: New HD games... - oursonnet - 10-24-2015 (10-24-2015, 12:48 PM)is0-mick Wrote: The best way to test this is to decrypt an ITA thats already on the SD card on internal SD on the innotab.In fact, I used the hash Bin files + bin found in my windows temp directory, to create a ITA or BIN files with Copy. Then this Bin or Ita files is working fine on my Innotab. Then I try to decrypt this Bin or ITA to use it on a another Innotab. I can perhaps try to copy the games (downloaded with learning lodge) from the internal memory of the Innotab to the SD (with a script as I don't have the PLL USB adaptor). Where Can I find the games in the internal memory of the Storio ? (directory) RE: New HD games... - is0-mick - 10-24-2015 I think they are /vp_mnt/if_sd/LLN/APPS/Games /vp_mnt/if_sd/LLN/APPS/Books /vp_mnt/if_sd/LLN/APPS/Other you could always so something like this in your script and find out where everything is... ls -aR / >/vp_mnt/sd/dirlist.txt or ls -aR /vp_mnt/ >/vp_mnt/sd/dirlist.txt Mick RE: New HD games... - oursonnet - 10-25-2015 (10-24-2015, 03:31 PM)is0-mick Wrote: I think they areI tried this morning to do a "simple" copy of all data on the internal Innotab memory to my SDcard.` Using this simple script : __________________________________________________________________________________ #!/bin/sh echo "this is mytest.sh" sleep 10 echo "slept" killall -9 appswitch killall -9 desktopManager killall -9 flashplayer mount >/tmp/mounts mkfifo /testfifo lcdterm -daemon /testfifo #ps -A >/vp_mnt/sd/ps.txt echo "Copy my games..." >/testfifo echo "By Ours" >/testfifo echo "" >/testfifo sleep 2 mkdir /vp_mnt/sdcard/copy >/testfifo cp -aR /vp_mnt/if_sd/LLN/*.* /vp_mnt/sdcard/copy >/testfifo echo "Copy completed" >/testfifo ------------------------------------------------------------------------------------------------------------ On the screen of the Innotab, I see Copy my games By ours **then immediatly after Copy completed and Nothin on my SD card. Have I missed somthing ? RE: New HD games... - oursonnet - 10-25-2015 I succeeded to copy ITA file from my Innotab internal memory to my SD using this command cp -aR /vp_mnt/if_dlg/LLN/APPS/Games/*.ita /vp_mnt/sd/copy >/testfifo I have only one ITA, where is the second games I've downloaded ??? I copy this ITA on my SD (root of the SD) Then I try to run this command : lmaid /vp_mnt/sd/miles.ita /dev/loop7 /vp_mnt/sd/decrypted Nothing in the decrypted folder and still same thing on the screen of the Innotab with uniquekey ... RE: New HD games... - is0-mick - 10-25-2015 It's probably a simple error or something. (maybe a path not correct?) This is pretty much how the innotab runs a downloaded game. If you open up Run_App from a firmware file or get it from your innotab, you will see it uses lmaid to decrypt it. I'm not 100% what the problem is. I don't think I have an innotab with ITA's on it. I'm not at home at the moment, but I'll try to have a look next week when I get back. Mick RE: New HD games... - oursonnet - 10-26-2015 (10-25-2015, 05:05 PM)is0-mick Wrote: It's probably a simple error or something. (maybe a path not correct?) I finally succeded to decrypt a games from my Innotab internal to my Sd card. The resulats is of folder "mft.title" with all files in it. Wich Command do I use to create a BIN or ITA files with this folder ? RE: New HD games... - chidra60 - 10-26-2015 (10-26-2015, 05:40 AM)oursonnet Wrote:(10-25-2015, 05:05 PM)is0-mick Wrote: It's probably a simple error or something. (maybe a path not correct?) RE: New HD games... - Deak Phreak - 10-26-2015 You don't need to create a bin with those files. You can run it by entering the path to the Run file in the database and stick it on your SD card. RE: New HD games... - oursonnet - 10-26-2015 (10-26-2015, 08:54 AM)Deak Phreak Wrote: You don't need to create a bin with those files. You can run it by entering the path to the Run file in the database and stick it on your SD card. ok, I test it, it's not working on my Innotab 3s. I try to open the run files in the game folder : It's empty Could you explain why it's empty ??? It will work also on a non-flashed Innotab ? |