Code: Select all
Sub Do-follow
/target $MasterName
/stand
/face
/follow
/tell $MasterName Autofollow on %t.
/returnModerator: MacroQuest Developers
Code: Select all
Sub Do-follow
/target $MasterName
/stand
/face
/follow
/tell $MasterName Autofollow on %t.
/return
I wouldn't. I read every post on these boards, and I HATE having to scroll past that damned too-long macro every day, sometimes 2-3 times a day.VesperKnight wrote:to Mongo any anyone else who's modified the original script to be more perfect and functional. I'd really appreciate it if you could post your full new version of it.

Code: Select all
/varset a(1,34) newmasterCode: Select all
Sub Do-newmaster
/tell $MasterName Transfering control to $p1 master
/delay 6
/varset MasterName $p1
/delay 5
/tell $MasterName You are my new Master, $MasterName
/return
i suck at scripting but I had plaz tell me how to do it.Now i also have a little question , hot i set the Auto sit featire on ? i would like my bot to sit down after casting a spell , i tryed to manualy set the SitAfterCast value to 1 , but it doesnt work ... any help ?
Code: Select all
Add this in the command list
|||||||||||||||||||||||Personal Commands|||||||||||||||||||||||||||||||||
/varset a(1,34) autosit
|||||||||||||||||||||||Personal Commands|||||||||||||||||||||||||||||||||
Add this sub somewhere at the end:
Sub Do-autosit
/if n $strlen("$p1")<=0 {
/tell $MasterName Autosit=$SitAfterCast
/return
}
/if $p1=="off" /varset SitAfterCast 0
/if $p1=="on" /varset SitAfterCast 1
/tell $MasterName Autosit=$SitAfterCast
/return
Code: Select all
#Event Appear "You appear."
#Event StartAppear "You feel yourself starting to appear."
#Event Invis "You vanish."Code: Select all
Sub Event_Invis
/tell $MasterName I am invisible.
/return
Sub Event_Appear
/tell $MasterName I am no longer invisible.
/return
Sub Event_StartAppear
/tell $MasterName I am becoming visible.
/return