Skip to content
This repository has been archived by the owner on Nov 14, 2022. It is now read-only.

Commit

Permalink
Little changes
Browse files Browse the repository at this point in the history
  • Loading branch information
VictorienXP committed Aug 11, 2019
1 parent e03c424 commit 766fe34
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gamemodes/superpedobear/gamemode/cl_init.lua
Expand Up @@ -324,7 +324,7 @@ function GM:HUDPaint()
surface.SetDrawColor(Color(0, 0, 0, 255))
surface.DrawOutlinedRect(ScrW() / 2 - 100, hudoffset_h, 200, 110)

draw.DrawText(GAMEMODE.Name .. " V" .. GAMEMODE.Version .. " - " .. os.date("%d/%m/%Y", os.time()), "DermaDefault", ScrW() / 2, hudoffset_h, Color(255, 255, 255, 255), TEXT_ALIGN_CENTER)
draw.DrawText("Super Pedobear V" .. (GAMEMODE.Version or "?"), "DermaDefault", ScrW() / 2, hudoffset_h, Color(255, 255, 255, 64), TEXT_ALIGN_CENTER)


--[[ THE ROUND STATUS ]]--
Expand Down
6 changes: 3 additions & 3 deletions gamemodes/superpedobear/gamemode/cl_menu.lua
Expand Up @@ -35,7 +35,7 @@ function GM:Menu()
spb_MenuF = vgui.Create("DFrame")
spb_MenuF:SetPos(ScrW() / 2 - 320, ScrH() / 2 - 240)
spb_MenuF:SetSize(640, 480)
spb_MenuF:SetTitle((GAMEMODE.Name or "?") .. " V" .. (GAMEMODE.Version or "?") .. GAMEMODE:SeasonalEventStr() .. " | By " .. (GAMEMODE.Author or "?"))
spb_MenuF:SetTitle("Super Pedobear V" .. (GAMEMODE.Version or "?") .. GAMEMODE:SeasonalEventStr())
spb_MenuF:SetVisible(true)
spb_MenuF:SetDraggable(true)
spb_MenuF:ShowCloseButton(true)
Expand Down Expand Up @@ -79,7 +79,7 @@ function GM:Menu()
function spb_MenuF.one.text:PerformLayout()
self:SetFontInternal("DermaDefault")
end
spb_MenuF.one.text:AppendText("\t\t You're playing " .. (GAMEMODE.Name or "?") .. " V" .. (GAMEMODE.Version or "?") .. "\n\n")
spb_MenuF.one.text:AppendText("\t\t You're playing Super Pedobear V" .. (GAMEMODE.Version or "?") .. "\n\n")
spb_MenuF.one.text:AppendText("Gamemode made by VictorienXP, with arts from Pho3 and Wubsy...\n\n")
spb_MenuF.one.text:AppendText("If you need help or anything, please go to Xperidia's Discord server discord.gg/jtUtYDa\n\n")
spb_MenuF.one.text:AppendText("Please support Xperidia for new content and updates!\n\n")
Expand Down Expand Up @@ -358,7 +358,7 @@ function GM:JukeboxMenu()
spb_Jukebox:SetSize(ScrW() * 0.90, ScrH() * 0.40)
local w, h = spb_Jukebox:GetSize()
spb_Jukebox:SetPos(ScrW() / 2 - w / 2, ScrH() / 2 - h / 2)
spb_Jukebox:SetTitle(GAMEMODE.Name .. " Jukebox")
spb_Jukebox:SetTitle("Super Pedobear Jukebox")
spb_Jukebox:SetVisible(true)
spb_Jukebox:SetDraggable(true)
spb_Jukebox:ShowCloseButton(true)
Expand Down

0 comments on commit 766fe34

Please sign in to comment.