Raised This Month: $51 Target: $400
 12% 

Simple Skins


Post New Thread Reply   
 
Thread Tools Display Modes
cpt.abort
Member
Join Date: Apr 2009
Old 08-15-2009 , 04:20   Re: Simple Player / Admin Models
Reply With Quote #31

Doesnt force admin skin on CT T skin was invisible didn't know if it was admin or not (i was admin). Will test further to see if any of it was me, but all files downloaded properly.

Last edited by cpt.abort; 08-15-2009 at 05:18.
cpt.abort is offline
meng
Veteran Member
Join Date: Oct 2005
Location: us
Old 08-15-2009 , 14:01   Re: Simple Player / Admin Models
Reply With Quote #32

it is forcing them if admins are invisible and public are not. make sure the materials have downloaded. check your client side and look for the corresponding materials. remember all files have to be on the game server and the sv_downloadurl server. if a file is missing from either, it wont be downloaded to the client. if your sure everything is in the right place. try a different model. it seems a few people have had trouble with corrupt models causing invisibility.
meng is offline
Send a message via Yahoo to meng
cpt.abort
Member
Join Date: Apr 2009
Old 08-16-2009 , 20:58   Re: Simple Player / Admin Models
Reply With Quote #33

Yes, but it didnt force admin skin on CT it gave me pub skin.
cpt.abort is offline
meng
Veteran Member
Join Date: Oct 2005
Location: us
Old 08-17-2009 , 14:38   Re: Simple Player / Admin Models
Reply With Quote #34

would you mind attaching the cfg and ini files your using to test. this really should work. i can't see any problem with the plugin.

Last edited by meng; 08-23-2009 at 00:48.
meng is offline
Send a message via Yahoo to meng
DeZeeko
Junior Member
Join Date: Apr 2009
Old 08-26-2009 , 12:17   Re: Simple Player / Admin Models
Reply With Quote #35

Hi had this running great with no problems,now I put Gungame 5 in all the skins load,we all look good at the end of the round when it says loading server is changing level it just freezes stop loading. I have been running gg and these maps for over a week so its not them.Is there something I can change to make it run with gg ?...If any one has this going with gg5 PLZ. let me know how to fix...Thanks
DeZeeko is offline
Hog329cc
Junior Member
Join Date: Jul 2009
Old 09-05-2009 , 01:28   Re: Simple Player / Admin Models
Reply With Quote #36

Hi, I can't seem to get this plugin to work I am no noob to setting up server too. I am sure it is that pure list were is it located at and what do I put in there?
Hog329cc is offline
dirtyape
Junior Member
Join Date: Jul 2007
Old 09-07-2009 , 02:27   Re: Simple Player / Admin Models
Reply With Quote #37

I was having trouble with this plugin on linux as well, then I noticed my simple_skins_downloads.ini had carriage returns and line feeds as it was created in windows, yet the 1.3 code on strips line feeds.

In the public OnMapStart() sub change:
Code:
            if (buffer[len-1] == '\n')
                   buffer[--len] = '\0'
To:
Code:
            if (buffer[len-1] == '\n')
                   buffer[--len] = '\0'
            if (buffer[len-1] == '\r')
                   buffer[--len] = '\0'
And recompile.

Or, just get rid of the carriage returns from simple_skins_downloads.ini.
dirtyape is offline
meng
Veteran Member
Join Date: Oct 2005
Location: us
Old 09-10-2009 , 14:24   Re: Simple Player / Admin Models
Reply With Quote #38

Quote:
Originally Posted by Hog329cc View Post
Hi, I can't seem to get this plugin to work I am no noob to setting up server too. I am sure it is that pure list were is it located at and what do I put in there?
its located in your hl2 dir. you need to add these lines to it.
Code:
models\player\ics\...                   allow_from_disk
materials\models\player\ics\...      allow_from_disk
thx dirtyape!

plugin updated!

*note the simple_skins_downloads.ini CANNOT contain empty lines. my mistake! use the simple_skins_downloads.ini available in the first post as your example.

Last edited by meng; 09-10-2009 at 14:34.
meng is offline
Send a message via Yahoo to meng
asdfghjake
New Member
Join Date: Sep 2009
Old 09-13-2009 , 03:16   Re: Simple Player / Admin Models
Reply With Quote #39

