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

[ANY] Store by Zephyrus [1.1 - 03.01.2016]


Post New Thread Reply   
 
Thread Tools Display Modes
e54385991
AlliedModders Donor
Join Date: Aug 2013
Old 12-30-2015 , 22:58   Re: [ANY] Store by Zephyrus
Reply With Quote #121

Quote:
Originally Posted by kiko. View Post
I tested the Module with the custom knifes.
The Models are invisible.
The Models are in my models/materials folders.

No Errorlogs.

Thanks
Try restart csgo client
__________________

Last edited by e54385991; 12-30-2015 at 22:59.
e54385991 is offline
Send a message via ICQ to e54385991
kiko.
AlliedModders Donor
Join Date: Dec 2015
Old 12-31-2015 , 00:00   Re: [ANY] Store by Zephyrus
Reply With Quote #122

Unfortunately nothing.
kiko. is offline
nguyenbaodanh
AlliedModders Donor
Join Date: Jun 2007
Location: HCMC, Vietnam
Old 12-31-2015 , 00:25   Re: [ANY] Store by Zephyrus
Reply With Quote #123

PHP Code:
L 12/31/2015 12:16:15: [SMNative "StartMessage" reportedClient index 0 is invalid
L 12
/31/2015 12:16:15: [SMDisplaying call stack trace for plugin "store.smx":
L 12/31/2015 12:16:15: [SM]   [0]  Line 217e:\Cloud\Seafile\Business\Store Plugin\addons\sourcemod\scripting\include\usermessages.inc::StartMessageOne()
L 12/31/2015 12:16:15: [SM]   [1]  Line 112e:\Cloud\Seafile\Business\Store Plugin\addons\sourcemod\scripting\include\zephstocks.inc::Chat()
L 12/31/2015 12:16:15: [SM]   [2]  Line 87store/betting.sp::Command_Bet() 
How to fix this ?
__________________

Last edited by nguyenbaodanh; 12-31-2015 at 00:25.
nguyenbaodanh is offline
Zephyrus
Cool Pig B)
Join Date: Jun 2010
Location: Hungary
Old 12-31-2015 , 00:36   Re: [ANY] Store by Zephyrus
Reply With Quote #124

Quote:
Originally Posted by nguyenbaodanh View Post
PHP Code:
L 12/31/2015 12:16:15: [SMNative "StartMessage" reportedClient index 0 is invalid
L 12
/31/2015 12:16:15: [SMDisplaying call stack trace for plugin "store.smx":
L 12/31/2015 12:16:15: [SM]   [0]  Line 217e:\Cloud\Seafile\Business\Store Plugin\addons\sourcemod\scripting\include\usermessages.inc::StartMessageOne()
L 12/31/2015 12:16:15: [SM]   [1]  Line 112e:\Cloud\Seafile\Business\Store Plugin\addons\sourcemod\scripting\include\zephstocks.inc::Chat()
L 12/31/2015 12:16:15: [SM]   [2]  Line 87store/betting.sp::Command_Bet() 
How to fix this ?
i dont see why youd use sm_bet in rcon..
__________________
Taking private C++/PHP/SourcePawn requests, PM me.
Zephyrus is offline
e54385991
AlliedModders Donor
Join Date: Aug 2013
Old 12-31-2015 , 01:18   Re: [ANY] Store by Zephyrus
Reply With Quote #125

Quote:
Originally Posted by kiko. View Post
Unfortunately nothing.
Update 2.2 version
https://forums.alliedmods.net/showpo...0&postcount=80

Fixed invisible it's precache problem
__________________
e54385991 is offline
Send a message via ICQ to e54385991
Arkarr
Veteran Member
Join Date: Sep 2012
Location: Just behind my PC screen
Old 12-31-2015 , 04:35   Re: [ANY] Store by Zephyrus
Reply With Quote #126

Quote:
Originally Posted by r3dw3r3w0lf View Post
People saying my name incorrectly in all these posts should be a good enough reason for me to change it. lol
Sorry, in my defense, it's because it was late.
__________________
Want to check my plugins ?
Arkarr is offline
m_bNightstalker
Senior Member
Join Date: Jan 2015
Location: JWD
Old 12-31-2015 , 05:19   Re: [ANY] Store by Zephyrus
Reply With Quote #127

We'll see how things will develop, right?
m_bNightstalker is offline
Arkarr
Veteran Member
Join Date: Sep 2012
Location: Just behind my PC screen
Old 12-31-2015 , 05:44   Re: [ANY] Store by Zephyrus
Reply With Quote #128

A bit of mySQL for some who need it :

Move ALL the players value (steamID, id, name, credits, etc...) into the Zephyrus database :

Don't use it for now, I still need to convert the steam id.
Code:
SET @DATABASE_NAME_REDERWOLF = 'store'; -- DO NOT FORGET TO EDIT !
SET @DATABASE_NAME_ZEPHYRUS = 'store2'; -- DO NOT FORGET TO EDIT !

SET @q = CONCAT('INSERT INTO ', @DATABASE_NAME_ZEPHYRUS, '.store_players select * from ', @DATABASE_NAME_REDERWOLF, '.store_users');
select @q;
PREPARE stmt FROM @q;
EXECUTE stmt;
DEALLOCATE PREPARE stmt;


UPDATE the number of credits from each players in Zephyrus database to have the exacte same value as in the r3dw3r3w0lf's database :

Code:
SET @DATABASE_NAME_REDERWOLF = 'store'; -- DO NOT FORGET TO EDIT !
SET @DATABASE_NAME_ZEPHYRUS = 'store2'; -- DO NOT FORGET TO EDIT !

DELIMITER $$
DROP FUNCTION IF EXISTS `toSteamID`$$
CREATE FUNCTION toSteamID(id TEXT)
  RETURNS TEXT
  LANGUAGE SQL
BEGIN
  RETURN CONCAT("STEAM_0:",id%2,":",floor(id/2));
END;
$$
DELIMITER ;

SET @q = CONCAT('UPDATE ', @DATABASE_NAME_ZEPHYRUS, '.store_players, ', @DATABASE_NAME_REDERWOLF, '.store_users',
				' SET ', @DATABASE_NAME_ZEPHYRUS, '.store_players.credits=', @DATABASE_NAME_REDERWOLF,'.store_users.credits',
				' WHERE toSteamID(', @DATABASE_NAME_REDERWOLF, '.store_users.auth)', '=CONCAT("STEAM_0:",', @DATABASE_NAME_ZEPHYRUS, '.store_players.authid)');
select @q;
PREPARE stmt FROM @q;
EXECUTE stmt;
DEALLOCATE PREPARE stmt;
__________________
Want to check my plugins ?

Last edited by Arkarr; 12-31-2015 at 11:44.
Arkarr is offline
kiko.
AlliedModders Donor
Join Date: Dec 2015
Old 12-31-2015 , 08:39   Re: [ANY] Store by Zephyrus
Reply With Quote #129

Thanks @e54385991 for the fix

Did someone know how i add Incgrenades-Skins ? It's not working with "incgrenade"
kiko. is offline
Franc1sco
Veteran Member
Join Date: Oct 2010
Location: Spain (Madrid)
Old 12-31-2015 , 08:55   Re: [ANY] Store by Zephyrus
Reply With Quote #130

Quote:
Originally Posted by e54385991 View Post
Update 2.2 version
https://forums.alliedmods.net/showpo...0&postcount=80

Fixed invisible it's precache problem
Nice! I added it here -> https://forums.alliedmods.net/showth...98#post2376498
__________________
Veteran Coder -> Activity channel
Coding on CS2 and taking paid and free jobs.

Contact: Steam, Telegram or discord ( franug ).

You like my work? +Rep in my steam profile comments or donate.

Franc1sco is offline
Send a message via MSN to Franc1sco
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 17:31.


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