Solved. All you got to do is to extract your DSDT and your SSDTS. Find the ssd that contain the ADJP and PSS method and put it in patched folder of your ACPI in your macOS's EFI folder. Then if you have another error, something about PSR just edit your DSDT and go to PSR method delete some texts and save it.
here is the example
Original For Clevo laptop.Method (_PSR, 0, NotSerialized) // _PSR: Power Source
{
If (LEqual (^^WMI.HKDR, Zero)) //WMI: Some Windows thing?
{
If (LOr (\_TZ.TZ0.PPFG, LOr (^^PCI0.LPCB.EC.B15C, GPSF))) {}
ElseIf (And (PSF1, 0x30))
{
ADJP (Zero) //What's this? ADJP not in the ACPI spec.
}
}
Return (ACFG)
}
Delete this If (LEqual (^^WMI.HKDR, Zero)) //WMI: Some Windows thing?
{
If (LOr (\_TZ.TZ0.PPFG, LOr (^^PCI0.LPCB.EC.B15C, GPSF))) {}
ElseIf (And (PSF1, 0x30))
{
ADJP (Zero) //What's this? ADJP not in the ACPI spec.
}
}
Last, it should be like this
Method (_PSR, 0, NotSerialized) // _PSR: Power Source
{
Return (ACFG)
}
Save your DSDT and your good to go.
Thanks this thread is solved