⇤ ← Revision 1 as of 2013-11-23 23:53:37
Size: 653
Comment:
|
Size: 687
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 4: | Line 4: |
target = "152,605" // Nothing to edit below here. |
|
Line 5: | Line 8: |
target = "152,605" |
This script checks your target coordinates every 5 minutes to see if they're in peacetime yet, and once they are announces it in alliance chat and stops. Just edit the target = line with your target's coordinates.
target = "152,605" // Nothing to edit below here. label start execute "scanmap " + target + " 5" x = GetDetailInfo(GetFieldId(target), false, 60) if !x repeat if x.state != 1 goto statex echo "*** ATTENTION *** " + x.userName + " is now in peacetime!" execute "alliancechat *** ATTENTION *** " + x.userName + " is now in peacetime!" end label statex echo x.userName + " is not in peacetime yet, so we'll keep checking." sleep 300 goto start