blackdtools / Blackd-Proxy-CLASSIC

Blackd Proxy CLASSIC
MIT License
9 stars 7 forks source link

[feature request] cavebot wait milliseconds #104

Open divinity76 opened 5 years ago

divinity76 commented 5 years ago

i'm in a situation where i would like to wait for ~100 milliseconds or so (aka 0.1 seconds), the closest thing i can do is to wait 1 second (1000 milliseconds) with the WaitX command

a "WaitMS 100" would be nice (eg wait 100 milliseconds), or perhaps a "WaitX 0.1" (wait for 0.1 seconds)

divinity76 commented 5 years ago

i made a pull request implementing this functionality, see PR #105

the syntax in that PR is

WaitX 0.1 (wait 100 milliseconds) WaitX 0.5 (wait 500 milliseconds) WaitX 1.5 (wait 1 second + 500 milliseconds)

and so on~