21.09.2018, 13:02
Hello everyone,i have /admins command that shows online admins in chat,but i want to make it to be in dialog
Here's my command
So i want to make this command to show online admins in dialog(the non selectable dialog).
I'll be really thankful if anyone help me!
Here's my command
PHP код:
CMD:admins(playerid,params[])
{
SendClientMessage(playerid,COLOR_RED,"**____________VORTEX-SAMP ADMINS____________**");
new j;
j = GetPlayerPoolSize();
for(new id=0;id<=j;id++)
{
GetPlayerName(id,name,sizeof(name));
format(iname,sizeof(iname),"%s.ini",name);
if(dini_Int(iname,"Admin")!=0)
{
new str[MAX_PLAYER_NAME+100];
format(str,sizeof(str),"Ник: {00FF00}%s {FF0000}Админ Ниво: {FFFF00}%d",name,dini_Int(iname,"Admin"));
SendClientMessage(playerid,COLOR_ORANGE,str);
}
}
return 1;
}
I'll be really thankful if anyone help me!