Last active
December 19, 2015 17:18
-
-
Save TLMcode/5989797 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; 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