02.08.2015, 22:11
Algo do tipo.
PHP код:
stock SetVagaAdmin(name[], nivel)
{
new str[75];
for(new i=1; i != MAX_ADMINS; i++)
{
format(str, sizeof str, "Vaga%d", i);
if(!strcmp(DOF2_GetString(pasta_infoadmins, str), "Ninguйm", true))
{
if(strcmp(DOF2_GetString(pasta_infoadmins, str), name, true))
{
format(str, sizeof str, "Nivel%d", i);
DOF2_SetInt(pasta_infoadmins, str, nivel);
}
else
{
DOF2_SetString(pasta_infoadmins, str, name);
format(str, sizeof str, "Nivel%d", i);
DOF2_SetInt(pasta_infoadmins, str, nivel);
}
DOF2_SaveFile();
return 1;
}
}
return 1;
}