How do i do that if some one Reported and if admin come's and want to see reports and he do /c reported and then all reports are shown (Dini_get) here is my code not working plz help
else if (strcmp(cmd, "reported", true) == 0) {
new vhv[256], szMsg[256];
new string[256];
vhv = dini_Get("/Reports/Reports.ini");
SendClientMessage(playerid,COLOR_GREEN,vhv);
return 1;
}
how to show all text in File except making it special to get forum form ini file like
xgc = Dini_Get("/bla/bla.ini",forum);
bla.ini contains
forum=bla.com
server=bla.com
its only shows forum i want to show all the text in bla.ini file plz help
try these
else if (strcmp(cmd, "reported", true) == 0) {
new tmp2[256], szMsg[256];
new string[256];
tmp2 = dini_Get("/Reports/Reports.ini");
SendClientMessage(playerid,COLOR_GREEN,vhv);
return 1;
tell me if it work