Jump to content
UBot Underground

Patrick_

Fellow UBotter
  • Content Count

    11
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by Patrick_

  1. This snippet might be useless for some, but it helped me out allot  :P

     

    Normally I would use the restart app plugin but i'm still having some problems with that one.

     

    Now i'm using a simple batch solution to schedule my apps, running 5 days now and no problems so far!

     

     

    loop.bat
    @echo off (Hide CMD logs)

    :loop
    taskkill /f /im ubot_bot.exe
    timeout /t 5 >null
    start "C:\Users\Administrator\Desktop" ubot_bot.exe
    timeout /t 3600 >null
    goto loop 
    

    With Onload snippet from Kreatus it works like a charm   :D

     

    Ubot built in onload loads immediately after you open your bot. The reason it freeze. Its trying to execute everything at once.

    This one will wait until the bot is fully loaded then execute your script.

    ui html panel("<script type=\"text/javascript\">
        window.setTimeout(function() \{ ubot.runScript(\'autoload()\') \}, 1000)
    </script>", 0)
    
    define autoload {
    alert("HELLO MARS")
    }
    • Like 2
  2. I had tons of help from this community and learned so much from you guys, so i thought maybe i can give something back once a while  :P

     

    Special thanks to a2mateit

     

    For this tutorial you need Aymen's HTTP plugin that can be found here :

    http://www.ubotstudio.com/forum/index.php?/topic/12837-sell-http-post-plugin-crazy-bonuses-inside/

     

    And you need a basic base64 converter :

    http://webcodertools.com/imagetobase64converter

     

    First convert your image with webcodertools and copy the image tag :

     

    http://i.imgur.com/LfMVMf8.png

     

    Then copy it into $html decode from Aymen's HTTP plugin :

     

    http://i.imgur.com/dmkFqXj.png

    ui stat monitor("", #status)
    
    set(#image01, " {$plugin function("HTTP post.dll", "$html decode", "<img alt=\"\" src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAuFJREFUeNp0U11IU2EYfjadTtLNqVNRpzKn0xWJf8uwzJoJJhphPyqCeFHgpRASOZSJ2oWXBmYX2YWYltoPGv6GIZgLLRUctJzW3Oa24zb3U+lRWOdMkaX2wsPL937v85yH834vw+12wzuaX1WEUOkeBSmFDAo+FOYP0CG/1UN49zO8BRS9dx75swIepMSkIZwbjTBOJBgMJjYdGyAoqNbnsU3+bmss66s7JtDQXaoQ8EUNl8+WQK2bw/rmKmwuK+h7XmAIokLjcDo2G9PLI1g1qhqbKgeaDgUedl1XxEeIG7LEFzC19A5RISlIiT2H6NAEMCkHeosGav0XrBnncSm1GIuaOWgMyy2t1W/ljPudhdH+fgG6kvMVGJvrh1RchILMShwNgiCwsD6OmeU3uCa9jWFlP35tO2KYuyRZIxGk4+v3DxBGpp9IViqVqK2tRXZiMdIS8jGrGkVi9BnQXCa5Qxax/XyhNxmRJb56Irm9vR1yuRxBQUHITMqHwWzCKbY/KO4N2oHkz54VNrsVkSHx/yUnJyd7auE8AaxbFjh3CNqBiHZAWuwm7O7sAUfehMvlApPJ9HzZO3Z3SGw5CdoBaIEVu8NBWeLAQKz90yiTyVBVVYX6+nqQJOmpbRA/qF4u7E47LaD1EUuDBf5sdq4gIgEbZh0yJHn/iAiFQuTk5IDD4XjOQx+fg8lyw2Izwmqx9tAOOnRaPVgBbswujeLl6ONjP5LP53vy4EQnxmZeIJDLhvanjnbQ4fPt85bzWX8ra9O6kVskK8f7yR6YLTqE8SIRzNkn6owaDIw9wdBUF0oKyjE+PQi7zd4y3LHed/iU86v59bwwbnNp4V1otWtYWP4E86bBcxfKC0eqJBuJohT0jzyFxWSrm+gi2o4tU14lT+HL8m0QJSZBmnoFcVH7o9ObNFAuTkKtVtHTaprqtjWeuI10XCwLiqVSDYWbFEQHZXo8r+l1nu51rnj3/xVgAILtTWuORi/NAAAAAElFTkSuQmCC\" />")}", "Global")
    
    set(#status, "{#image01}  Connecting to the server", "Global")
    

    And your done! 

     

    http://i.imgur.com/i9Siaw4.gif

     

    For CSS monitors make sure to use the "Innerhtml" to pick up the image

     

    http://i.imgur.com/vPOc8y8.gif

     

    So far i only can do it with aymen's http plugin, wondering if its possible with ubot standard resources.

    If there is a other way, please post in comments, thank you!

    • Like 2
  3. Hello there, ubot community!

     

    First of all nice to meet everyone here,

    Last night I purchased the developer edition as an investment for my business.

     

    Now I've been looking some videos, but so far everything is being explained using the visualizer and not with code.

    I have 8 years of experience in programming, so my first question is, should I bother with the visualizer, or should I go straight with coding?

     

    Also, is there any sort of ebook, or an actual book I can get to learn the syntax, or commands, but mainly the syntax as the commands are kinda self explainatory for a programmer.

     

    Thanks, hope I will be contributing to the forum myself in the future

     

     

×
×
  • Create New...