Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- No guarantee is provided that these will not mess something up. They have been tested against known good
- scripts, and those scripts were compiled properly. Use of these replacements is taken at risk by the user
- and as with any major edit, you should always make a backup before changing anything big with your code.
- Converts MCM Get/SetUIFloat/String in many places, mostly for RESET replacement
- Search: ([sSgG]et)UI(Float|String) "StartMenu\/(MCM)\/((\*\:*)(\d*))\/((\*\:*)(\d*))\/(\w*\/((\*\:*)(\d*))\/\w*|\w*\/\w*|\w*)"
- Replace: $1$3$2 $6 $9 "$10"
- Matches: G/SetUIFloat/String "StartMenu/MCM/*:#/*:#/_____"
- Matches: G/SetUIFloat/String "StartMenu/MCM/*:#/*:#/_____/_____"
- Matches: SetUIString "StartMenu/MCM/*:#/*:#/value/*:#/string"
- Converts MCM Conditionals:
- Search: ([sSgG]et)UI(Float|String) "StartMenu\/(MCM)\/(\w*)"
- Replace: $1$3$2 0 0 "$4"
- Matches: G/SetUIFloat "StartMenu/MCM/_____"
- Converts edge case conditionals such as Mouseover, as well as settings such as column count
- Search: ([sSgG]et)UI(Float|String) "StartMenu\/(MCM)\/((\*\:*)(\d*))\/(\w*)"
- Replace: $1$3$2 0 $6 "$7"
- Matches: G/SetUIFloat "StartMenu/MCM/*:#/_____"
- Converts Mouseover settings:
- Search: ([sS]et)UI(Float|String) "StartMenu\/(MCM)\/(\*\:9|MCM_Info)\/(\w*)"
- Replace: $1$3$2 9 0 "$5"
- Matches: SetUIFloat "StartMenu/MCM/*:9/_____"
- Matches: SetUIFloat "StartMenu/MCM/*:9/MCM_Info"
Advertisement
Add Comment
Please, Sign In to add comment