How can i save custom hits in text file (mean by utility function )?
-
As i see Ob just save hits in text but not the custom is that possible ?
if yes than please reply ...
-
@Anon24
This is an example, it could be done by many ways#PARSE_1 PARSE "<SOURCE>" LR "" "" -> VAR "MyCustonCapOrHits1" #PARSE_2 PARSE "<SOURCE>" LR "" "" -> VAR "MyCustonCapOrHits2" UTILITY File "MyFileName.txt" AppendLines "<MyCustonCapOrHits1>\\n<MyCustonCapOrHits2>" -> VAR "SaveOnTextFile"
-
Thanks for the Reply
-
this will not work because it will only save hits like this , tell you i want to save custom how can this same way will work for custom , i think we need condition to put that in custom so that it goes in custom.txt.. and tell me other ways also.
-
#Save UTILITY File "FileName.txt" Append "<USER>:<PASS> " -> VAR "Save"
-
You can do like this ,
IF "<Plan>" Contains "Custom"
UTILITY File "Custom.txt" AppendLines "<USER>:<PASS>\nPlan etc."
ENDIF
IF "<Plan>" Contains "Premium"UTILITY File "Premium.txt" AppendLines "whatever"
ENDIF