(script)
| 1 | const helper = require("../utils/helper"); |
| 2 | function il2cpp_load_custom_script(script) { |
| 3 | const func = new Function(script); |
| 4 | try{ |
| 5 | func(); |
| 6 | }catch (e) { |
| 7 | helper.send_message("heap_search",e.toString()) |
| 8 | } |
| 9 | |
| 10 | } |
| 11 | |
| 12 | module.exports = { |
| 13 | il2cpp_load_custom_script |