Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI] Merge patch-atomic-supabase-tables-01-14-2025-1736831389 into dev #3753

Merged
merged 3 commits into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions apps/kbve.com/src/content/docs/gaming/wow.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,17 @@ However for the time being, I am going to start the document and then reference

This is a quick breakdown of all the macros that we will be using, I am currently playing between a warrior and a warlock but I will try to keep them noted here for future reference.

#### Skinning

This is a quick macro for skinning the last target after its been killed and looted.

```
/script UIErrorsFrame:Clear()
/targetlasttarget
/run if UnitIsDead("target") then InteractUnit("target") end
/cast [dead, exists] Skinning
```

#### Warrior

##### Charge,Rend,Throw
Expand All @@ -51,4 +62,35 @@ This is a quick macro to cast `Charge` in non-combat, then Rend if in combat and

This macro still needs to be worked on.

#### Mage

##### Arcane Missles + FrostBolt Rank 1

This is my starter combat macro for my ice hardcore mage!
If you are not in combat, it will cast the Arcane Missiles but if you are in-combat then it will fire off a rank 1 frostbolt to apply the slow.

```
/stopcasting
/script if UnitExists("target") then SetRaidTarget("target", 8) end
/cast [nocombat,harm,nodead] Arcane Missiles; [harm,nodead] Frostbolt(Rank 1)
/em zug zug missiles incoming
```

#### Warlock

##### Pet Attack + Wand via Shoot

```
/petattack
/castsequence reset=2 !Shoot, null
```

##### Pet Attack + DoT

```
/petattack
/castsequence [@mouseover,harm,exists,nodead] [nochanneling] reset=target Curse of Agony, Corruption, Immolate, Life Tap
/em applying dat D O T
```

This macro is part of the `tab`, `111` rotation and helps you throw your damage over time.
2 changes: 1 addition & 1 deletion apps/kbve.com/src/content/docs/project/discordsh.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: DiscordSH
description: |
DiscordSH Docs
sidebar:
label: Charles
label: DiscordSH
order: 420
unsplash: 1516563988150-3e50726d365c
img: https://images.unsplash.com/photo-1516563988150-3e50726d365c?fit=crop&w=1400&h=700&q=75
Expand Down
Loading