diff --git a/beatrun/Beatrun Reanimated/climbanim.dx80.vtx b/beatrun/Beatrun Reanimated/climbanim.dx80.vtx index 7f21c95..ed480ed 100644 Binary files a/beatrun/Beatrun Reanimated/climbanim.dx80.vtx and b/beatrun/Beatrun Reanimated/climbanim.dx80.vtx differ diff --git a/beatrun/Beatrun Reanimated/climbanim.dx90.vtx b/beatrun/Beatrun Reanimated/climbanim.dx90.vtx index b62befe..14e86ab 100644 Binary files a/beatrun/Beatrun Reanimated/climbanim.dx90.vtx and b/beatrun/Beatrun Reanimated/climbanim.dx90.vtx differ diff --git a/beatrun/Beatrun Reanimated/climbanim.mdl b/beatrun/Beatrun Reanimated/climbanim.mdl index 252ff41..b90458c 100644 Binary files a/beatrun/Beatrun Reanimated/climbanim.mdl and b/beatrun/Beatrun Reanimated/climbanim.mdl differ diff --git a/beatrun/Beatrun Reanimated/climbanim.sw.vtx b/beatrun/Beatrun Reanimated/climbanim.sw.vtx index b33fb17..4fc2537 100644 Binary files a/beatrun/Beatrun Reanimated/climbanim.sw.vtx and b/beatrun/Beatrun Reanimated/climbanim.sw.vtx differ diff --git a/beatrun/Beatrun Reanimated/climbanim.vvd b/beatrun/Beatrun Reanimated/climbanim.vvd index 3179901..e21ac00 100644 Binary files a/beatrun/Beatrun Reanimated/climbanim.vvd and b/beatrun/Beatrun Reanimated/climbanim.vvd differ diff --git a/beatrun/gamemodes/beatrun/gamemode/cl/AddonWarning.lua b/beatrun/gamemodes/beatrun/gamemode/cl/AddonWarning.lua index 74ce042..4cd26c8 100644 --- a/beatrun/gamemodes/beatrun/gamemode/cl/AddonWarning.lua +++ b/beatrun/gamemodes/beatrun/gamemode/cl/AddonWarning.lua @@ -184,7 +184,7 @@ local function Seal() surface.SetFont("BeatrunHUD") surface.SetTextPos(2, 0) 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) end diff --git a/beatrun/gamemodes/beatrun/gamemode/cl/HUD.lua b/beatrun/gamemodes/beatrun/gamemode/cl/HUD.lua index 2c9bf31..623854b 100644 --- a/beatrun/gamemodes/beatrun/gamemode/cl/HUD.lua +++ b/beatrun/gamemodes/beatrun/gamemode/cl/HUD.lua @@ -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)) else surface.SetTextPos(scrw * 0.002 + vp.z, scrh * 0.9 + vp.x) - surface.DrawText(STAR) + surface.DrawText("★") end surface.SetFont("BeatrunHUDSmall") @@ -385,7 +385,7 @@ function BeatrunLeaderboard(forced) if k < 4 and pbtimenum ~= 0 then surface.SetTextPos(SScaleX(380 + vp.z), scrh * 0.2 + vp.x + 25 * k) - surface.DrawText(STAR) + surface.DrawText("★") end end end diff --git a/beatrun/gamemodes/beatrun/gamemode/shared.lua b/beatrun/gamemodes/beatrun/gamemode/shared.lua index 85b9e6c..ae0b2a6 100644 --- a/beatrun/gamemodes/beatrun/gamemode/shared.lua +++ b/beatrun/gamemodes/beatrun/gamemode/shared.lua @@ -1,11 +1,12 @@ -STAR = "★" -REC = "⚫" -VERSIONGLOBAL = "v1.Zero" +VERSIONGLOBAL = "v1.0?" + DeriveGamemode("sandbox") + GM.Name = "Beatrun" -GM.Author = "datae" -GM.Email = "datae@dontemailme.com" -GM.Website = "www.mirrorsedge.com" +GM.Author = "who cares" +GM.Email = "whocares@noone.com" +GM.Website = "www.mirrorsedge.com xd" + include("player_class/player_beatrun.lua") for _, v in ipairs(file.Find("gamemodes/beatrun/gamemode/sh/*.lua", "GAME", "nameasc")) do