Update Beatrun Reanimated

This commit is contained in:
Jonny_Bro (Nikita) 2023-08-15 20:55:32 +05:00
parent e515dcdbc8
commit 06720164e6
8 changed files with 10 additions and 9 deletions

View file

@ -184,7 +184,7 @@ local function Seal()
surface.SetFont("BeatrunHUD") surface.SetFont("BeatrunHUD")
surface.SetTextPos(2, 0) surface.SetTextPos(2, 0)
surface.SetTextColor(220, 20, 20, math.abs(math.sin(CurTime() * 2) * 255)) surface.SetTextColor(220, 20, 20, math.abs(math.sin(CurTime() * 2) * 255))
surface.DrawText(REC .. " LIVE PLAYER CAM") surface.DrawText(" LIVE PLAYER CAM")
LocalPlayer():DrawViewModel(true) LocalPlayer():DrawViewModel(true)
end end

View file

@ -231,7 +231,7 @@ local function BeatrunHUD()
surface.DrawTexturedRect(scrw * 0.00125 + vp.z, scrh * 0.9 + vp.x + SScaleY(16) * 0.25, SScaleX(16), SScaleY(16)) surface.DrawTexturedRect(scrw * 0.00125 + vp.z, scrh * 0.9 + vp.x + SScaleY(16) * 0.25, SScaleX(16), SScaleY(16))
else else
surface.SetTextPos(scrw * 0.002 + vp.z, scrh * 0.9 + vp.x) surface.SetTextPos(scrw * 0.002 + vp.z, scrh * 0.9 + vp.x)
surface.DrawText(STAR) surface.DrawText("")
end end
surface.SetFont("BeatrunHUDSmall") surface.SetFont("BeatrunHUDSmall")
@ -385,7 +385,7 @@ function BeatrunLeaderboard(forced)
if k < 4 and pbtimenum ~= 0 then if k < 4 and pbtimenum ~= 0 then
surface.SetTextPos(SScaleX(380 + vp.z), scrh * 0.2 + vp.x + 25 * k) surface.SetTextPos(SScaleX(380 + vp.z), scrh * 0.2 + vp.x + 25 * k)
surface.DrawText(STAR) surface.DrawText("")
end end
end end
end end

View file

@ -1,11 +1,12 @@
STAR = "" VERSIONGLOBAL = "v1.0?"
REC = ""
VERSIONGLOBAL = "v1.Zero"
DeriveGamemode("sandbox") DeriveGamemode("sandbox")
GM.Name = "Beatrun" GM.Name = "Beatrun"
GM.Author = "datae" GM.Author = "who cares"
GM.Email = "datae@dontemailme.com" GM.Email = "whocares@noone.com"
GM.Website = "www.mirrorsedge.com" GM.Website = "www.mirrorsedge.com xd"
include("player_class/player_beatrun.lua") include("player_class/player_beatrun.lua")
for _, v in ipairs(file.Find("gamemodes/beatrun/gamemode/sh/*.lua", "GAME", "nameasc")) do for _, v in ipairs(file.Find("gamemodes/beatrun/gamemode/sh/*.lua", "GAME", "nameasc")) do