Added character system ( BASE )

master
AlmTech 5 years ago
parent dccd33cbcf
commit b8c4eaa63f
  1. 49
      gamemode/core/server/sv_player_character.lua
  2. 2
      gamemode/core/server/sv_player_init.lua
  3. 4
      gamemode/settings/sv_settings.lua

@ -0,0 +1,49 @@
-- __ _ _______ _ __
-- / / /\ | | |__ __| | | \ \
-- / / / \ | |_ __ ___ | | ___ ___| |__ \ \
-- < < / /\ \ | | '_ ` _ \| |/ _ \/ __| '_ \ > >
-- \ \ / ____ \| | | | | | | | __/ (__| | | | / /
-- \_\ /_/ \_\_|_| |_| |_|_|\___|\___|_| |_| /_/
Quantum.Server.Char = {}
Quantum.Server.Char.Players = {}
function Quantum.Server.Char.CreateCharTable( args )
return {
name = args.name || "UNKNOWN",
model = args.model || "models/player.mdl",
money = args.money || Quantum.Server.Settings.StarterMoney,
jobs = args.jobs || {
[1] = { title = "Hobo", level = -1 },
},
skills = args.skills || {
crafting = 0,
cooking = 0,
combat = 0,
science = 0
},
}
end
function Quantum.Server.Char.Create( pl, index, tbl )
local id = pl:SteamID() .. ":" .. index
if( Quantum.Server.Char.Players[ id ] ~= nil ) then
Quantum.Server.Char.Players[ id ] = tbl
Quantum.Debug( "Created character (" .. id .. ")" )
else
Quantum.Error( "Tried to duplicate character! Index already used. (" .. id .. ")" )
end
end
function Quantum.Server.Char.Remove( pl, index )
local id = pl:SteamID() .. ":" .. index
if( Quantum.Server.Char.Players[id] ~= nil ) then
Quantum.Server.Char.Players[id] = nil
Quantum.Debug( "Removed character (" .. id .. ")" )
end
end
function Quantum.Server.Char.GetCurrentCharacter( pl )
if( pl.character == nil ) then Quantum.Error( tostring( pl ) .. " doesn't have a character! Unable to get current character table." ) end
return pl.character
end

@ -5,6 +5,8 @@
-- \ \ / ____ \| | | | | | | | __/ (__| | | | / /
-- \_\ /_/ \_\_|_| |_| |_|_|\___|\___|_| |_| /_/
Quantum.Server.Player = {}
local ply = FindMetaTable( "Player" )
function GM:PlayerInitialSpawn( ply )

@ -9,6 +9,10 @@
Quantum.Server.Settings.VoiceChatRange = 400
Quantum.Server.Settings.MaxJobLevel = 250
Quantum.Server.Settings.MaxJobSlots = 2
Quantum.Server.Settings.MaxSkillLevel = 100
Quantum.Server.Settings.SpawnLocations = {
["rp_truenorth_v1a_livin"] = {

Loading…
Cancel
Save