Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.

npw1990 said:ok...and can someone help me with this...everything seems to be working correctly but when i zone into the instance it just targets the padded chest and doesnt loot or do anything? i have all the correct plugins
You're an idiot if you take this example and go by it. I watch my own server and see 5 people doing this and its silly.Marburyisgod said:I just took of the player check... No one comes around there, I think the person has access to the boards here and probably is just cockblocking me. She was there on her warrior just doing stuff in /say and then left and came back on her cleric and afk'd her there all night lol

| Traitor.mac
|use this at your own risk before it gets nerfed
#turbo 10
/declare nameofplayer puttoonsnamehere! |*change this to the toon #1 name
/declare nameofplayer puttoonsnamehere! |*change this to the toon #2 name
/declare nameofplayer puttoonsnamehere! |*change this to the toon #3 name
/declare nameofplayer puttoonsnamehere! |*change this to the toon #4 name
/declare nameofplayer puttoonsnamehere! |*change this to the toon #5 name
|****add more if declares if morethan 5 toons present
/declare numberofplayers int global
/declare numberofplayers 1 |*change # to the number of toons you are |avoiding
Sub Main
/popup Discalimer: The author of this macro is not responsible for bannings, gas prices, or the war in Lebanon
/call Mission
/echo waiting 14 seconds for instance to become available
/delay 14s
:loop
/popup Thank minen with for these AA's Redcents and credit cards accepted.
/call check
/call gm
/call zonein
/call openchest
/call droptask
/call zoneout
/goto :loop
/return
Sub Mission
/echo Getting Mission
/mission 7529
/return
Sub Openchest
/delay 3s
/target padded
/delay 5
/open
/return
Sub droptask
/echo removing players from task
/declare i int local
/for i 1 to ${Group}
/taskremove ${Group.Member[${i}]}
/delay 0.5s
/next i
/taskquit
/delay 6
/mission 7529
/delay 5
/fade
/return
Sub Zonein
/switch 4
:wait
/delay 1
{
/if (${Zone.ID}!=363) /goto :wait
}
/delay 2
/return
Sub Zoneout
:wait1
/delay 1
{
/if (${Zone.ID}!=362) /goto :wait1
}
/delay 5
/return
Sub Check
:check
/echo checking for players
/if (${SpawnCount[pc radius 300]}>{numberofplayers}+1 !${nameofplayer}) {
/popup players are nearby, put on your tinfoil hat while we wait for them to leave
/delay 4
/goto :check
}
/return
Sub GM
/echo checking for GM
/if (${Spawn[gm].ID}) {
/popup Oh crap! GM is here, ill end the macro and camp, but you are probally still banned, remember this is not my fault, you are the one too lazy to get your own AA's
/beep
/beep
/beep
/beep
/camp
/endmac
}
/return
Each of your declares are overwriting each of your other declares, essentially only checking for 1 player. Or rather, I think it will give an error due to the Variable already being declared.someoneorsomething said:Rich (BB code):/declare nameofplayer puttoonsnamehere! |*change this to the toon #1 name /declare nameofplayer puttoonsnamehere! |*change this to the toon #2 name /declare nameofplayer puttoonsnamehere! |*change this to the toon #3 name /declare nameofplayer puttoonsnamehere! |*change this to the toon #4 name /declare nameofplayer puttoonsnamehere! |*change this to the toon #5 name |****add more if declares if morethan 5 toons present /declare numberofplayers int global /declare numberofplayers 1 |*change # to the number of toons you are |avoiding
This is my first try at checking for players

I love haxxing.Marburyisgod said:No one running it but one person on Luclin, and that would be me. I figured the player radius check would kinda cut down on more than one person running it. The second there was another it would quit working, right?

Look at my sig...but go give it to minen.jjo1fam said:Well I started at around 800aa ... and now Im max aa and max shrouds .... think ill call it quits .... would like to do the bots too but I see ban's in the future .... BTW Minen.... now here's the n00b question ... how do I give redcents?



| Traitor.mac
|use this at your own risk before it gets nerfed
#turbo 10
Sub Main
/declare MID int local 7529
/declare ZoneIn int local 363
/declare ZoneOut int local 362
/declare AntiSpam timer local
/popup Discalimer: The author of this macro is not responsible for bannings, gas prices, or the war in Lebanon
/call GetTask ${MID}
/delay 15s
/declare Exclude[0] string outer
:Loop
/if (!${AntiSpam}) {
/popup Thank minen with for these AA's Redcents and credit cards accepted.
/varset AntiSpam 5m
}
/call SafetyCheck 300
/if (${Macro.Return.NotEqual[OK]}) {
/call Unsafe ${Macro.Return}
/goto :Loop
}
/squelch /switch 4
/call Zoning ${ZoneIn}
/call OpenChest
/call GetTask ${MID}
/squelch /fade
/call Zoning ${ZoneOut}
/goto :Loop
/return
Sub OpenChest
/delay 3s
/target padded
/delay 5
/open
/return
Sub GetTask(int MID)
/if (!${Defined[MID]}) /return FALSE
/declare i int local 0
/declare g int local 0
/for i 0 to ${Group.Members}
/varcalc g ${Group.Members}-${i}
/taskremove ${Group.Member[${g}]}
/delay 2
/next i
/mission ${MID}
/delay 1s
/if (${Window[TaskWnd].Open}) /keypress CMD_TOGGLETASKWIN
/delay 1s
/return
Sub Zoning(int ZID)
/if (!${Defined[ZID]}) /delay 30s
:Wait
/doevents
/delay 1
/if (${Zone.ID} != ${ZID}) /goto :Wait
/return
Sub SafetyCheck(int Radius, string SafeExclude)
/declare i int local 0
/declare c int local 0
/if (!${Defined[Radius]}) /declare Radius int local 500
/declare SafeSearch string local pc radius ${Radius} zradius 50 notid ${Me.ID}
/if (${SpawnCount[${SafeSearch}]} || ${SpawnCount[gm]}) {
/if (${SpawnCount[gm]}) {
/return GM
} else {
/for i 1 to ${SpawnCount[${SafeSearch}]}
/if (${Group.Member[${NearestSpawn[${i}, ${SafeSearch}]}]}) /goto :Continue
/if (${Defined[${SafeExclude}]} && ${${SafeExclude}.Size} > 0) {
/for c 1 to ${${SafeExclude}.Size}
/if (${${SafeExclude}[${c}].Equal[${NearestSpawn[${i}, ${SafeSearch}]}]}) /goto :Continue
/next c
}
/return PC
:Continue
/next i
}
}
/return OK
Sub Unsafe(string Hazzard)
/declare AntiSpam timer local
/declare i int local
/if (${Hazzard.Equal[PC]}) {
/if (!${AntiSpam}) {
/popup Players nearby, put on your tinfoil hat while we wait for them to leave.
/beep
/varset AntiSpam 30s
}
} else {
/popup Oh crap! GM is here, ill end the macro and camp, but you are probally still banned, remember this is not my fault, you are the one too lazy to get your own AA's
/for i 1 to 6
/beep
/next i
/camp desktop
/endmacro
}
/return
Kidyan said:No clue how to fix it ?
It sounds like it isnt opening the chest. try to redownload this and /plugin itMarburyisgod said:TurkReno's MQ2Copen link from his compile page.
MQ2Copen
TurkReno said:Umm...if its not giving XP, then its getting nerfed. Continuing to use this = ban.
Oceanrescue said:yeah sounds nerfed just like Lifeburn
