Show your tweak.xm and il send you tweak.xm and .plist with it fixed.
Use it like this, in Tweak.xm where you see
if(GetPrefBool(@"key1")) { //If you dont see this, you should use DiDA's templat because this is what differentiates tweak from patcher. Set the key corresponding to hacked functionput any key like "item", "resource" etc.
In your .plist, default is
<dict>
<key>cell</key>
<string>PSSwitchCell</string> //Type of cell
<key>default</key>
<false/> //By default, switch is off
<key>defaults</key>
<string>com.yourcompany.hack</string> //the bundle name you assigned to this (not the games bundle id, the one which you put like com.archangel.hack)
<key>key</key>
<string>key1</string> //The key name in your tweak.xm corresponding to this switch (eg.resource. items etc)
<key>label</key>
<string>SwitchName</string>//What you want others to see (check with key)
</dict>
Your .plist dict for that one will be
<dict>
<key>cell</key>
<string>PSSwitchCell</string>
<key>default</key>
<false/>
<key>defaults</key>
<string>iosgod</string>
<key>key</key>
<string>Resources</string>
<key>label</key>
<string>Resources Hack</string>
</dict>
EDIT: Fixed some code tag issues