Jump to content
UBot Underground

Jaro

Fellow UBotter
  • Content Count

    72
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by Jaro

  1. My Windows 10 Defender and also Gmail attachment scan says that there is a avirus on my compiled bot. The virus is: Trojan:Script/Wacatac.B!ml

     

    My computer is super clean and new and I have no viruses and also did the whole recommended procedure already which is remove the whole Ubot and also from the appdata folder and reinstal and open in the administrator mode, etc... the problem is not that I cannot open Ubot, but that my compiled bots are scanned as containing a virus.....Please advise.

  2. I created a ticket here. Their reply first was this: 

     

    Please try the following

    1. Uninstall your current version of UBot Studio
    2. Open Windows Explorer (the main file browser for Windows)
    3. In the address bar, type "%appdata%" and the Roaming folder
    4. Locate the UBot Studio folder
    5. Delete it

    If you have any 3rd party plugins make sure that you have those backed up. I would also reboot your computer after doing the uninstall to ensure that there are no residual UBot files running in memory.
    Important:

    Disable any AV, Anti-Malware software, Firewall, Proxies as well as Microsoft's User Account Control. Make sure your internet connection has a decent speed. Once UBot Studio is running these apps can be added back to ensure UBot is not disabled by them. NOTE: If you are using Windows Defender then you will have to triple-check that it is disabled or fixed in such a way that it is not impairing UBot.

    Download Link:

    https://ubotstudio.com/files/Setup.msi

    Please run UBot studio as an administrator.

  3. Actually, no, the real problem was not a mistake in my code but that it actually really doesn't work in the 6.7 version - but once I installed Ubot 6.3.1 - the "add test to image" suddenly works ok... Can you please tell me if somebody can use that function in later versions? I have Winwdows 8.1, could that be a problem too?

  4. The following script creates a table, then puts it in a list so that we can loop through the lines. It removes every line that doesn't contain ,yes,yes. Then it simply creates a new table, this time with the updated list.

    clear all data
    create table from text(&Christians,"Name,Religion,Do you sometimes read The Bible?,Is Jesus the only way to Heaven?
    John,Christian,yes,no
    Bob,Christian,no,yes
    Stefanie,Christian,yes,yes
    Alena,Christian,yes,yes
    Suzan,Christian,no,no
    Rebecca,Christian,yes,yes
    Jessica,Christian,yes,yes
    Alex,Christian,yes,yes
    Franco,Christian,no,yes
    Benedict,Christian,yes,no
    Feona,Christian,yes,no
    Samantha,Christian,yes,yes")
    add list to list(%Christians,$list from text(&Christians,$new line),"Delete","Global")
    set list position(%Christians,0)
    loop while($comparison($list position(%Christians),"< Less than",$list total(%Christians))) {
        if($not($contains($next list item(%Christians),",yes,yes"))) {
            then {
                remove from list(%Christians,$subtract($list position(%Christians),1))
                set list position(%Christians,$subtract($list position(%Christians),1))
            }
            else {
            }
        }
    }
    create table from text(&REAL_Christians,"Name,Religion,Do you sometimes read The Bible?,Is Jesus the only way to Heaven?
    {%Christians}")

  5. Hi guys,

    I've been using the function "Add text to image" in my older script and I know that that it didn't work I had to add verify image libraries or something like that.. that was about a year ago and now I updated Ubot and that command doesn't even exist and what's even worse, now the "Add text to image" doesn't work anymore - it says that there' some traceback error and missing parameter in the image.py file in the Libraries,etc... How can I solve this problem?

    Thanks for any help!
     

  6. If you are interested in a nice solution, so far I solved it and it works also in compiled bots with this .bat file:

     
    @echo off
    set "file= your_sound_file_path.mp3"
    ( echo Set Sound = CreateObject("WMPlayer.OCX.7"^)
      echo Sound.URL = "%file%"
      echo Sound.Controls.play
      echo do while Sound.currentmedia.duration = 0
      echo wscript.sleep 100
      echo loop
      echo wscript.sleep (int(Sound.currentmedia.duration^)+1^)*1000) >your_sound_file_path.vbs
    start /min your_sound_file_path.vbs
     
    ...and then just run it for example like this:
    plugin command("Advanced Shell.dll", "shell hidden", "{$special folder("Application")}\\your_bat_file_path.bat", "Yes")
     
     
    To make your alerts even cooler, you can have your compiled bots even talk to you using text to speech services like this: https://readloud.net/english/american/2-girl-s-voice-sally.html
     
     
    Hope that helps and have a great day!
  7. Hi,

    I tried many times to compile a bot to include the support files - with the installer, but it always shows an error message: "MakeNSIS does not exist!"
     
    1.) Please tell me what to do to correct this error.
    2.) Also, is there a temporary solution like where are the files I could just go ahead and manually copy and to which location on the new PC?
     
    Grateful for any help!
     
    UPDATE: Ok, I've just found out that if I add the command Exbrowser download support files that it works now..
  8. Thank you Nick,

    yes, I know about the navigating...I meant navigating inside a "in external window" ubot command. I wanted to find a way how to come back to specific windows that executed some commands within and then the script continued outside of that particular "in external window" command....Anyway as I see that it's not possible as it is with the Exbrowser plugin, I just changed my coding so that I don't need to switch between windows.

  9. Ok, it actually isn't so simple...it stopped to work again...and I think that I finally found the complete solution...so after switching between the code and graphic mode you need to run the command "verify image libraries" and then also the "add text to image" commands should work

  10. I found out that Ubot has a bug that from time to time the "add text to image" command simply messes up itself and you can also see that by noticing that the names of the individual fields inside that command just disappear...if you switch to the code mode and back, all comes back to normal..

×
×
  • Create New...