19.06.2012, 18:27
Fine, you want my help?
Change this:
to
Delete:
Change this:
to
Change this:
to
Change this:
to
Change this:
to
Change this:
to
Change this:
to
And no, I'm not going to explain any of it! You didn't want to listen to me when I kindly explained how you would find your errors. I even explained 2 of them in detail!
Good luck with it! You learned nothing!
Change this:
pawn Код:
dcmd_joinwar(playerid)
pawn Код:
dcmd_joinwar(playerid, params[])
pawn Код:
new nCity[25];
pawn Код:
new warname[20] = WarOneInfo[War1Name];
pawn Код:
new warname[20];
new string[21];
format(string, sizeof(string), "%s", WarOneInfo[War1Name]);
pawn Код:
new city[20] = WarOneInfo[War1City];
pawn Код:
new city[20];
new string[21];
format(string, sizeof(string), "%s", WarOneInfo[War1City]);
pawn Код:
if(city == "Los Santos")
pawn Код:
if(strcmp(city, "Los Santos") == 0)
pawn Код:
if(city == "The Countryside")
pawn Код:
if(strcmp(city, "The Countryside") == 0)
pawn Код:
if(city == "Las Venturas")
pawn Код:
if(strcmp(city, "Las Venturas") == 0)
pawn Код:
if(city == "The Desert")
pawn Код:
if(strcmp(city, "The Desert") == 0)
And no, I'm not going to explain any of it! You didn't want to listen to me when I kindly explained how you would find your errors. I even explained 2 of them in detail!
Good luck with it! You learned nothing!