Skip to content

Commit

Permalink
Merge pull request #15 from iLPdev/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
iLPdev committed Mar 15, 2022
2 parents 6b32ba0 + f0f23d6 commit 01d8575
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
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

0 comments on commit 01d8575

Please sign in to comment.