This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ["0212001540Ti3Uw"] = { | |
| ["misc"] = { | |
| ["ST"] = { | |
| ["1"] = 2, | |
| ["3"] = 1, | |
| ["2"] = 1, | |
| ["5"] = 4, | |
| ["4"] = 1, | |
| ["6"] = 1, | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /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") |