Author Topic: HELP!!!  (Read 2239 times)

0 Members and 1 Guest are viewing this topic.

Offline BIG[H]

  • Made Man
  • ***
  • Posts: 159
  • Sight of light
    • View Profile
HELP!!!
« on: February 15, 2011, 12:14:38 pm »
 :o
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
Quote
   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
Outdoor city server Administrator, FS server owner!

Offline BIG[H]

  • Made Man
  • ***
  • Posts: 159
  • Sight of light
    • View Profile
Re: HELP!!!
« Reply #1 on: February 15, 2011, 07:02:27 pm »
gggggggggggggggggggggggggp;plz
BIG hides*
Outdoor city server Administrator, FS server owner!

yazeen

  • Guest
Re: HELP!!!
« Reply #2 on: March 08, 2011, 06:07:34 pm »
:o
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
Quote
   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