Skip to content

Instantly share code, notes, and snippets.

@TLMcode
Last active December 19, 2015 17:18
Show Gist options
  • Save TLMcode/5989797 to your computer and use it in GitHub Desktop.
Save TLMcode/5989797 to your computer and use it in GitHub Desktop.
; FantomX, change all below instances found in your script
; from
IfExist, WormKitModules\wkPackets.dll
IfExist, WormKitModules\wkWormNAT2Ex.dll
; to
If (FileExist("WormKitModules\wkPackets.dll") && FileExist("WormKitModules\wkWormNAT2Ex.dll"))
; from
IfExist, wkPackets.dll
IfExist, wkWormNAT2Ex.dll
; to
If (FileExist("wkPackets.dll") && FileExist("wkWormNAT2Ex.dll"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment