camp on specific tell

Have a macro idea but not sure where to start? Ask here.

Moderator: MacroQuest Developers

Just_Another
decaying skeleton
decaying skeleton
Posts: 5
Joined: Sun Nov 30, 2003 11:14 am

camp on specific tell

Post by Just_Another » Mon Aug 09, 2004 10:02 am

was wondering if anyone could make a simpel macro that camp on specific tell?

Kinda like the one here: http://macroquest2.com/phpBB2/viewtopic.php?t=3100

just one that works ;)

User avatar
blueninja
a grimling bloodguard
a grimling bloodguard
Posts: 541
Joined: Thu Aug 28, 2003 7:03 am
Location: Göteborg, Sweden

Post by blueninja » Mon Aug 09, 2004 11:11 am

There used to be a plugin for this, look around the plugin forum for it.

dman
a hill giant
a hill giant
Posts: 181
Joined: Fri Dec 05, 2003 12:54 pm

Post by dman » Mon Aug 09, 2004 2:32 pm

Code: Select all

#event Camp "#1# tells #*#camp now#*#"
#event Camp "#1# told #*#camp now#*#"

Sub Main
  :loop
    /doevents
   /goto :loop

Sub Event_Camp(string line, string sender)
  /declare senderlist string local Bob Joe Rob Dok Moe
  /if (${senderlist.Find[${sender}]}) {
     /if (!${Me.Sitting}) /sit
     /camp
     /endmacro
   }
/return

Just_Another
decaying skeleton
decaying skeleton
Posts: 5
Joined: Sun Nov 30, 2003 11:14 am

Post by Just_Another » Mon Aug 09, 2004 2:49 pm

thanks

Chill
Contributing Member
Contributing Member
Posts: 435
Joined: Fri May 07, 2004 5:06 pm
Location: Erie, PA

Post by Chill » Wed Aug 11, 2004 1:07 am

add this before the sit check:

Code: Select all

/if (${Me.Mount.ID}) /dismount

Space-Boy
a hill giant
a hill giant
Posts: 242
Joined: Wed Dec 04, 2002 12:53 pm
Contact:

Post by Space-Boy » Sat Aug 14, 2004 4:40 pm

You have gotten better at Carpal Tunnel! (247)