Jump to content
UBot Underground

blueBottle

Fellow UBotter
  • Content Count

    23
  • Joined

  • Last visited

  • Days Won

    1

blueBottle last won the day on February 23 2013

blueBottle had the most liked content!

Community Reputation

1 Neutral

About blueBottle

  • Rank
    Member

Profile Information

  • Gender
    Not Telling

System Specs

  • OS
    Windows 8
  • Total Memory
    1Gb
  • Framework
    v4.0
  • License
    Developer Edition

Recent Profile Visitors

2863 profile views
  1. yeah that happens on compiled bot not because of your vps. have to play around to fix that.
  2. jquery won't work on compiled bot. Let me know if it works on yours.
  3. Ubot studio could have been a real compiler and compiled code to dot net framework at least. At the moment, it's just a wrapper around ubotstudio interpreter and the source code is still clearly visible after cracking, as clear as you code it in ubotstudio. The only way to secure is to code your main logic + licensing in plugins + obfuscate this plugins. This seems somewhat defeat the main purpose of having ubotstudio (ie as a way to code a bot without being a programmer). The "best" way to approach cracked code is to use generic bot name. Dont name your bot with unique brand name. It's too
  4. Win8 is pretty good actually, georgeous too .. and congrats on your success!
  5. Hey Guys, Is there any plugins development documentation? Have searched the forum and can't find it anywhere.
  6. Actually, just found an old post from other place: http://forums.codewalkers.com/php-coding-7/get-innerhtml-with-php-regex-936783.html regex: <([^<> ]*)([^<>]*)?>([^>]*)<\/([^<>]*)>The problem with this regex is that it matches when the opening and closing tags are not the same. For example, it matches both <div>inner text1</div> and <div>inner text2</a> Change the regex a bit to extract just the inner text. Here is the modified version with a fix to the opening and closing tags issue: (?<=<([^<>]*)([^<>]*)?>)([^&
  7. Hey pftg4, Thanks for your speedy response. That code doesnt seem to work in my ubot, does it work on yours? I got 0 items in %test. I modified it a bit since the html code will be stored in a variable such as #codes or as list item. set(#codes, "<div test=\"asdf\" asd=\"adfasdf;:\"><body><div test><div test>test1</div></div></div> <div test>test2</div> <div test=\'dsf\'>test3</div> <div test1=\"dasdf\" test2=\'asdf\'>test4</div> <div test></div></body>", "Global") add list to list(%test, $scrape
  8. Hey fellow UBot, My first post here, got a problem in my first bot that I am dying to finish. Have been doing this little project for a few days so it's time to ask for help. Please help! I use regexbuddy trial but since I am new to UBot and this tool, I am not quite there yet. Here is my problem, I am trying to get test1, test2, test3, test4 from the following html text: <div test="asdf" asd="adfasdf;:"><div test><div test>test1</div></div></div> -->fail <div test>test2</div> --> regex found test2 (good) <div test='dsf'>test3&l
×
×
  • Create New...