26.05.2013, 11:01
warning 219: local variable "string" shadows a variable at a preceding level
warning 203: symbol is never used: "CivPedsFemale"
warning 203: symbol is never used: "CivPedsMale"
warning 203: symbol is never used: "CivPedsFemale"
warning 203: symbol is never used: "CivPedsMale"
Код:
else if(!strcmp(params, "sex", true)) { new playerb = SexBy[playerid]; new string[128]; //<<<this one if(playerb == -1) return SendClientMessage(playerid, COLOR_GREY, "Nobody has offered you sex."); SexBy[playerid] = -1; SexRequest[playerb] = 0; Sex[playerid] = 1; Sex[playerb] = 1; format(string, sizeof(string), "* %s has engaged in sexual intercourse with %s", RPN(playerid), RPN(playerb)); SendNearbyMessage(playerid, 15, string, COLOR_PURPLE, COLOR_PURPLE, COLOR_PURPLE, COLOR_PURPLE, COLOR_PURPLE); SendClientMessage(playerid, COLOR_LIGHTBLUE, "You are now having sex."); SendClientMessage(playerb, COLOR_LIGHTBLUE, "You are now having sex. (/sex to end the sex)"); } return 1; }