Raised This Month: $ Target: $400
 0% 

How to add zombie skins to my zombie escape server?


Post New Thread Reply   
 
Thread Tools Display Modes
Ren3gade
Senior Member
Join Date: Jul 2010
Old 06-30-2012 , 19:16   Re: How to add zombie skins to my zombie escape server?
Reply With Quote #11

Quote:
Originally Posted by rhelgeby View Post
It's a syntax error. You need to have a name before every section (that is groups of { ... }). The admin_zombie model has a section name, but not those below it.

Code:
// Special model examples:
// -----------------------

// Only admins can use this zombie model.
"admin_zombie"
{
    "name" "smoker"
    "path" "models/player/techknow/left4dead/smoker/"
    "team" "zombies"
    "access" "group"
    "group" "admins"
}

"typeAName1"
{
    "name" "hunter"
    "path" "models/player/techknow/left4dead/hunter/"
    "team" "zombies"
    "access" "group"
    "group" "admins"
}

"typeAName2"
{
    "name" "witch"
    "path" "models/player/techknow/left4dead/witch/"
    "team" "zombies"
    "access" "group"
    "group" "admins"
}
Use indention and spaces so it's easier to read and spot errors.


Thank you very much! I did this and it fixed all of my errors. But now i have another problem...

When everyone joins the server, they download the files for the new zombie skins for admins. (smoker, hunter, witch) but when i get infected while having that class selected.. my skin is invisible?? no one can see any 3 of them.
Ren3gade is offline
TnTSCS
AlliedModders Donor
Join Date: Oct 2010
Location: Undisclosed...
Old 06-30-2012 , 19:25   Re: How to add zombie skins to my zombie escape server?
Reply With Quote #12

that means that the clients are not downloading all of the required files... make sure you put all of the needed files in the downloads file and that you have all of the files both on your game server and fast download (if you use one).
__________________
View my Plugins | Donate
TnTSCS is offline
Ren3gade
Senior Member
Join Date: Jul 2010
Old 07-01-2012 , 01:25   Re: How to add zombie skins to my zombie escape server?
Reply With Quote #13

Quote:
Originally Posted by TnTSCS View Post
that means that the clients are not downloading all of the required files... make sure you put all of the needed files in the downloads file and that you have all of the files both on your game server and fast download (if you use one).
When me and all my friends joined the server we all had to download a bunch of skins and a bunch of them were the custom ones i added.

Here is my Downloads.txt in my zr folder..
i cant understand why they are all invisible? All those files are in those spots as well.

----------------------------------------------------------------------------------


// ZOMBIE:RELOADED
// Downloads configuration
//
// See Download List (3.6) section in the manual for detailed info.
//
// ============================================= ===============================
// * Each uncommented line will be used as a file path for clients to download.
// ----------------------------------------------------------------------------
// Defaults:
// ----------------------------------------------------------------------------

materials/models/player/zh/Zombie_Classic_sheet.vmt
materials/models/player/zh/corpse1.vmt
materials/models/player/zh/Charple1_sheet.vmt

// hellknight
materials/models/player/ics/hellknight_red/estuche.vmt
materials/models/player/ics/hellknight_red/estuche.vtf
materials/models/player/ics/hellknight_red/hellknight.vmt
materials/models/player/ics/hellknight_red/hellknight.vtf
materials/models/player/ics/hellknight_red/hellknight_normal.vtf

// team win overlays
materials/overlays/zr/zombies_win.vtf
materials/overlays/zr/zombies_win.vmt
materials/overlays/zr/humans_win.vtf
materials/overlays/zr/humans_win.vmt

// zvision
materials/overlays/zr/zvision.vtf
materials/overlays/zr/zvision.vmt

//Smoker
materials/models/player/techknow/l4d/smoker/boomer_hair.vmt
materials/models/player/techknow/l4d/smoker/boomer_hair.vtf
materials/models/player/techknow/l4d/smoker/smoker.vmt
materials/models/player/techknow/l4d/smoker/smoker.vtf
materials/models/player/techknow/l4d/smoker/smoker_n.vtf
models/player/techknow/left4dead/smoker/smoker.dx80.vtx
models/player/techknow/left4dead/smoker/smoker.dx90.vtx
models/player/techknow/left4dead/smoker/smoker.mdl
models/player/techknow/left4dead/smoker/smoker.phy
models/player/techknow/left4dead/smoker/smoker.sw.vtx
models/player/techknow/left4dead/smoker/smoker.vvd

//Hunter
materials/models/player/techknow/l4d/hunter/hunter.vmt
materials/models/player/techknow/l4d/hunter/hunter.vtf
materials/models/player/techknow/l4d/hunter/hunter_n.vtf
models/player/techknow/left4dead/hunter/hunter.dx80.vtx
models/player/techknow/left4dead/hunter/hunter.dx90.vtx
models/player/techknow/left4dead/hunter/hunter.mdl
models/player/techknow/left4dead/hunter/hunter.phy
models/player/techknow/left4dead/hunter/hunter.sw.vtx
models/player/techknow/left4dead/hunter/hunter.vvd

//Witch
materials/models/player/techknow/l4d/witch/witch.vmt
materials/models/player/techknow/l4d/witch/witch.vtf
materials/models/player/techknow/l4d/witch/witch_hair.vmt
materials/models/player/techknow/l4d/witch/witch_hair.vtf
materials/models/player/techknow/l4d/witch/witch_n.vtf
models/player/techknow/left4dead/witch/witch.dx80.vtx
models/player/techknow/left4dead/witch/witch.dx90.vtx
models/player/techknow/left4dead/witch/witch.mdl
models/player/techknow/left4dead/witch/witch.phy
models/player/techknow/left4dead/witch/witch.sw.vtx
models/player/techknow/left4dead/witch/witch.vvd

Last edited by Ren3gade; 07-01-2012 at 01:29.
Ren3gade is offline
pillepallus
Senior Member
Join Date: Oct 2011
Old 07-01-2012 , 11:36   Re: How to add zombie skins to my zombie escape server?
Reply With Quote #14

download-file looks good on first view... can u check again for new errors in error log?

u are using fastdl-server? normally i have only invisible skins when i forgot to upload the skins or something was wrong with my fastdl-server.
pillepallus is offline
TnTSCS
AlliedModders Donor
Join Date: Oct 2010
Location: Undisclosed...
Old 07-01-2012 , 11:41   Re: How to add zombie skins to my zombie escape server?
Reply With Quote #15

also make sure you have sv_pure 0
__________________
View my Plugins | Donate
TnTSCS is offline
Ren3gade
Senior Member
Join Date: Jul 2010
Old 07-01-2012 , 14:31   Re: How to add zombie skins to my zombie escape server?
Reply With Quote #16

Okay i didnt have anything about sv_pure in my server.cfg so i added sv_pure 0 now. Im not sure if its fixed or not.

Yesterday i found out one of my buddies could see the L4D2 skins. and another friend today siad they are purple for him. and they're still invisible for me?

I dont have FastDL setup. Its just regular download. Its slow i know.
Ren3gade is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 21:01.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode