Raised This Month: $32 Target: $400
 8% 

[ANY] Store by Zephyrus [1.1 - 03.01.2016]


Post New Thread Reply   
 
Thread Tools Display Modes
Et3rnity
Member
Join Date: Sep 2018
Location: Romania
Old 01-16-2021 , 10:59   Re: [ANY] Store by Zephyrus [1.1 - 03.01.2016]
Reply With Quote #1871

Someone can help me with files for actual sourcemod. I want to recompile de plugin.
Et3rnity is offline
Lannister
Veteran Member
Join Date: Apr 2015
Old 01-20-2021 , 18:35   Re: [ANY] Store by Zephyrus [1.1 - 03.01.2016]
Reply With Quote #1872

Question guys, maybe someone smarter than me can help me,

I'm trying to add many subcategories inside a category, but sadly i'm not able to do it,

What i'm trying to do it's the following stuff

Code:
Category 1 (Player skins)
----

· Subcategory 1 (Player skins for vips)
· Another subcategory1 (Terroristas)
· Another subcategory1 (Counter-terrorist)

· Subcategory 2 (Player skins for admins)
· Another subcategory2 (Terroristas)
· Another subcategory2 (Counter-terrorist)

· Subcategory 3 (Player skins for donators)
· Another subcategory3 (Terroristas)
· Another subcategory3 (Counter-terrorist)
And this is so far what i've done, without any luck (i'm a dumbass i know)

