Navigation

    OpenBullet

    OpenBullet

    • Login
    • Search
    • Categories
    • Recent
    • Popular
    • Users
    • Groups
    • Awards
    1. Home
    2. Br4uN
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Br4uN

    @Br4uN

    52
    Reputation
    206
    Posts
    395
    Profile views
    12
    Followers
    1
    Following
    Joined Last Online

    Br4uN Follow
    General Mod

    Posts made by Br4uN

    • RE: send hits to my telegram

      @n3X3 Here we go 👇

      https://api.telegram.org/bot[Token_Here]/editMessageText?chat_id=-[Chat_Id_Here]&message_id=[Message_ID(ToModify)]&text=[New_Messaje_Here]
      
      posted in Questions
      Br4uN
    • RE: How to parse the whole answer

      @durdekosto Just add a parse block and don't touch anything 😂

      PARSE "<SOURCE>" LR "" "" -> VAR "" 
      
      posted in Questions
      Br4uN
    • RE: Hits Date Name

      @beyto For first question about File Name you could do something like this 👇

      #FUNCTION_Time FUNCTION CurrentUnixTime -> VAR "Time" 
      FUNCTION UnixTimeToDate "MM-dd-yyyy" "<Time>" -> VAR "FileTime" 
      SET NEWGVAR "FileDate" "<FileTime>"
      #UTILITY_File_Result UTILITY File "Test-<FileDate>.txt" AppendLines "<All_My_Info_Here>" -> VAR "File" 
      

      The rest could be done using some markdown, search on internet for note++

      posted in Questions
      Br4uN
    • RE: Parse choose next

      @beyto if you want to use JToken
      PARSE "<DataSource>" JSON "menu.id" JTokenParsing=TRUE -> VAR "MyCaprute"

      posted in Questions
      Br4uN
    • RE: How can I sort Hits depending on the capture

      @Planet
      Maybe the out variable did not match any key

      posted in Questions
      Br4uN
    • RE: cannot parse environment.ini

      @n3X3 could you please show the new WLTYPE you added, so community could see what is the ERROR

      posted in Questions
      Br4uN
    • RE: How else can i parse this

      @Rey-Aw which one have you tried already?

      posted in Questions
      Br4uN
    • RE: How to parse this?

      @Rey-Aw
      Using LR should be fine

      PARSE "<SOURCE>" LR "" "</strong>" -> VAR "MyCaprute" 
      

      but if source data get complicated 👇

      PARSE "<SOURCE>" REGEX "([0-9]){0,}(<\\/strong>)" "[1]" -> VAR "MyCaprute" 
      
      posted in Questions
      Br4uN
    • RE: REGEX FOR EMAIL OR USERNAME ONLY

      @XNGGX
      You can use this one provided by OB

      [^@][email protected][^\.]+\..+
      posted in General Discussion
      Br4uN