decker
Active member
- Joined
- Apr 30, 2005
- RedCents
- 452¢
Ok this is really simple but i keep forgetting adding all my friends / alts to:
So i made a .inc file that does this when ever i run a macro that needs PCCheck:
In the top of you document add:
And be for the loop add:
Now ofc edit the alert.inc so you and your friends names are there. Alert.inc looks like this:
Add all your friends and alt to this file..
Example:
Hope this atleast helps one person =)
-decker
Rich (BB code):
/alert add 2 NAME
So i made a .inc file that does this when ever i run a macro that needs PCCheck:
In the top of you document add:
Rich (BB code):
#include alert.inc
And be for the loop add:
Rich (BB code):
/call Alert
Now ofc edit the alert.inc so you and your friends names are there. Alert.inc looks like this:
Rich (BB code):
| This is a inclute file by Decker
Sub Alert
/alert add 2 Your_name
/alert add 2 friends_name
/alert add 2 friends2_name
/echo Added trusted persons..
/return
Example:
Rich (BB code):
#include aa.inc
#include alert.inc
#turbo
#event zoned "#*#You have entered#*#"
Sub Main
/declare laps int outer 0
/declare aas float outer 0
/declare aas_hr float outer 0
/declare start_aaexp float outer ${Me.PctAAExp}
/declare start_aas int outer ${Me.AAPointsTotal}
/declare got_reward bool outer false
/call Alert
:loopstart
/doevents
/if (${Me.AAPoints} > 29) /call getaaini
/call GMcheck
:check
/call SafetyCheck 1000 2
/if (${Macro.Return.NotEqual[OK]}) {
/popup There's someone near who isn't welcome...
/if (${Macro.Return.Equal[GM]}) {
/popup OMG! It's a GM. Time to bail...
/endmacro
} else /if (${Macro.Return.Equal[PC]}) {
/echo Pausing the Macro until they leave...
/popup Pesky players, they're everywhere...
/delay 5s
/goto :check
}
Hope this atleast helps one person =)
-decker

