Cydia giving me errors while trying to install my own game mod .debian file?

Options
Jaye Sawyers
Jaye Sawyers Posts: 1
edited August 2015 in iPhone Apps Forum
Hey guys, ive recently ran into an error created now the 3rd release for a slots game on Facebook called Heart Of Vegas.

The first two install completely fine, but because im lazy and just unpackage my .deb file and edit everything cydia has tricked itself into thinking the 3rd release (different slot machine in game)
I've made sure the package name is the exact same, it displays as a different mod and depiction etc but still have had no luck, here is my error code i'm receiving with cydia:
image

Ifile shows me a MV error aswell.

My PostINST:
#!/bin/sh
echo "+------------------------------------------+"
echo "| Heart Of Vegas More Chilli Premium [1.0.1] Installer|"
echo "+------------------------------------------+"
#Checking for iOS 8 and using new Installation Method
echo "Checking iOS Version..."


container="8"


OSbuild=`sw_vers -productVersion`


dam=${OSbuild%%.*}


for stuff in $container
do
if [ "$stuff" == "$dam" ]; then
echo "iOS 8 detected, using new installation Path"
apps=/var/mobile/Containers/Data/Application/*
else
apps=/var/mobile/Applications/*
fi
done;

for appdir in $apps
do
if [ -d $appdir"/Library/Application Support/com.productmadness.hovmobile/Local Store/hovmobile/packages/" ]; then
path=$appdir

echo "Killing Process..."
killall "Heart Of Vegas"


echo "App Pfad: "$appdir



mv $path "/Library/Application Support/com.productmadness.hovmobile/Local Store/hovmobile/packages/"


mv "/packages/morechilli.zip" $path"/Library/Application Support/com.productmadness.hovmobile/Local Store/hovmobile/packages"
echo
fi
done;
echo ""
echo "Check the forums for updates on the mod & new releases! http://******** !!!"[/spoil]

control:

Architecture: iphoneos-arm
Author: LayA >
Depends: unrar, darwintools
Description: every spin a free feature is triggered, win big off a tiny spin, spins cost 0$
Maintainer: LayA@gamemodderz.com
Name: HoV More-Chilli Premium
Package: com.mcpmod
Section: Mods
Version: 1.0-1
Website: http://gamemodderz.com/forum/


[quote]My Layout of the debian:
---com.mcpmod
--DEBIAN -- packages [both in the com.mcpmod folder]
| | |===== morechilli.zip
| | -------------
postinst -- control |[/quote]

Comments