I used Flex to get the info I needed and used Flex to test the tweak so I know its the correct info and it works. As many of you know you cannot use Flex to distribute your tweak so you must create a debian package for Cydia. In my Tweak.xm I have this code:
%hook FBUserPreferences
-(BOOL) isEmployee
{
return TRUE;
}
%end
This is meant to be a tweak to allow Facebook internal settings, also known as employee settings, but when installed it does not work. Please help, what did I do wrong in the Tweak.xm?