-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.lua
More file actions
19 lines (16 loc) · 837 Bytes
/
Copy pathmain.lua
File metadata and controls
19 lines (16 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
EdithVestige = RegisterMod("Edith: Vestige", 1) --[[@as ModReference|table]]
EdithVestige.Version = "v1.0.5"
if not REPENTOGON then
local font = Font()
font:Load("font/pftempestasevencondensed.fnt")
EdithVestige:AddCallback(ModCallbacks.MC_POST_RENDER, function()
local text = "REPENTOGON is missing"
local text2 = "check repentogon.com"
local color = KColor(2,.5,.5,1)
font:DrawStringScaledUTF8(text, Isaac.GetScreenWidth()/1.1 - font:GetStringWidthUTF8(text)/2, Isaac.GetScreenHeight()/1.2, 1, 1, color, 1, true )
font:DrawStringScaledUTF8(text2, Isaac.GetScreenWidth()/1.1 - font:GetStringWidthUTF8(text2)/2, Isaac.GetScreenHeight()/1.2 + 8, 1, 1, color, 1, true )
end)
return
end
include("resources.scripts.libs.EdithKotryJumpLib").Init(EdithVestige)
include("include")