-
Posts
715 -
Joined
-
Last visited
Everything posted by de2ndlaw
-
You will have thrown your money down the drain. Because the most popular website does not always have the best hackers.
-
There should be no issues doing an edit on iFile, I do that for dungeon injection all the time.
-
Which dungeon did you inject and did you inject it at the correct offset? The offset for Zahir's binary is different from Kevv's.
-
Ahh I see. Yeah that has probably been patched already. Hopefully I find a better way than manually injecting eventually though.
-
I am getting help from loads of people way better than me haha. Anyway I thought in game vortex is already possible? Or do you mean the specials thing?
-
Yes. Item injection is not toggleable for now, I will add that soon. However, just enable debug menu and you can manually enter the vortex code of the dungeon for vortex mod.
-
Try to end your settings in multi task and restart it again. Either that or Elimo does not like you
-
Thanks!
-
Help/Support CSCI patcher help: working with Writedata.h header
de2ndlaw replied to de2ndlaw's topic in Help & Support
Thanks, sent you a PM. -
Help/Support CSCI patcher help: working with Writedata.h header
de2ndlaw replied to de2ndlaw's topic in Help & Support
I see. In that case, could you please suggest a way for me to go about doing this? I have also tried writeData(0x377314, [iosgods objectForKey:@"kItemID"] intValue]); And entered an integer inside instead, but the app crashes, and I believe this is because the hex was not properly formatted into 16 bit little endian, which is what I would like it to be. -
Help/Support CSCI patcher help: working with Writedata.h header
de2ndlaw posted a topic in Help & Support
I am trying to have a hex (edit: int) value entered by the end user into a text box defined by psedittextcell in a referenced plist, to be used as a reference to replace an original hex at a certain predefined offset, looking like this: Writedata (0xOFFSET, 0x"hex value from text box"); I have tried defining a string in advance that extracts the input and formats it as 0x"8 digit hex", as that is what I want the length of the hex to be (4 bytes). I have the following code: NSDictionary *iosgods = [NSDictionary dictionaryWithContentsOfFile:PLIST_PATH]; NSString *ItemID = [NSString stringWithFormat:@"0x%08X",[[iosgods objectForKey:@"kItemID"] intValue]]; writeData(0x377314, ItemID); But this returns an error during compilation saying that the candidate function is not viable, no known conversion from "NSString*" to 'unsigned int' for 2nd argument: bool writeData (vm_address_t offset, unsigned int data) { 1 error generated. Could anyone shed some light on what I am doing wrongly? Thank you in advance!