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

[ANY] Store by Zephyrus [1.1 - 03.01.2016]


Post New Thread Reply   
 
Thread Tools Display Modes
kaeming
Senior Member
Join Date: Nov 2015
Old 01-04-2016 , 08:55   Re: [ANY] Store by Zephyrus [1.1 - 03.01.2016]
Reply With Quote #191

Quote:
Originally Posted by Zephyrus View Post
my items.txt doesnt have wings at all, so not sure what you "fixed"... you just have to find the correct position and it just works though. regarding crash, you have too many custom stuff on the server. try removing a few hundred trails from the store. the engine cant handle so many custom stuff that some mg maps have along with the store stuff
oh, cos i have the store before this haha and there was already wings inside it.
I tried removing all trails, doesn't work

* i think it might be player skins though, when i removed player skins, the server will work properly without crashes*

Last edited by kaeming; 01-04-2016 at 08:57.
kaeming is offline
Zephyrus
Cool Pig B)
Join Date: Jun 2010
Location: Hungary
Old 01-04-2016 , 08:58   Re: [ANY] Store by Zephyrus [1.1 - 03.01.2016]
Reply With Quote #192

Quote:
Originally Posted by kaeming View Post
oh, cos i have the store before this haha and there was already wings inside it.
I tried removing all trails, doesn't work

* i think it might be player skins though, when i removed player skins, the server will work properly without crashes*
well, player skins, hats, trails, wings, etc all add to the modelprecache table, which causes server crash upon overflow (too many stuff). as many ppl want wings it seems, you should create a pull request on github with the wings. then i can add it to the store
__________________
Taking private C++/PHP/SourcePawn requests, PM me.

Last edited by Zephyrus; 01-04-2016 at 08:59.
Zephyrus is offline
kaeming
Senior Member
Join Date: Nov 2015
Old 01-04-2016 , 09:07   Re: [ANY] Store by Zephyrus [1.1 - 03.01.2016]
Reply With Quote #193

Quote:
Originally Posted by Zephyrus View Post
well, player skins, hats, trails, wings, etc all add to the modelprecache table, which causes server crash upon overflow (too many stuff). as many ppl want wings it seems, you should create a pull request on github with the wings. then i can add it to the store
Add me on steam? http://steamcommunity.com/id/kaeminggg/
I can send you there, I don't really have knowledge in codings
kaeming is offline
Zephyrus
Cool Pig B)
Join Date: Jun 2010
Location: Hungary
Old 01-04-2016 , 09:12   Re: [ANY] Store by Zephyrus [1.1 - 03.01.2016]
Reply With Quote #194

Quote:
Originally Posted by kaeming View Post
Add me on steam? http://steamcommunity.com/id/kaeminggg/
I can send you there, I don't really have knowledge in codings
just send me pm here instead, my friends list is full...
__________________
Taking private C++/PHP/SourcePawn requests, PM me.
Zephyrus is offline
kaeming
Senior Member
Join Date: Nov 2015
Old 01-04-2016 , 09:20   Re: [ANY] Store by Zephyrus [1.1 - 03.01.2016]
Reply With Quote #195

Quote:
Originally Posted by Zephyrus View Post
just send me pm here instead, my friends list is full...
okok sent
kaeming is offline
Chevalier
BANNED
Join Date: Aug 2015
Location: Anywhere
Old 01-04-2016 , 10:20   Re: [ANY] Store by Zephyrus [1.1 - 03.01.2016]
Reply With Quote #196

Quote:
Originally Posted by nguyenbaodanh View Post
Some one help me with this please ! ...


And the Gifts drop give out Big error box ... how to fix ?
"position" "-1.500000 -6.500000 -11.500000"
"angles" "-65.000000 170.000000 0.000000"

Gift drop giving error box means model is missing.
Just go to the gift box thread, get the source code and edit the model location YOU want.

if(strcmp(m_szGameDir, "cstrike")==0)
g_cvarModel = RegisterConVar("sm_gifts_model", "models/items/cs_gift.mdl", "Model file for the gift", TYPE_STRING);
else if(strcmp(m_szGameDir, "dod")==0)
g_cvarModel = RegisterConVar("sm_gifts_model", "models/items/dod_gift.mdl", "Model file for the gift", TYPE_STRING);
else if(strcmp(m_szGameDir, "tf")==0)
g_cvarModel = RegisterConVar("sm_gifts_model", "models/items/tf_gift.mdl", "Model file for the gift", TYPE_STRING);
else
g_cvarModel = RegisterConVar("sm_gifts_model", "<you should set some gift model>", "Model file for the gift", TYPE_STRING);

AutoExecConfig();

Mind you choose the one for the game you're using the store for.
Chevalier is offline
Bara
AlliedModders Donor
Join Date: Apr 2012
Location: Germany
Old 01-04-2016 , 10:26   Re: [ANY] Store by Zephyrus [1.1 - 03.01.2016]
Reply With Quote #197

Code:
if(strcmp(m_szGameDir, "cstrike")==0)
to
Code:
if(strcmp(m_szGameDir, "cstrike")==0 || strcmp(m_szGameDir, "csgo")==0)
or change the cvar in your config to "models/items/cs_gift.mdl" as model.
__________________
Discord (Bara#5006) | My Plugins (GitHub)
You like my work? Support is not a crime.
Bara is offline
Zephyrus
Cool Pig B)
Join Date: Jun 2010
Location: Hungary
Old 01-04-2016 , 12:30   Re: [ANY] Store by Zephyrus [1.1 - 03.01.2016]
Reply With Quote #198

Quote:
Originally Posted by Bara View Post
Code:
if(strcmp(m_szGameDir, "cstrike")==0)
to
Code:
if(strcmp(m_szGameDir, "cstrike")==0 || strcmp(m_szGameDir, "csgo")==0)
or change the cvar in your config to "models/items/cs_gift.mdl" as model.
when did they add that model to csgo?
__________________
Taking private C++/PHP/SourcePawn requests, PM me.
Zephyrus is offline
SINCE_PT
New Member
Join Date: Jan 2016
Old 01-04-2016 , 13:03   Re: [ANY] Store by Zephyrus [1.1 - 03.01.2016]
Reply With Quote #199

I have this error: [GAME]\materials/sprites\store\trails\bluelightning.vmt does not match the server's file.
Can anyone help me?!
SINCE_PT is offline
sneaK
SourceMod Moderator
Join Date: Feb 2015
Location: USA
Old 01-04-2016 , 13:13   Re: [ANY] Store by Zephyrus [1.1 - 03.01.2016]
Reply With Quote #200

Quote:
Originally Posted by SINCE_PT View Post
I have this error: [GAME]\materials/sprites\store\trails\bluelightning.vmt does not match the server's file.
Can anyone help me?!
Your local version of bluelightning.vmt differs from the server. Delete your local version and re-download from the server.
__________________
sneaK 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 06:50.


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