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