Hello,

I am trying to get your Plugin working on my server but having some really weird problems. I am trying to force ALL players to appear as Red/Blue Masterchiefs from the HALO Series.

Before I get into the exact problems I will list my config files.

Code:
//
// Simple Custom Skins Config
//

// Enable custom skins? 1 = ON 0 = OFF Default = 1
sm_simple_skins "1"

// Are skins applied to admins only? 1 = ADMINS ONLY 0 = ALL PLAYERS Default = 1
sm_ss_adminonly "0"

// Are skins applied to bots? 1 = YES 0 = NO Default = 0
sm_ss_skinbots "0"

// The custom CT skin. relative to your cstrike dir.
sm_ss_ctskin "models/player/bic/ct_sas.mdl"
// The custom T skin. relative to your cstrike dir.
sm_ss_tskin "models/player/bic/t_arctic.mdl"
simple_skins_downloads.ini
Code:
// ct model
models/player/bic/ct_sas.xbox.vtx
models/player/bic/ct_sas.vvd
models/player/bic/cs_sas.sw.vtx
models/player/bic/ct_sas.phy
models/player/bic/ct_sas.dx90.vtx
models/player/bic/ct_sas.dx80.vtx
materials/models/player/bic/bluemc/Masterchief_Visor_normal.vtf
materials/models/player/bic/bluemc/Masterchief_Visor.vtf
materials/models/player/bic/bluemc/Masterchief_visor.vmt
materials/models/player/bic/bluemc/Masterchief_Clothes_normal.vtf
materials/models/player/bic/bluemc/Masterchief_Clothes.vtf
materials/models/player/bic/bluemc/Masterchief_clothes.vmt
materials/models/player/bic/bluemc/Masterchief_Armor_normal.vtf
materials/models/player/bic/bluemc/Masterchief_Armor.vtf
materials/models/player/bic/bluemc/Masterchief_Armor.vmt
// t model
models/player/bic/t_arctic.xbox.vtx
models/player/bic/t_arctic.vvd
models/player/bic/t_arctic.sw.vtx
models/player/bic/t_arctic.phy
models/player/bic/t_arctic.dx90.vtx
models/player/bic/t_arctic.dx80.vtx
materials/models/player/bic/redmc/Masterchief_Visor_normal.vtf
materials/models/player/bic/redmc/Masterchief_Visor.vtf
materials/models/player/bic/redmc/Masterchief_visor.vmt
materials/models/player/bic/redmc/Masterchief_Clothes_normal.vtf
materials/models/player/bic/redmc/Masterchief_Clothes.vtf
materials/models/player/bic/redmc/Masterchief_clothes.vmt
materials/models/player/bic/redmc/Masterchief_Armor_normal.vtf
materials/models/player/bic/redmc/Masterchief_Armor.vtf
materials/models/player/bic/redmc/Masterchief_Armor.vmt
I am using the original SimpleCustomSkins.smx that was originall posted.

This is a link to the skins/models that I am using

Code:
http://forums.eventscripts.com/viewtopic.php?t=25267
And now to give you an Idea of the problems that I am having!

First I would like to note that all files are downloading except the following:
ct_sas.mdl
t_arctic.mdl

I have had 4 different people test. Each are having different results.

1)Can See T Models/Skins Perfectly, CT Totally Invisible
2)Can See CT Models/Skins Perfectly, T Totally Invisible
3)All Invisible
4)All Error Signs

I am Totally confused and frankly; slightly out of my league I believe. Though I am definitely not new to running/administrating a server. I have never attempted to do custom skins/models before.
asdfghjake is offline
meng
Veteran Member
Join Date: Oct 2005
Location: us
Old 09-13-2009 , 17:06   Re: Simple Player / Admin Models
Reply With Quote #40

thx for the detailed post.

*you must list the .mdl files in the ...downloads.ini as well!
*note you must restart the server after you edit the file.

after your sure all needed files are being downloaded. have any players experiencing problems restart their game. i dont know why but it seems to fix problems when a player had connected to your server while your config was incorrect.
meng is offline
Send a message via Yahoo to meng
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 23:41.


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