Skip to content

Instantly share code, notes, and snippets.

View Solanya's full-sized avatar

Solanya

View GitHub Profile
@Solanya
Solanya / profile.txt
Created August 8, 2018 18:31
Profile with bugged colour tag conversion for MSP
["0212001540Ti3Uw"] = {
["misc"] = {
["ST"] = {
["1"] = 2,
["3"] = 1,
["2"] = 1,
["5"] = 4,
["4"] = 1,
["6"] = 1,
},
@Solanya
Solanya / gist:e9d69215fbb8b9195181928ff40ec0b8
Created January 21, 2018 13:49
WoW macro to emote player facing
/run local x=GetPlayerFacing() local y if x < 1.05 or x > 5.24 then y = "north" elseif x > 2.09 and x < 4.19 then y = "south" else y = "" end if x > 0.52 and x < 2.62 then y = y .. "west" elseif x > 3.66 and x < 5.76 then y = y .. "east" end SendChatMessage("takes out his compass and looks at it.. seems like he is facing " .. y, "EMOTE")