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

Development #15

Merged
merged 2 commits into from
Mar 15, 2022
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
4 changes: 2 additions & 2 deletions prs-chat.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
local EMCO = require("MDK.emco")
PRSchat = PRSchat or {}
function PRSchat.tabs()
local EMCO = require("PRS.emco")
PRSchat.UW = Geyser.UserWindow:new({name = "Chat", titleText ="Procedural Realms", docked = true})
stylesheet = [[background-color: rgb(80,80,80,255); border-width: 1px; border-style: solid; border-color: black; border-radius: 0px;]]
istylesheet = [[background-color: rgb(60,60,60,255); border-width: 1px; border-style: solid; border-color: black; border-radius: 0px;]]
Expand All @@ -19,6 +19,7 @@ function PRSchat.tabs()
"Newbie",
"Trade",
"Local",
"Tell",
"All",
"Map",
},
Expand All @@ -29,4 +30,3 @@ function PRSchat.tabs()
preserveBackground = true,
}, PRSchat.UW)
end

22 changes: 11 additions & 11 deletions prs-stats.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ function PRSstats.stats()
-- Hit Points Gauge
HPbar = SUG:new({
name = "HP",
y = "70",
height = 50,
width = "95%", -- everything up to here is standard Geyser.Gauge
updateTime = 250, -- this timer will update every 250ms, or 4 times a second
Expand Down Expand Up @@ -35,7 +34,7 @@ function PRSstats.stats()
-- Energy Points Gauge
ENbar = SUG:new({
name = "EN",
y = 130,
y = 70,
height = 50,
width = "95%",
updateTime = 250,
Expand Down Expand Up @@ -64,7 +63,7 @@ function PRSstats.stats()
-- Stamina Points Gauge
STbar = SUG:new({
name = "ST",
y = 190,
y = 130,
height = 50,
width = "95%",
updateTime = 250,
Expand All @@ -90,10 +89,10 @@ function PRSstats.stats()

-- Rage Points Gauge
RPbar = SUG:new({
name="RP",
y="280",
height=25,
width="95%",
name ="RP",
y = 190,
height = 25,
width = "95%",
updateTime = 250,
textTemplate = "  Rage: |c",
currentVariable = "gmcp.Char.Vitals.rage",
Expand All @@ -118,10 +117,10 @@ function PRSstats.stats()

-- Combo Points Gauge
CPbar = SUG:new({
name="CP",
y="250",
height=25,
width="95%",
name = "CP",
y = 225,
height = 25,
width = "95%",
updateTime = 250,
textTemplate = "  Combo: |c",
currentVariable = "gmcp.Char.Vitals.combo",
Expand All @@ -147,6 +146,7 @@ function PRSstats.stats()
-- Experience Points Gauge
XPbar = SUG:new({
name = "XP",
y = 260,
height = 50,
width = "95%",
updateTime = 250,
Expand Down