For Dynamic Obfuscation, Use dumps commands

See explanation of DUMP COMMANDS for more information before.

Place these mandatory dump commands

For Dynamic Obfuscation, you MUST use DUMP comment commands.
Add these 4 function calls at the very beginning of your script in your Auto-execute section :
;*******************************************************************************

obf_dumpcommonobjfrags()
obf_dumpunclassed()
obf_dumpunsecclasses()
obf_dumpall()
;*******************************************************************************
Then add the functions containing the Obfuscator DUMP comment commands below in the code, after your Auto-execute section
to actually make the dumps when the script will be obfuscated
;*******************************************************************************

;         O B F   D U M P   F U C T I O N S
;*******************************************************************************
;$OBFUSCATOR: $FUNCS_CHANGE_DEFAULTS: ,, -1
obf_dumpcommonobjfrags()
{
global
;$OBFUSCATOR: $DUMP_SECFRAGS_FORCLASSES: common
;$OBFUSCATOR: $DUMP_TMESSFRAGS_FORCLASSES: common
}
;$OBFUSCATOR: $FUNCS_RESTORE_DEFAULTS:

;$OBFUSCATOR: $FUNCS_CHANGE_DEFAULTS: ,, -1
obf_dumpunclassed()
{
global
;$OBFUSCATOR: $FUNCFRAGS_DUMPCLASS: unclassed
;$OBFUSCATOR: $LABELFRAGS_DUMPCLASS: unclassed
}

obf_dumpunsecclasses()
{
global
;$OBFUSCATOR: $FUNCFRAGS_DUMPCLASS: unsecclasses
;$OBFUSCATOR: $LABELFRAGS_DUMPCLASS: unsecclasses
}
;$OBFUSCATOR: $FUNCS_RESTORE_DEFAULTS:

obf_dumpall()
{
global
;$OBFUSCATOR: $ALLFRAGS_DUMPALL:
}

ALLFRAGS_DUMPALL Command

This command is a shortcut to dump in one place all necessary fragments, which could have individually be stated by the following commands
;$OBFUSCATOR: $GLOBVARFRAGS_DUMPALL:

;$OBFUSCATOR: $GLOBPARTIALVARSFRAGS_DUMPALL:
;$OBFUSCATOR: $LOSVARFRAGS_DUMPALL:
;$OBFUSCATOR: $SYSVARFRAGS_DUMPALL:
;$OBFUSCATOR: $PARAMFRAGS_DUMPALL:
;$OBFUSCATOR: $SYSFUNCFRAGS_DUMPALL:
;$OBFUSCATOR: $SYSPROPERTIESFRAGS_DUMPALL:
;$OBFUSCATOR: $SYSMETHODSFRAGS_DUMPALL: