Jump to content

derbeyonder

Members
  • Posts

    9
  • Joined

  • Last visited

Additional Information

  • Android
    6.x
  • Device
    Samsung Note4

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

derbeyonder's Achievements

Rookie

Rookie (2/14)

  • Dedicated Rare
  • Reacting Well Rare
  • First Post Rare
  • Conversation Starter Rare
  • One Year In

Recent Badges

0

Reputation

  1. Thank you very much. Problem solved. Game=Farmville 2 Contry Escape Script Function=Sell Goods for 0 coin Please note: When game version is updated, you must find and change method offset address in dump.cs Script Code: GVersion = '24.9.100' if GVersion~=v.versionName then print("This Script is for Game Version:\n"..GVersion.."\nYour Game Version is:\n"..v.versionName) gg.setVisible(true) os.exit() return end if gg.isVisible(true) then gg.setVisible(false) end v = gg.getTargetInfo() if v.x64 then lib_address = gg.getRangesList('libil2cpp.so')[1].start method_address = lib_address + 0xF91EE4 base_address = method_address target_address = base_address + tonumber(40) gg.setValues({{address = target_address, flags = 4, value = "~A8 MOV W23, WZR"}}) else lib_address = gg.getRangesList('libil2cpp.so')[1].start method_address = lib_address + 0x938724 base_address = method_address target_address = base_address + tonumber(20) gg.setValues({{address = target_address, flags = 4, value = "~A MOV R9, #0"}}) end
  2. Offset: 0xF91EE4 this is the method offset address in libil2cpp.so why is this address different in gameguardian (0DF91EE4)? my working script: base_address = '0x0DF91EE4' target_address = base_address + tonumber(40) gg.setValues({{address = target_address, flags = 4, value = "~A8 MOV W23, #0x1"}}) when i change base_address to 0xF91EE4, the script did not work. when i change value = "~A8 MOV W23, #0x1" to "~A8 MOV W23, #0x0" i got en error (its's not important. i have no problem in game when i make #0x1)
  3. this is 64 bit. what do i have to find and change here?
  4. Thank you very much. It worked. Next question: 1. Does the address I changed to #0 have an offset address in dump.cs? If not, how can I find the first 8 bytes of hex, from the address I changed with gameguardian, in libil2cpp.so file with a hex editor and change it to 00 00 A0 E3 1E FF 2F E1? 2.Or how can i make a simple gameguardian script? (I apologise for asking this question. I know how to make lua scripts. i have already made several lua scripts. but i can't figure out how to do it now. maybe i can figure it out later.)
  5. I don't know how to do this. i just want to make a simple script. is this possible?
  6. // RVA: 0xF91EE4 Offset: 0xF91EE4 VA: 0xF91EE4 public SeafarerOffer CreateOffer(string itemId, int amount, int price, bool p_allianceOnly, bool post = True) { } How can I change only "int price" value to 0 with the Offset? If I change the Offset to 0, all other values in the Offset are also changed. public class SeafarerOffer // TypeDefIndex: 13541 { // Fields public string id; // 0x10 public string itemId; // 0x18 public int amount; // 0x20 public int price; // 0x24 public string costItem; // 0x28 public string status; // 0x30 public string seller; // 0x38 public string buyer; // 0x40 public int voyage; // 0x48 public long createdAt; // 0x50 public bool autoBuy; // 0x58 public int autobuyTime; // 0x5C public AuctionOffer.State tradeState; // 0x60 public string trade_service_id; // 0x68 public string errorType; // 0x70 public bool allianceOnly; // 0x78 public const string STATUS_AVALIABLE = "available"; public const string STATUS_SOLD = "sold"; public const string STATUS_DELETED = "deleted"; If I change the value of the Fields "public int price; // 0x24", it does not work. Do I have to combine the Offset with the Fields? If yes, how?
  7. script code: local results = gg.getResults(gg.getResultsCount()) for i,v in ipairs(results) do gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber(v.address - 0x0, gg.TYPE_DWORD) end log file: gg.getResultsCount() gg.getResults(6) --[[ count: 6 ]] gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber(1666332864, gg.TYPE_DWORD) --[[ found: 0 ]] gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber(1666333760, gg.TYPE_DWORD) --[[ found: 1 ]] gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber(2085230528, gg.TYPE_DWORD) --[[ found: 0 ]] gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber(2090407328, gg.TYPE_DWORD) --[[ found: 2 ]] gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber(2123701312, gg.TYPE_DWORD) --[[ found: 0 ]] gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber(2195650848, gg.TYPE_DWORD) --[[ found: 1 ]] when i run the script only the 2nd, 4th and 6th results are searched. but in the log file all 6 results are shown as searched. pointer.mp4
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.