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

ARRAY


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
soumyadip77
Senior Member
Join Date: Jul 2017
Location: INDIA,KOLKATA
Old 06-11-2018 , 10:45   ARRAY
Reply With Quote #1

How to read song path and store theme to to array

ini example
PHP Code:
SOUND_1 sound/test/test.mp3
SOUND_2 
sound/test/test_2.mp3 
some one make 1 plugin for this THIS IS FOR TEST ONLY

Last edited by soumyadip77; 06-12-2018 at 12:20. Reason: spelling mistake
soumyadip77 is offline
Send a message via Skype™ to soumyadip77
^SmileY
Veteran Member
Join Date: Jan 2010
Location: Brazil [<o>]
Old 06-11-2018 , 11:56   Re: ARRY
Reply With Quote #2

Did you will precache this sounds?

edit

Code:
#include <amxmodx>
#include <amxmisc>

new g_Sounds[32][32];

public plugin_init()
{
	register_plugin("Read Songs","0.1","SmileY");
}

public plugin_precache()
{
	/**/
}

public plugin_cfg()
{
	new Dir[32];
	get_configsdir(Dir,charsmax(Dir));
	
	new Path[64];
	format(Path,charsmax(Path),"%s/sounds.ini",Dir);
	
	if(file_exists(Path))
	{
		new SMCParser:Handle = SMC_CreateParser();
		
		if(Handle != Invalid_SMCParser)
		{
			SMC_SetReaders(Handle,"OnKeyValue");
			SMC_ParseFile(Handle,Path);
		}
		
		SMC_DestroyParser(Handle);
	}
}

public SMCResult:OnKeyValue(SMCParser:handle,const key[],const value[],any:data)
{
	copy(g_Sounds[str_to_num(key)],sizeof(g_Sounds[]),value);
	return SMCParse_Continue;
}
File example:

Code:
"Sounds"
{
	"0"	"sound/test/test0.mp3"
	"1"	"sound/test/test1.mp3"
	"2"	"sound/test/test2.mp3"
	"3"	"sound/test/test3.mp3"
	"4"	"sound/test/test4.mp3"
	"5"	"sound/test/test5.mp3"
	"6"	"sound/test/test6.mp3"
}
Put ini file at amxmodx/configs dir
__________________
Projects:

- See my Git Hub: https://github.com/SmileYzn
PHP Code:
set_pcvar_num(pCvar, !get_pcvar_num(pCvar)); 

Last edited by ^SmileY; 06-11-2018 at 12:05.
^SmileY is offline
Send a message via MSN to ^SmileY Send a message via Skype™ to ^SmileY
soumyadip77
Senior Member
Join Date: Jul 2017
Location: INDIA,KOLKATA
Old 06-11-2018 , 12:50   Re: ARRY
Reply With Quote #3

How to precache and how to play......me new in files and arrays so learning help me.....

Last edited by soumyadip77; 06-11-2018 at 20:39.
soumyadip77 is offline
Send a message via Skype™ to soumyadip77
OciXCrom
Veteran Member
Join Date: Oct 2013
Location: Macedonia
Old 06-11-2018 , 12:55   Re: ARRY
Reply With Quote #4

What is an "ARRY"?!
__________________
OciXCrom is offline
Send a message via Skype™ to OciXCrom
Sanjay Singh
Veteran Member
Join Date: Sep 2016
Old 06-11-2018 , 13:10   Re: ARRY
Reply With Quote #5

#Arry is used to call someone who is far from us. xD @OciXCrom hope you got it. xD
__________________
Sanjay Singh is offline
Send a message via AIM to Sanjay Singh
soumyadip77
Senior Member
Join Date: Jul 2017
Location: INDIA,KOLKATA
Old 06-11-2018 , 20:40   Re: ARRY
Reply With Quote #6

Quote:
Originally Posted by Sanjay Singh View Post
#Arry is used to call someone who is far from us. xD @OciXCrom hope you got it. xD

try to far away from my post -_-...
soumyadip77 is offline
Send a message via Skype™ to soumyadip77
CrAzY MaN
Senior Member
Join Date: Mar 2017
Location: India
Old 06-12-2018 , 00:08   Re: ARRY
Reply With Quote #7

Quote:
Originally Posted by Sanjay Singh View Post
#Arry is used to call someone who is far from us. xD @OciXCrom hope you got it. xD
First i thought if i post that, i may get ban xD
__________________
CrAzY MaN is offline
CrAzY MaN
Senior Member
Join Date: Mar 2017
Location: India
Old 06-12-2018 , 00:10   Re: ARRY
Reply With Quote #8

Quote:
Originally Posted by soumyadip77 View Post
try to far away from my post -_-...
See OciXCorn's Plugins, it will surely help you.
__________________
CrAzY MaN is offline
soumyadip77
Senior Member
Join Date: Jul 2017
Location: INDIA,KOLKATA
Old 06-12-2018 , 01:58   Re: ARRY
Reply With Quote #9

OciXCrom's plugins dont have this type of thing
soumyadip77 is offline
Send a message via Skype™ to soumyadip77
Natsheh
Veteran Member
Join Date: Sep 2012
Old 06-12-2018 , 02:13   Re: ARRY
Reply With Quote #10

Is it too hard to search?
__________________
@Jailbreak Main Mod v2.7.0 100%
@User Tag Prefix 100% done !
@Mystery Box 100% done !
@VIP System 100% done !

Natsheh is offline
Send a message via MSN to Natsheh Send a message via Skype™ to Natsheh
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 19:41.


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