• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

Question - Empowered Campfire

Actually you can but require some change in kissassist.mac.
Search for the line where it drop campfire and change the campfire selection from 1 to 2
 
Actually you can but require some change in kissassist.mac.
Search for the line where it drop campfire and change the campfire selection from 1 to 2

^ This is what I was looking for, to break it down you're going to want to open your kissassist.mac, then press CTRL + F and look for this line:

[CODE lang="ini" title="Line to Search for CF"]/nomodkey /notify FellowshipWnd FP_CampsiteKitList listselect 1[/CODE]

Which should be under this section:


[CODE lang="ini" title="Section for CF"]| ----------------------------------------------------------------------------
| SUB: Campfire Section - OriginalCode from toomanynames, wizbomb
| ----------------------------------------------------------------------------[/CODE]

Change the 1 at the end of the first line to a 2, save, restart your macro and boom! Your macro will drop Empowered Campfire.

Thanks again Patate!
 
De nada :)
Would have posted quote, but don't have the file with me
 
It's shared in the thread Sic just linked, but you can grab my Campfire snippet from that older KA code and it will do this:
  • If you have the component, drop the Empowered Campfire for buff effects
  • If you're out of them, drop a regular campfire
Code:
    Sub Bind_Campfire
    /if (${Select[${Zone.ID},33506]}) /return

        /windowstate FellowshipWnd open
        /delay 10
        /nomodkey /notify FellowshipWnd FP_Subwindows tabselect 2
        /if (!${Select[${Me.Fellowship.CampfireZone.ID},${Zone.ID}]}) {
            /nomodkey /notify FellowshipWnd FP_DestroyCampsite leftmouseup
            /delay 5s ${Window[ConfirmationDialogBox].Open}
            /if (${Window[ConfirmationDialogBox].Open}) {
                /nomodkey /notify ConfirmationDialogBox Yes_Button leftmouseup
            }
            /delay 5s !${Me.Fellowship.Campfire}
        }
        /nomodkey /notify FellowshipWnd FP_RefreshList leftmouseup
        /delay 1s       
        /if (${FindItemCount[Fellowship Campfire Materials]} > 0) {
            /nomodkey /notify FellowshipWnd FP_CampsiteKitList listselect 2
            }
        /if (${FindItemCount[Fellowship Campfire Materials]} == 0) {
            /nomodkey /notify FellowshipWnd FP_CampsiteKitList listselect 1
            }
        /delay 1s
        /nomodkey /notify FellowshipWnd FP_CreateCampsite leftmouseup
        /delay 5s ${Me.Fellowship.Campfire}
        /windowstate FellowshipWnd close
        /if (${Me.Fellowship.Campfire}) /echo Campfire Dropped
    /return
 
Kind of off topic but not:

what does that camp fire do?
It gives you these buffs. Really nice if your short on buffs or about to do a boss fight. It lasts for about 5 hrs and has a range of 1000. Scroll down and look at the buff slot information.
campbuff.jpg
 
Just set CampFireOn=2 and use this code:
Code:
    Sub Bind_Campfire
        /declare UseThisCampfire int local ${CampfireOn}
        /if (${Select[${Zone.ID},33506]}) /return
        /if (${UseThisCampfire}>1) {
            /if (${FindItemCount[Fellowship Campfire Materials]}<1) {
                /varset UseThisCampfire 1
                /echo Fellowship Campfire Materials Not Found. Setting to Regular Fellowship.
            }
        }
        /windowstate FellowshipWnd open
        /delay 10
        /nomodkey /notify FellowshipWnd FP_Subwindows tabselect 2
        /if (${Me.Fellowship.Campfire}) {
            /if (!${Select[${Me.Fellowship.CampfireZone.ID},${Zone.ID}]}) {
                /nomodkey /notify FellowshipWnd FP_DestroyCampsite leftmouseup
                /delay 5s ${Window[ConfirmationDialogBox].Open}
                /if (${Window[ConfirmationDialogBox].Open}) {
                    /nomodkey /notify ConfirmationDialogBox Yes_Button leftmouseup
                }
                /delay 5s !${Me.Fellowship.Campfire}
            }
        }
        /nomodkey /notify FellowshipWnd FP_RefreshList leftmouseup
        /delay 1s
        /nomodkey /notify FellowshipWnd FP_CampsiteKitList listselect ${UseThisCampfire}
        /delay 1s
        /nomodkey /notify FellowshipWnd FP_CreateCampsite leftmouseup
        /delay 5s ${Me.Fellowship.Campfire}
        /windowstate FellowshipWnd close
        /if (${Me.Fellowship.Campfire}) /echo Campfire Dropped
    /return

@eqtrader74 you are so stealing my thunder..
 
A friend of mine looked at it gives you around 5% more dps group wide if all group members are in the fellowship. That's not nothing!
 
@mark805 dont worry, they upgraded it this summer. You haven’t missed that much
 
Question - Empowered Campfire

Users who are viewing this thread

Back
Top
Cart