Code:
	"Player skins"
		{                          
	"Skins for VIPS"
			{                         
		"Counter-Terrorists"
		{            
			"xxx"
			{
				"model" "xxx"

			}
			"xxxx"
			{
				"model" "xxx"

			}
		}
		"Terrorist"
		{
				"xxxx"
			{
				"model" "xxx"

			}
 
	     }
 
{                  
 
"Skins for donators"
			{
		"Counter-Terrorists"
		{
			"xxx"
			{
				"model" "xxx"
			}
			"xxxx"
			{
				"model" "xxx"

			}
		}
		"Terrorist"
		{
				"xxxxx"
			{
				"model" "xxx"
			}
 
	     }
 
      }
Is this even possible? basically i'm trying to have a main category which are for Player skins, inside that menu you'll see 3 more categories (one for VIPS, one for admins, other for donators) inside eachone of these categories, you'll have the subcategories "Counter-terrorist" and "Terrorist" so players can choose a skin for one team.

Damn my head hurts while writing this, hopefuly someone can answer me! thanks!

Last edited by Lannister; 01-20-2021 at 18:40.
Lannister is offline
gamegem
New Member
Join Date: Jan 2021
Old 01-23-2021 , 06:55   Re: [ANY] Store by Zephyrus [1.1 - 03.01.2016]
Reply With Quote #1873

Quote:
Originally Posted by Lannister View Post
Question guys, maybe someone smarter than me can help me,

I'm trying to add many subcategories inside a category, but sadly i'm not able to do it,

What i'm trying to do it's the following stuff

Code:
Category 1 (Player skins)
----

· Subcategory 1 (Player skins for vips)
· Another subcategory1 (Terroristas)
· Another subcategory1 (Counter-terrorist)

· Subcategory 2 (Player skins for admins)
· Another subcategory2 (Terroristas)
· Another subcategory2 (Counter-terrorist)

· Subcategory 3 (Player skins for donators)
· Another subcategory3 (Terroristas)
· Another subcategory3 (Counter-terrorist)
And this is so far what i've done, without any luck (i'm a dumbass i know)

~Snip

Is this even possible? basically i'm trying to have a main category which are for Player skins, inside that menu you'll see 3 more categories (one for VIPS, one for admins, other for donators) inside eachone of these categories, you'll have the subcategories "Counter-terrorist" and "Terrorist" so players can choose a skin for one team.

Damn my head hurts while writing this, hopefuly someone can answer me! thanks!


Try This

Code:
"Store"
{

	"Player Skins"
	{
		
			"VIP Skins"
			{
				
				"Counter-Terrorists"
				{
						
					"xxx"
					{
					"model" "xxx"
					}
							
							
					"yyy"
					{
					"model" "xxx"
					}
						
				}
					
				"Terrorists"
				{
						
					"xxx"
					{
					"model" "xxx"
					}
							
							
					"yyy"
					{
					"model" "xxx"
					}
						
				}
				
				
				
			}
			
			"Admin Skins"
			{
				
				"Counter-Terrorists"
				{
						
					"xxx"
					{
					"model" "xxx"
					}
							
							
					"yyy"
					{
					"model" "xxx"
					}
						
				}
					
				"Terrorists"
				{
						
					"xxx"
					{
					"model" "xxx"
					}
							
							
					"yyy"
					{
					"model" "xxx"
					}
						
				}
				
				
				
			}
			
			"Donator Skins"
			{
				
				"Counter-Terrorists"
				{
						
					"xxx"
					{
					"model" "xxx"
					}
							
							
					"yyy"
					{
					"model" "xxx"
					}
						
				}
					
				"Terrorists"
				{
						
					"xxx"
					{
					"model" "xxx"
					}
							
							
					"yyy"
					{
					"model" "xxx"
					}
						
				}
				
			}
		
		
	}

}
gamegem is offline
Oylsister
Senior Member
Join Date: Aug 2019
Location: KhonKaen, Thailand
Old 01-24-2021 , 01:27   Re: [ANY] Store by Zephyrus [1.1 - 03.01.2016]
Reply With Quote #1874

From the previous time I post a completely wrong file. So it literally won't compile.
The warning still occur here but gonna need someone to test.
but here I made this github for you : https://github.com/oylsister/Store-by-Zephyrus

Code:
// store.sp(886) : warning 229: index tag mismatch (symbol "g_eItems")
// store.sp(891) : warning 229: index tag mismatch (symbol "g_eTypeHandlers")
// store.sp(903) : warning 229: index tag mismatch (symbol "g_eClientItems")
// store.sp(2073) : warning 237: coercing functions to and from primitives is unsupported and will be removed in the future
__________________
Oylsister is offline
Lannister
Veteran Member
Join Date: Apr 2015
Old 01-26-2021 , 18:59   Re: [ANY] Store by Zephyrus [1.1 - 03.01.2016]
Reply With Quote #1875

Quote:
Originally Posted by gamegem View Post
Try This

Code:
"Store"
{

	"Player Skins"
	{
		
			"VIP Skins"
			{
				
				"Counter-Terrorists"
				{
						
					"xxx"
					{
					"model" "xxx"
					}
							
							
					"yyy"
					{
					"model" "xxx"
					}
						
				}
					
				"Terrorists"
				{
						
					"xxx"
					{
					"model" "xxx"
					}
							
							
					"yyy"
					{
					"model" "xxx"
					}
						
				}
				
				
				
			}
			
			"Admin Skins"
			{
				
				"Counter-Terrorists"
				{
						
					"xxx"
					{
					"model" "xxx"
					}
							
							
					"yyy"
					{
					"model" "xxx"
					}
						
				}
					
				"Terrorists"
				{
						
					"xxx"
					{
					"model" "xxx"
					}
							
							
					"yyy"
					{
					"model" "xxx"
					}
						
				}
				
				
				
			}
			
			"Donator Skins"
			{
				
				"Counter-Terrorists"
				{
						
					"xxx"
					{
					"model" "xxx"
					}
							
							
					"yyy"
					{
					"model" "xxx"
					}
						
				}
					
				"Terrorists"
				{
						
					"xxx"
					{
					"model" "xxx"
					}
							
							
					"yyy"
					{
					"model" "xxx"
					}
						
				}
				
			}
		
		
	}

}

It worked!!! thanks daddy!
Lannister is offline
Et3rnity
Member
Join Date: Sep 2018
Location: Romania
Old 01-27-2021 , 11:19   Re: [ANY] Store by Zephyrus [1.1 - 03.01.2016]
Reply With Quote #1876

Quote:
Originally Posted by Oylsister View Post
From the previous time I post a completely wrong file. So it literally won't compile.
The warning still occur here but gonna need someone to test.
but here I made this github for you : https://github.com/oylsister/Store-by-Zephyrus

Code:
// store.sp(886) : warning 229: index tag mismatch (symbol "g_eItems")
// store.sp(891) : warning 229: index tag mismatch (symbol "g_eTypeHandlers")
// store.sp(903) : warning 229: index tag mismatch (symbol "g_eClientItems")
// store.sp(2073) : warning 237: coercing functions to and from primitives is unsupported and will be removed in the future
The plugin didn`t load i get this error

Code:
[SM] Unable to load plugin "store-trade.smx": Native "Store_RegisterMenuHandler" was not found
Et3rnity is offline
Sincronic
Senior Member
Join Date: Dec 2018
Old 02-01-2021 , 07:13   Re: [ANY] Store by Zephyrus [1.1 - 03.01.2016]
Reply With Quote #1877

There is a module for stickers, weapons, knife skins ?
Sincronic is offline
sNoK
Junior Member
Join Date: Apr 2010
Location: csgo.zapto.org
Old 02-08-2021 , 14:17   Re: [ANY] Store by Zephyrus [1.1 - 03.01.2016]
Reply With Quote #1878

i need change plugins for tags and colors simple-chatprocessor.smx to chat-processor.smx
because i have hextags.smx , and i need the chat-processor.smx Help ?
__________________
Connect CSGO.ZAPTO.ORG - 128TK !ws !gloves !knife !shop


- Add new server free - to the Server list -

https://gametracker.forumgamers.net

-Add new server free - to the Server list -
sNoK is offline
Send a message via Yahoo to sNoK Send a message via Skype™ to sNoK
luna90
Junior Member
Join Date: Oct 2019
Old 03-04-2021 , 06:57   Re: [ANY] Store by Zephyrus [1.1 - 03.01.2016]
Reply With Quote #1879

Hello, can you please tell me the current plugin for auras?
luna90 is offline
Vilware
Junior Member
Join Date: Feb 2019
Old 03-05-2021 , 01:45   Re: [ANY] Store by Zephyrus [1.1 - 03.01.2016]
Reply With Quote #1880

I have tried many plugins to make Store Chat, Works. I also installed many Stores from other ppl. I have simple-chatproccesor, simple-colors, hextags, I tried Simple Chat Redux and others but none did work.
Also in my dedicated works but in my hosted server doesn't, how it can be possible? Can anyone help me?
Vilware is offline
Reply


Thread Tools
Display Modes

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 03:24.


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