THE FORUM IS IN READ-ONLY MODE
This forum is in read-only mode. The new forum is live at https://discourse.openbullet.dev and registrations are open!
Is it possible for Differnent Point Value Hits go into Different Files
-
Is it possible to do the following, and if so, how?
1-5 points --> hitfile1.txt
5-10 points --> hitfile2.txt(all within the same config preferably)
And so on..Any help would be greatly appreciated
-
Hi @Jurta
See if it can help you bro https://forum.openbullet.dev/topic/60/saving-hits-directly-to-a-textfile
-
@Jurta
in your case you have a conditional and assuming there is only to different out come "5 points" and "10 points" or you only want to save this two captures.There are a few ways to do that here is an example according with info provide
#PARSE_Points PARSE "<RESULT>" LR "" "" -> VAR "POINTS" IF "<POINTS>" EqualTo "5 points" #UTILITY_File_1 UTILITY File "hitfile1.txt" AppendLines "<POINTS>" -> VAR "File1" ENDIF IF "<POINTS>" EqualTo "10 points" #UTILITY_File_2 UTILITY File "hitfile2.txt" AppendLines "<POINTS>" -> VAR "File2" ENDIF