Jump to content
UBot Underground

Recommended Posts

  • 2 weeks later...
  • Replies 106
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Popular Posts

(Today only My birthday discount $ 20 each plugin)

Pash ... your plugins are great   But the way you protect it can be a disaster for us when selling compiled bots and got such kind of errors from your plugins   Please consider about it

It will work in "Debug Mode" only. It does not validate the "Compile Bot".

Posted Images

  • 4 weeks later...

Hello Pash,

 

could you please add a function to return a list of dates between two given dates?

 

In C#:

DateTime StartingDate = DateTime.ParseExact("7/30/15", "M/dd/yy", CultureInfo.InvariantCulture);
DateTime EndingDate = DateTime.ParseExact("8/02/15", "M/dd/yy", CultureInfo.InvariantCulture);
StringBuilder sb = new StringBuilder();
foreach (DateTime date in GetDateRange(StartingDate, EndingDate))
{
	sb.AppendLine(date.ToShortDateString());
}

MessageBox.Show(sb.ToString());


private List<DateTime> GetDateRange(DateTime StartingDate, DateTime EndingDate)
{
	if (StartingDate > EndingDate)
	{
		return null;
	}
	List<DateTime> rv = new List<DateTime>();
	DateTime tmpDate = StartingDate;
	do
	{
		rv.Add(tmpDate);
		tmpDate = tmpDate.AddDays(1);
	} while (tmpDate <= EndingDate);
	return rv;
}

Thanks a lot for considering this.

Kindest regards

Dan

Link to post
Share on other sites

V2.0.5.0
Add new command
$datetime between : get list between datetime

add sample file in folder "Sample - V2.0.5.0 Up"

  • Like 1
Link to post
Share on other sites

V3.0.0.0 (Beta)
- Update Library
- Change command names
    set system time zone >> datetime set system time zone
    set system time zone >> datetime set system time zone
    date time converter  >> datetime converter
    date time current  >> datetime current
    date time difference >> datetime difference
    date time extract >> datetime extract
    date time parser >> datetime parser
    decrement date/time >> datetime decrement
    get current culture >> datetime get current culture  
    increment date/time >> datetime increment
    random date time >> datetime random
    stop watch >> datetime stop watch
    time count up/down >> datetime count up/down
    calculate business hours >> datetime calculate business hours
- Add new command
$datetime compare: by name

Link to post
Share on other sites
  • 1 month later...

Hello.
Big time start updating. The purchase and support will be temporarily closed
The operation is about 3-10 days

Best regards,
Apichai P.

Link to post
Share on other sites

Opens Sales and Support
- Improvements to customer accounts.
- Move the host to America
- If the problem with the forums here. You can contact me at. "http://ubotplugin.com."

Notes
- For older clients are not notified. Please contact me
- For compiled bots Not affected by this change.

Warning
- Licence the old system will expire end of this year (30/12/2015).

Link to post
Share on other sites
  • 1 month later...
  • 2 months later...
  • 4 months later...
  • 3 months later...
  • 1 month later...
  • 11 months later...

Thank you again for all your updates Pash! You and your plugins make Ubot 3 times as powerful!

 

This plugin is a great addition to the Advanced Connection plugin as well (not many people know this plugin, but it is actually better than the HTTP Post plugin). Combined with the Advanced Data Text plugin, they can be used for almost any type of super fast automation (using HTTP Requests) and API calls.

Link to post
Share on other sites
  • 10 months later...

with this plugin , can i change time and timezone according to proxy ip?

you want change time and timezone in your pc?

if yes. you can use command s

"datetime set system date time"

"datetime set system time zone"

Link to post
Share on other sites

just ordered your plugin and get the plugin already.

if you can make a sample source code for change time zone according to proxy ip location, i think more people would love your plugin

Link to post
Share on other sites
4.0.2.0
- Update Library
Add new command
datetime get time zone mapping: get time zone list or by UTC or by main city

just ordered your plugin and get the plugin already.
if you can make a sample source code for change time zone according to proxy ip location.

try
 
navigate("https://www.whatismyip.com/my-ip-information/","Wait")
wait for browser event("Everything Loaded","")
wait(1)
set(#timeZone,$replace($scrape attribute(<innertext=w"Time Zone:*">,"innertext"),"Time Zone: ",""),"Global")
stop script
clear list(%Debug)
add list to list(%Debug,$plugin function("Advanced DateTime.dll", "$datetime get time zone mapping", #timeZone),"Delete","Global")
comment("load html($replace(%Debug,\"
\",\"<br>\"))")
plugin command("Advanced DateTime.dll", "datetime set system time zone", $list item(%Debug,0))
Link to post
Share on other sites

 

4.0.2.0
- Update Library
Add new command
datetime get time zone mapping: get time zone list or by UTC or by main city

try

 

navigate("https://www.whatismyip.com/my-ip-information/","Wait")
wait for browser event("Everything Loaded","")
wait(1)
set(#timeZone,$replace($scrape attribute(<innertext=w"Time Zone:*">,"innertext"),"Time Zone: ",""),"Global")
stop script
clear list(%Debug)
add list to list(%Debug,$plugin function("Advanced DateTime.dll", "$datetime get time zone mapping", #timeZone),"Delete","Global")
comment("load html($replace(%Debug,\"
\",\"<br>\"))")
plugin command("Advanced DateTime.dll", "datetime set system time zone", $list item(%Debug,0))

works great

Link to post
Share on other sites
  • PRO locked this topic
Guest
This topic is now closed to further replies.

×
×
  • Create New...