-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathSleep.ouc
More file actions
18 lines (18 loc) · 703 Bytes
/
Sleep.ouc
File metadata and controls
18 lines (18 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0"?>
<button backcol="none" display="icon" textcol="none">
<label>Sleep</label>
<tip>Sleep for the specified milliseconds</tip>
<template>TIME</template>
<icon1>#usercommand</icon1>
<function type="script">
<instruction>@script JScript</instruction>
<instruction>// Version: 221130</instruction>
<instruction>// Author: @Chaoses-Ib, @Sanhuaitang</instruction>
<instruction>// Homepage: https://github.com/Chaoses-Ib/IbDOpusScripts</instruction>
<instruction />
<instruction>function OnClick(clickData)</instruction>
<instruction>{</instruction>
<instruction> DOpus.Delay(clickData.func.args.TIME)</instruction>
<instruction>}</instruction>
</function>
</button>