Strange blobs on the gravity gun when making a multiplayer mod

N

Nocklas

Guest
Hi,

I'm trying to create a small multiplayer mod, but the problem is that when I start my map it has problems with loading several files. The players aren't animated and the gravity gun is covered with large "blobs".

The first error that occurs is when the menu has been loaded. The console then says the following:

"Couldn't find custom font file 'resource/HL2MP.ttf'
--- Missing Vgui material vgui/gfx/vgui/round_corner_nw
--- Missing Vgui material vgui/gfx/vgui/round_corner_ne
--- Missing Vgui material vgui/gfx/vgui/round_corner_sw
--- Missing Vgui material vgui/gfx/vgui/round_corner_se
--- Missing Vgui material vgui/gfx/vgui/solid_background
--- Missing Vgui material vgui/gfx/vgui/solid_background
--- Missing Vgui material vgui/gfx/vgui/solid_background
--- Missing Vgui material vgui/gfx/vgui/solid_background
--- Missing Vgui material vgui/gfx/vgui/trans_background
--- Missing Vgui material vgui/gfx/vgui/trans_background
--- Missing Vgui material vgui/gfx/vgui/trans_background
--- Missing Vgui material vgui/gfx/vgui/trans_background
--- Missing Vgui material vgui/gfx/vgui/hl2mp_logo
Hud element 'CHudCommentary' doesn't have an entry 'HudCommentary' in scripts/HudLayout.res
execing config.cfg
1 CPU, Frequency: 2.4 Ghz, Features: GenuineIntel SSE SSE2 MMX RDTSC CMOV FCMOV
GetAllManifestFiles: Unable to load maplist.txt"


When I start a server it also says:

"Spawn Server test1
Begin loading faces (loads materials)
End loading faces (loads materials)
execing skill_manifest.cfg
execing skill.cfg
Unknown command "sk_plr_dmg_crowbar"
Unknown command "sk_npc_dmg_crowbar"
Unknown command "sk_plr_dmg_stunstick"
Unknown command "sk_npc_dmg_stunstick"
Executing listen server config file
Precache of sprites/redglow1 ambigious (no extension specified)
Section [Scenes]: 1096 resources total 17.54 KB, 0.84 % of limit (2.10 MB)"


Does anyone know what I'm doing wrong?
 
It sounds like the blobs problem is caused by an incorrect filename for a red glow sprite used by the gravity gun. This is the line to pay attention to: Precache of sprites/redglow1 ambigious (no extension specified)

The other errors appear to be caused by missing hud components and files for your new font.
 
Back
Top