Skip to content

9Hits Macros#


What is the 9Hits Macros#

9Hits Macros is just javascript language, with a set of built-in functions that help you create interactions on your website without the user's real interaction. Macros can be set for an exchange campaign, a bot campaign or a profile.

You may want to see a basic tutorial.

Macros Demo

Writing your script#

Before putting your script into the real mode, you can test to make sure it runs properly. To open the editor, just click the button.

Open Macro Editor

Here is an example script

1
2
3
4
await WaitForLoading();
await Typing("9hits\r", 100, 200); //\r mean press Enter key
await WaitForLoading();
await ClickBySelector("a[href*='9hits.com']");

Tip

Visit our github repo to try ready-made scripts. Use the Log function would help you in debugging your script.

Log function