Jump to content
UBot Underground

hienquoc

Members
  • Content Count

    87
  • Joined

  • Last visited

Posts posted by hienquoc

  1. Can you allow it to decrement and increment time more than 1440 minutes? maybe 7 days would be more than enough for me
     

    alert($plugin function("Advanced DateTime.dll", "$datetime decrement", 0, 0, 0, 0, 1440, 0, 0, "", "UBOT (MM/dd/yyyy HH:mm:ss)", "UBOT (MM/dd/yyyy HH:mm:ss)"))
  2. Hey Pash,

     

    I want to be able to round to the nearest 0.5 so that
    1234.11111 returns 1234.00
    1234.4444 returns 1234.50
    1234.5444 returns 1234.50
    1234.8444 returns 1235.00

    and using this function seems to not include the decimal and adds the 5 to the end of the number

    alert($plugin function("Advanced Ubot.dll", "$math option", 123456.89008043, "Round", "", 1, "#.5"))

    is there a way to do that to round to the nearest 0.5, 0.10, 0.05, or 0.001 
    can i make this a feature request if it doesn't?
  3. Hey Pash,

     

    I think i found a bug, or you didn't intend for us to use it this way.

    I have nested switch statements. When I manually set to go into first Switch, it goes into the right case, then the second switch, it goes into the right case, but then ends up going in the first switch statement in the wrong case, when its suppose to just kick out of all the switch function, it should only print the first alert "entered 1" and not the next one "entered 2"

    plugin command("Advanced Ubot 2.dll", "switch", "true") {
        plugin command("Advanced Ubot 2.dll", "case", "true") {
            plugin command("Advanced Ubot 2.dll", "switch", "false") {
                plugin command("Advanced Ubot 2.dll", "case", "true") {
                }
                plugin command("Advanced Ubot 2.dll", "case", "false") {
                    alert("entered 1")
                }
            }
        }
        plugin command("Advanced Ubot 2.dll", "case", "false") {
            set(#trailFrom,"Entry Price","Local")
            alert("entered 2")
        }
    }
     

  4. Hey Pash,
    When I use
    set(#timer One,$plugin function("Advanced DateTime.dll", "$datetime count up/down", "11/01/2019 11:02:00", "UBOT (MM/dd/yyyy HH:mm:ss)", "m"),"Global")


    if I just count for only hour or minute, nothing returns i have to do h:m for something to come back, Can you update it so I can only return hour or minutes

  5. Hey Pash

    After the update the display is fine but now no timezone i select converts, it just shows blank no matter what i select
     

    $plugin function("Advanced DateTime.dll", "$datetime converter", "10/06/2019 16:41:43", "UBOT (MM/dd/yyyy HH:mm:ss)", "UNIX", "(UTC-06:00) Central Time (US & Canada)", "(UTC) Coordinated Universal Time", "en-US", "en-US")

  6. Hey Pash
    for UTC = 0
    using
    $plugin function("Advanced DateTime.dll", "$datetime get time zone mapping", "")

    "(UTC+00:00) Dublin, Edinburgh, Lisbon, London" for example

    $plugin function("Advanced DateTime.dll", "$datetime converter", "10/06/2019 16:41:43", "UBOT (MM/dd/yyyy HH:mm:ss)", "UNIX", "(UTC) Dublin, Edinburgh, Lisbon, London", "(UTC) Coordinated Universal Time", "en-US", "en-US")

    When selected in mapping can you make it also match in the converter, its missing the "+0,00" part so when i use the mapped format in the converter it doesn't spit out a conversion because the formating is different.
     

    and have to use "(UTC) Dublin, Edinburgh, Lisbon, London" instead

  7. Hey Pash

    i notice that "(UTC-06:00) Central Time (US & Canada)"

    isn't in the list when i use the get time zone mapping
    $plugin function("Advanced DateTime.dll", "$datetime get time zone mapping", "")
    "(UTC-06:00) Central Time (US & Canada)"
     
    I need the user to pick from the list and enter it as a variable 
    set(#utc timestamp,$plugin function("Advanced DateTime.dll", "$datetime converter", $date, "UBOT (MM/dd/yyyy HH:mm:ss)", "UNIX", #GLOBAL User Selected Timezone, "(UTC) Coordinated Universal Time", "en-US", "en-US"),"Local")
     
    Please update 
    Thanks

     

  8. Has anyone been able to login to bitmex.com with exbrowser? I have the latest version but it seems to detect a bot exbrowser browser. I can sign in fine on the same computer using the firefox not launch by exbrowser and the captcha doesn't pop up. When i launch firefox with exbrowser, It keeps giving me a captcha to solve that i solve manually over and over and never lets me in even though my password and 2fa is correct. Is there a way to get around this?

×
×
  • Create New...