Jump to content
UBot Underground

Leaderboard

Popular Content

Showing content with the highest reputation on 10/26/17 in all areas

  1. Hi Marton, in code view remove the 2 backslashes from this part of your code: \{#myvariable\} so that in node view it looks like the second image. first second
    2 points
  2. http://77thcloud.com/guihero/salesthread/gh.jpg You will be hard pressed to find a more user friendly tool that enables you to create ubot GUI's as quick and as easy as what GUI Hero does! Plus GUI Hero is packed with more features and elements than you will find in any other tool! http://77thcloud.com/guihero/salesthread/hero1.png http://77thcloud.com/guihero/salesthread/hero2.png Other than ubot's default UI Editor, GUI Hero is the only tool that features TRUE drag and drop functionality for ubot GUI creation! Screenshot of GUI Hero: http://77thcloud.com/guihero/salesthread/h
    1 point
  3. Worked like a charm
    1 point
  4. <select id="mys" list="#listado" list-fillwith="options" class="form-control" multiple onchange="doIt();"> </select> <script type="text/javascript"> function doIt(){ ubot.runScript("updateValues(" + JSON.stringify($("#mys").val().join(", ")) + ")"); } </script> I get it working using this. Well now I can use a SELECT multiple, and store those values elsewhere to use them in the ubot code.
    1 point
  5. Hi. They are "hidden" in the secret Files section of the facebook group And that Files section / button moved couple of weeks ago, when facebook restructured the groups menu. So go to the group and take a look at the left side. Search for "Files". Click it and you will see the files. There is one called "HTTP Plugin Tutorials Download LINK". That one should point you into the right direction. Cheers Dan
    1 point
  6. You could just check the time and say if its between these times then call another command, and if not then don't do anything. Edit: something like this: define CheckTime { set(#hour,$plugin function("DateTime Manipulation.dll", "$datetime manipulation", $date, "UBOT", "HH", "en-US", "en-US"),"Global") if($both($comparison(#hour,">= Greater than or equal to",8),$comparison(#hour,"<= Less than or equal to",18))) { then { MyCommand() } else { } } }
    1 point
  7. http://77thcloud.com/newgenuib/thread/threadp1.png Watch the video below to see for yourself just how easy it is to create a customized ui that looks truly amazing..... http://77thcloud.com/newgenuib/thread/threadp2.png Watch the video below for an actual demonstration of the hidden fields, conditional fields, popups and progress bars in action..... Another awesome feature that is not generally possible to do in uBot, and one you will not find in any other builder is the ability to "Refresh" the UI in the UI HTML Panel Demo of refreshing UI in UI HTML Panel New Feature Adde
    1 point
  8. http://77thcloud.com/amazingtables/salesthread/all.jpg The tables created are displayed in the browser only Uses Aymen's File Management Plugin, it's Free. Requires pash's Advance Dialog Plugin to use the Context Menu, Dropdown Option and Hide Column features http://77thcloud.com/amazingtables/salesthread/buy.jpg NOTE: If you have purchased the Dynamic Table Creator then let me know the paypal email you purchased it with to upgrade to this one for free. See post below for Tutorial Videos...
    1 point
  9. you can,below is an integer,if a string be sure to put quotation marks,and put the ubotVariable inside the quotation marks set(#ubotVariable,5,"Global") run javascript("var ubotV= {#ubotVariable}") alert($eval("ubotV"))
    1 point
  10. use $eval command set(#a,$eval("var my = \"Good Day\"; my;"),"Global") alert(#a)
    1 point
×
×
  • Create New...