Thread: [INFO] Cvars
View Single Post
SnoW
Veteran Member
Join Date: Oct 2008
Location: Finland WisdomNuggets: 8
Old 02-11-2009 , 09:37   Re: [INFO] Cvars
Reply With Quote #5

PHP Code:
 
#define cvars 4
new cvar_names[cvars][] =
{
   
"name1",
   
"name2",
   
"name3",
   
"name4"
   
//...
};
new 
cvar_values[cvars] =
{
   
0,
   
5,
   
7,
   
8
   
//...
};
 
new 
g_Cvarscvars ];
 
// ...
 
public plugin_init( )
{
   for(new 
0cvarsi++)
         
g_Cvars[i] = register_cvar(cvar_names[i], num_to_str(cvar_values));// ...
}
 
// ...
new Cvars[cvars];
for(new 
0cvarsi++)
   
Cvars[i]= get_pcvar_numg_Cvars[i] );
// ... 
@stupok, nice...

Last edited by SnoW; 02-11-2009 at 09:40.
SnoW is offline
Send a message via MSN to SnoW