-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_flood.js
34 lines (32 loc) · 1.08 KB
/
_flood.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// ________ _________
// \________\--------___ ___ ____----------/_________/
// \_______\----\\\\\\ //_ _ \\ //////-------/________/
// \______\----\\|| (( ~|~ ))) ||//------/________/
// \_____\---\\ ((\ = / ))) //----/_____/
// \____\--\_))) \ _)))---/____/
// \__/ ((( (((_/
// ヾღ彡 | -))) - ))
// =================================================================
// _flood.js
// -----------------------------------------------------------------
// author: @archangel
// SEC LVL: 2 == WARNING ==
// Chars: 100
// Descr:
// Syntax: _flood
// =================================================================
function (context, args)
{
var i = 0;
for (i=0; i<15; i++)
{
if(args.to)
{
#s.accts.xfer_gc_to({ to:args.to, amount:"1GC" }); //SEC_LVL 2
}
else
{
#s.accts.xfer_gc_to({ to:"archdaemon", amount:"1GC" }); //SEC_LVL 2
}
}
}